1fb0a21d0b
- Fixed #992 (Use correct countdown format) - Fixed #909 (Backend und projector template style) * Search bar with same border-radius like login button. * Projector: Fixed overlay message style. Allow HTML code (use template filter 'safe'). * Dashboard: Tooltips, Buttons and Widget fixes. - Fixed template does not exists error if custom slide is activated. - Countdown: Add css to show negative countdown in red. - Add missing translation strings to English po file (for transifex).
20 lines
891 B
HTML
20 lines
891 B
HTML
{% load i18n %}
|
|
{% load tags %}
|
|
|
|
<span>
|
|
{% trans "Message" %}:
|
|
<form class="form-inline" id="overlay_message" action="{% url 'projector_overlay_message' %}" method="post">{% csrf_token %}
|
|
<div class="input-append overlayblock" style="width: 77%;">
|
|
<input class="input-block-level" id="overlay_message_text" name='message_text' type='text' value="{% get_config 'projector_message' %}">
|
|
<button type="submit" class="btn btn-primary tooltip-bottom" name="message"
|
|
rel="tooltip" data-original-title="{% trans 'Apply' %}">
|
|
<i class="icon-ok icon-white"></i>
|
|
</button>
|
|
<button type="submit" class="btn tooltip-bottom custom-btn-mini" name='message-clean'
|
|
rel="tooltip" data-original-title="{% trans 'Clean message' %}">
|
|
<i class="icon-delete"></i>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</span>
|