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
510 B

{% extends "layout.html" %}
{% block content %}
<ul id="programmes-list" 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 id="films-list" class="no-style-list">
{% for film in programme.films %}
<li><span class="film-indent">{{ film }}</span></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
{% endblock %}