fixed error by activating a message, if it was only on a specific slide.

This commit is contained in:
Oskar Hahn 2012-06-03 09:05:12 +02:00
parent 7e7ab210ab
commit 79893687f3

View File

@ -194,8 +194,8 @@
<ul> <ul>
{% for overlay in overlays %} {% for overlay in overlays %}
<li> <li>
<input type="checkbox" name="{{ overlay }}" onchange="submit()" <input type="checkbox" name="{{ overlay.def_name }}" onchange="submit()"
{% if overlay.active %} checked="checked"{% endif %}> {{ overlay }}: {% if overlay.active %} checked="checked"{% endif %}> {{ overlay }}:
{# Countdown #} {# Countdown #}
{% if overlay.def_name == "Countdown" %} {% if overlay.def_name == "Countdown" %}
<span class="projector_countdown_spinbox"> <span class="projector_countdown_spinbox">
@ -221,21 +221,18 @@
<p></p> <p></p>
{% endif %} {% endif %}
{% if overlay.def_name == "Message" %} {% if overlay.def_name == "Message" %}
<form action="" method="post">{% csrf_token %} <nobr>
<br> <input name='message_text' type='text' style='width: 70%'
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; value="{% get_config 'projector_message' %}">
<input name='message_text' type='text' style='width: 70%' <button type="submit"
value="{% get_config 'projector_message' %}"> class="button" style="padding:4px 0;" name='message-clean'>
<button type="submit" <span class="icon clear">&nbsp;</span>
class="button" style="padding:4px 0;" name='message-clean'> </button>
<span class="icon clear">&nbsp;</span> </nobr>
</button> <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</nobr> <button type="submit" class="button" name='message'>
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span class="icon ok">{% trans 'Apply' %}</span>
<button type="submit" class="button" name='message'> </button>
<span class="icon ok">{% trans 'Apply' %}</span>
</button>
</form>
{% endif %} {% endif %}
</li> </li>
{% endfor %} {% endfor %}