a72832842b
syncdb is required
45 lines
1.8 KiB
HTML
45 lines
1.8 KiB
HTML
{% load staticfiles %}
|
|
{% load i18n %}
|
|
{% load tags %}
|
|
|
|
<ul style="line-height: 180%">
|
|
<li class="{% if agenda.active %}activeline{% endif %}">
|
|
<a href="{% url projector_activate_slide agenda.key %}" class="activate_link {% if agenda.active %}active{% endif %}">
|
|
<div></div>
|
|
</a>
|
|
<a href="{% url projctor_preview_slide agenda.key %}" title="{% trans 'Preview' %}" class="icon preview right">
|
|
<span></span>
|
|
</a>
|
|
{{ agenda.name }}
|
|
</li>
|
|
</ul>
|
|
<hr>
|
|
<ul style="line-height: 180%">
|
|
{% for item in items %}
|
|
<li class="{% if item.active %}activeline{% endif %}">
|
|
<a href="{% url projector_activate_slide item.sid %}" class="activate_link {% if item.active %}active{% endif %}">
|
|
<div></div>
|
|
</a>
|
|
<a href="{% model_url item 'delete' %}" title="{% trans 'Delete' %}" class="icon delete right">
|
|
<span></span>
|
|
</a>
|
|
<a href="{% model_url item 'edit' %}" title="{% trans 'Edit' %}" class="icon edit right">
|
|
<span></span>
|
|
</a>
|
|
<a href="{% url projctor_preview_slide item.sid %}" title="{% trans 'Preview' %}" class="icon preview right">
|
|
<span></span>
|
|
</a>
|
|
{% for p in item.get_ancestors %}
|
|
<span class="indentation"> </span>
|
|
{% endfor %}
|
|
<a href="{% model_url item 'view' %}">{{ item }}</a>{% if item.related_sid %} ({{ item.print_related_type }}){% endif %}
|
|
{% if not item.is_leaf_node %}
|
|
<a class="activate_link" href="{% url projector_activate_slide item.sid 'summary' %}"><img src="{% static 'images/icons/view-list-tree.png' %}" title="{% trans 'Activate summary for this item' %}"></a>
|
|
{% endif %}
|
|
</li>
|
|
{% empty %}
|
|
<li>{% trans 'No items available.' %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|