d8d2ad002a
- rename static subdirs to css and js - move global static dir to core/static, changed - move global templates dir to core/templates - check comments and code style of all our own CSS and JS files - minor changes related to the changes of template and static files
18 lines
459 B
HTML
18 lines
459 B
HTML
{% load i18n %}
|
|
{% load staticfiles %}
|
|
|
|
<link type="text/css" rel="stylesheet" media="all" href="{% static 'css/agenda_projector.css' %}" />
|
|
|
|
<h1>
|
|
{% if title %}{{ title }}{% else %}{% trans "Agenda" %}{% endif %}
|
|
</h1>
|
|
|
|
<ul class="itemlist">
|
|
{% for item in items %}
|
|
<li{% if item.closed %} class="closed" {% endif %}>
|
|
{{ item }}
|
|
<small>{{ item.get_title_supplement|safe }}</small>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|