20 lines
495 B
HTML
20 lines
495 B
HTML
{% extends "base-projector.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}{{ block.super }} -
|
|
{% if title %} {{ title }} {% else %} {% trans "Agenda" %} {% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% if title %}{{ title }}{% else %}{% trans "Agenda" %}{% endif %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block scrollcontent %}
|
|
<ul class="itemlist">
|
|
{% for item in items %}
|
|
<li{% if item.closed %} class="closed" {% endif %}>{{ item }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|