b082f8a8fc
- Translate group name in participant overview table. - Move 'status_link' function from participants.js to utils.js for using in VoteCollector plugin. - Added hook 'post_js' for VoteCollector plugin. - Fixed poll id in poll_form. - Improved 'show log' button - Used welcome_title for default custom slide - Used bootstraps' fluid grid nesting for responsive layout of widgets. - Added microphone icon for 'add-me-to-list-of-speakers' button. - Format motion identifier and title in (motion and account) widgets. - Format list of speakers (slide, overlay, view, overview) - Format list of speakers widget and view. Added view to link to current list of speakers (without add to list). - Fixed motion slide. Made up/down animation faster and the scroll way shorter. - Fixed icon name. - Set default context of 'extra_javascript' to use kwargs['context']['extra_javascript'].append('...') without error. - Fixed translation of motion state. Moved css code.
54 lines
2.7 KiB
HTML
54 lines
2.7 KiB
HTML
{% 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 btn {% if agenda.active %}btn-primary{% endif %} btn-mini"
|
|
rel="tooltip" data-original-title="{% trans 'Show' %}">
|
|
<i class="icon-facetime-video {% if agenda.active %}icon-white{% endif %}"></i>
|
|
</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 btn {% if item.active and not summary and not speakers %}btn-primary{% endif %} btn-mini"
|
|
rel="tooltip" data-original-title="{% trans 'Show' %}">
|
|
<i class="icon-facetime-video {% if item.active and not summary and not speakers %}icon-white{% endif %}"></i>
|
|
</a>
|
|
<a href="{% model_url item 'edit' %}" title="{% trans 'Edit' %}" class="btn btn-mini right">
|
|
<i class="icon-pencil"></i>
|
|
</a>
|
|
<a href="{% url 'projctor_preview_slide' item.sid %}" title="{% trans 'Preview' %}" class="btn btn-mini right">
|
|
<i class="icon-search"></i>
|
|
</a>
|
|
<a href="{% url 'projector_activate_slide' item.sid 'show_list_of_speakers' %}"
|
|
class="activate_link btn btn-mini right {% if item.active and speakers %}btn-primary{% endif %}"
|
|
rel="tooltip" data-original-title="{% trans 'Show list of speakers' %}">
|
|
<i class="icon icon-bell {% if item.active and speakers %}icon-white{% endif %}"></i>
|
|
</a>
|
|
{% if not item.is_leaf_node %}
|
|
<a href="{% url 'projector_activate_slide' item.sid 'summary' %}"
|
|
class="activate_link btn btn-mini {% if item.active and summary %}btn-primary{% endif %} right"
|
|
rel="tooltip" data-original-title="{% trans 'Show summary for this item' %}">
|
|
<i class="icon-summary {% if item.active and summary %}icon-white{% endif %}"></i>
|
|
</a>
|
|
{% endif %}
|
|
{% for p in item.get_ancestors %}
|
|
<span class="indentation"></span>
|
|
{% endfor %}
|
|
<a href="{% model_url item 'view' %}">{% if item.type == item.ORGANIZATIONAL_ITEM %}<i>[{% endif %}{{ item }}{% if item.type == item.ORGANIZATIONAL_ITEM %}]</i>{% endif %}</a>
|
|
{{ item.get_title_supplement|safe }}
|
|
</li>
|
|
{% empty %}
|
|
<li>{% trans 'No items available.' %}</li>
|
|
{% endfor %}
|
|
</ul>
|