fixed error by activating a message, if it was only on a specific slide.
This commit is contained in:
parent
7e7ab210ab
commit
79893687f3
@ -11,7 +11,7 @@
|
||||
<script type="text/javascript" src="{% static 'javascript/projector-control.js' %}"></script>
|
||||
<script type="text/javascript" src="{% static 'javascript/jquery.cookie.js' %}"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
|
||||
function switchButtons(which) {
|
||||
if (which == 'stop') {
|
||||
$( "#countdown_play" ).hide();
|
||||
@ -194,8 +194,8 @@
|
||||
<ul>
|
||||
{% for overlay in overlays %}
|
||||
<li>
|
||||
<input type="checkbox" name="{{ overlay }}" onchange="submit()"
|
||||
{% if overlay.active %} checked="checked"{% endif %}> {{ overlay }}:
|
||||
<input type="checkbox" name="{{ overlay.def_name }}" onchange="submit()"
|
||||
{% if overlay.active %} checked="checked"{% endif %}> {{ overlay }}:
|
||||
{# Countdown #}
|
||||
{% if overlay.def_name == "Countdown" %}
|
||||
<span class="projector_countdown_spinbox">
|
||||
@ -204,7 +204,7 @@
|
||||
<img src="{% static 'images/icons/document-save.png' %}" />
|
||||
</a>
|
||||
|
||||
<a class="projector_countdown_btn" href="{% url countdown_reset %}" title="{% trans 'Reset countdown' %}" onclick="javascript:switchButtons('play')"><button
|
||||
<a class="projector_countdown_btn" href="{% url countdown_reset %}" title="{% trans 'Reset countdown' %}" onclick="javascript:switchButtons('play')"><button
|
||||
type="submit" class="button" style="padding:4px;" name='message-clean'>
|
||||
<span class="icon backward"> </span>
|
||||
</button></a>
|
||||
@ -221,21 +221,18 @@
|
||||
<p></p>
|
||||
{% endif %}
|
||||
{% if overlay.def_name == "Message" %}
|
||||
<form action="" method="post">{% csrf_token %}
|
||||
<br>
|
||||
<nobr>
|
||||
<input name='message_text' type='text' style='width: 70%'
|
||||
value="{% get_config 'projector_message' %}">
|
||||
<button type="submit"
|
||||
class="button" style="padding:4px 0;" name='message-clean'>
|
||||
<span class="icon clear"> </span>
|
||||
</button>
|
||||
</nobr>
|
||||
<br>
|
||||
<button type="submit" class="button" name='message'>
|
||||
<span class="icon ok">{% trans 'Apply' %}</span>
|
||||
</button>
|
||||
</form>
|
||||
<nobr>
|
||||
<input name='message_text' type='text' style='width: 70%'
|
||||
value="{% get_config 'projector_message' %}">
|
||||
<button type="submit"
|
||||
class="button" style="padding:4px 0;" name='message-clean'>
|
||||
<span class="icon clear"> </span>
|
||||
</button>
|
||||
</nobr>
|
||||
<br>
|
||||
<button type="submit" class="button" name='message'>
|
||||
<span class="icon ok">{% trans 'Apply' %}</span>
|
||||
</button>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
Loading…
Reference in New Issue
Block a user