Merged in [13274] from rcross@amsl.com:

Indicate official schedule in Select a Schedule drop-down.  Fixes #1456.
 - Legacy-Id: 13298
Note: SVN reference [13274] has been migrated to Git commit 6b7bb57597
This commit is contained in:
Henrik Levkowetz 2017-05-10 15:18:36 +00:00
commit db85712f6f

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>