Indicate official schedule in Select a Schedule drop-down. Fixes #1456. Commit ready for merge.

- Legacy-Id: 13274
This commit is contained in:
Ryan Cross 2017-05-08 17:45:56 +00:00
parent 67bfcda880
commit 6b7bb57597

View file

@ -41,7 +41,7 @@
<select name="forma" onchange="location = this.options[this.selectedIndex].value;">
<option value="">Select a schedule...</option>
{% for sched in meeting.schedule_set.all %}
<option value="{{ sched.name }}">{{ sched.name }}</option>
<option value="{{ sched.name }}">{{ sched.name }}{% if sched == meeting.agenda %} (official){% endif %}</option>
{% endfor %}
</select>
</form></li>