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,7 +194,7 @@
<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" %}
@ -221,9 +221,7 @@
<p></p> <p></p>
{% endif %} {% endif %}
{% if overlay.def_name == "Message" %} {% if overlay.def_name == "Message" %}
<form action="" method="post">{% csrf_token %} <nobr>
<br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input name='message_text' type='text' style='width: 70%' <input name='message_text' type='text' style='width: 70%'
value="{% get_config 'projector_message' %}"> value="{% get_config 'projector_message' %}">
<button type="submit" <button type="submit"
@ -235,7 +233,6 @@
<button type="submit" class="button" name='message'> <button type="submit" class="button" name='message'>
<span class="icon ok">{% trans 'Apply' %}</span> <span class="icon ok">{% trans 'Apply' %}</span>
</button> </button>
</form>
{% endif %} {% endif %}
</li> </li>
{% endfor %} {% endfor %}