84d5293fbc
- Always use templatetag 'absolute_url' instead of (depricated) 'model_url'. Search and replace all old arguments: edit -> update, view -> detail, delete - Fixed bug in setting default value in 'absolute_url' templatetag (default value is defined in models.py only). Updated 'backend' template.
21 lines
926 B
HTML
21 lines
926 B
HTML
{% load i18n %}
|
|
{% load tags %}
|
|
<ul style="line-height: 180%">
|
|
{% for user in users %}
|
|
<li class="{% if user.is_active_slide %}activeline{% endif %}">
|
|
<a href="{{ user|absolute_url:'projector' }}" class="activate_link btn {% if user.is_active_slide %}btn-primary{% endif %} btn-mini" title="{% trans 'Show' %}">
|
|
<i class="icon-facetime-video {% if user.is_active_slide %}icon-white{% endif %}"></i>
|
|
</a>
|
|
<a href="{{ user|absolute_url:'update' }}" title="{% trans 'Edit' %}" class="btn btn-mini right">
|
|
<i class="icon-pencil"></i>
|
|
</a>
|
|
<a href="{{ user|absolute_url:'projector_preview' }}" title="{% trans 'Preview' %}" class="btn btn-mini right">
|
|
<i class="icon-search"></i>
|
|
</a>
|
|
<a href="{{ user|absolute_url }}">{{ user }}</a>
|
|
</li>
|
|
{% empty %}
|
|
<li>{% trans 'No participants available.' %}</li>
|
|
{% endfor %}
|
|
</ul>
|