OpenSlides/openslides/agenda/templates/projector/AgendaSummary.html

20 lines
495 B
HTML
Raw Normal View History

{% extends "base-projector.html" %}
2012-04-15 15:46:32 +02:00
{% load i18n %}
{% block title %}{{ block.super }} -
{% if title %} {{ title }} {% else %} {% trans "Agenda" %} {% endif %}
2012-04-15 15:46:32 +02:00
{% endblock %}
{% block content %}
<h1>{% if title %}{{ title }}{% else %}{% trans "Agenda" %}{% endif %}</h1>
{% endblock %}
{% block scrollcontent %}
2012-04-15 15:46:32 +02:00
<ul class="itemlist">
{% for item in items %}
<li{% if item.closed %} class="closed" {% endif %}>{{ item }}</li>
2012-04-15 15:46:32 +02:00
{% endfor %}
</ul>
2012-04-15 15:46:32 +02:00
{% endblock %}