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.
41 lines
1.8 KiB
HTML
41 lines
1.8 KiB
HTML
{% load i18n %}
|
|
{% load tags %}
|
|
|
|
<ul style="line-height: 180%">
|
|
<li class="{% if welcomepage_is_active %}activeline{% endif %}">
|
|
<a href="{% url 'projector_activate_welcomepage' %}" class="activate_link btn {% if welcomepage_is_active %}btn-primary{% endif %} btn-mini" title="{% trans 'Show' %}">
|
|
<i class="icon-facetime-video {% if welcomepage_is_active %}icon-white{% endif %}"></i>
|
|
</a>
|
|
<a href="{% url 'projctor_preview_welcomepage' %}" title="{% trans 'Preview' %}" class="btn btn-mini right">
|
|
<i class="icon-search"></i>
|
|
</a>
|
|
{% get_config 'welcome_title' %}
|
|
</li>
|
|
</ul>
|
|
<hr>
|
|
<ul style="line-height: 180%">
|
|
{% for slide in slides %}
|
|
<li class="{% if slide.active %}activeline{% endif %}">
|
|
<a href="{% url 'projector_activate_slide' slide.sid %}" class="activate_link btn {% if slide.active %}btn-primary{% endif %} btn-mini" title="{% trans 'Show' %}">
|
|
<i class="icon-facetime-video {% if slide.active %}icon-white{% endif %}"></i>
|
|
</a>
|
|
<a href="{% url 'customslide_edit' slide.id %}">{{ slide }}</a>
|
|
<a href="{% url 'customslide_delete' slide.id %}" title="{% trans 'Delete' %}" class="btn btn-mini right">
|
|
<i class="icon-remove"></i>
|
|
</a>
|
|
<a href="{% url 'customslide_edit' slide.id %}" title="{% trans 'Edit' %}" class="btn btn-mini right">
|
|
<i class="icon-pencil"></i>
|
|
</a>
|
|
<a href="{% url 'projctor_preview_slide' slide.sid %}" title="{% trans 'Preview' %}" class="btn btn-mini right">
|
|
<i class="icon-search"></i>
|
|
</a>
|
|
</li>
|
|
{% empty %}
|
|
<li>{% trans 'No items available.' %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<p style="line-height: 280%">
|
|
<a href="{% url 'customslide_new' %}" class="btn btn-mini right">
|
|
<i class="icon-plus"></i>{% trans 'New' %}
|
|
</a>
|
|
</p> |