A place to inform on the world wide web https://hbbs.decentral1.se
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
439 B

{% extends "layout.html" %}
{% block content %}
<ul class="no-style-list">
{% for programme in programmes %}
<li>
<h1> <a href="/programme/{{ programme.title | replace(' ', '-') | lower }}/">{{ programme.title }}</a> </h1>
<h2> {{ programme.tagline }} </h2>
<ul class="no-style-list">
{% for film in programme.films %}
<li>{{ film }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
{% endblock %}