OpenSlides/openslides/agenda/templates/projector/AgendaSummary.html
2012-04-15 15:46:32 +02:00

19 lines
515 B
HTML

<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"></head><body>{% extends "base-projector.html" %}
{% load i18n %}
{% block title %}{{ block.super }} -
{% if title %} {{ title }} {% else %} {%trans "Agenda" %} {% endif %}
{% endblock %}
{% block content %}
<h1>{%trans "Agenda" %}</h1>
<ul class="itemlist">
{% for item in items %}
<li{% if item.closed %} class="closed" {% endif %}>{{ item }}
{% endfor %}
</li{%></ul>
{% endblock %}
</body></html>