We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15b3b45 commit 753f7cbCopy full SHA for 753f7cb
wafer/schedule/templates/admin/scheduleitem_list.html
@@ -57,6 +57,18 @@ <h3>{% trans "Venues assigned on days they are not available" %}</h3>
57
{% endfor %}
58
</ul>
59
{% endif %}
60
+ {% if errors.speaker_clashes %}
61
+ <h3>{% trans "Common speaker in simultaneous schedule items" %}</h3>
62
+ <ul>
63
+ {% for slot_speaker, items in errors.speaker_clashes %}
64
+ <li>{{ slot_speaker.0 }} at {{ slot_speaker.0.get_start_time }} with speaker {{ slot_speaker.1.userprofile.display_name }} --
65
+ {% for item in items %}
66
+ <b>{{ item.get_desc|escape }}</b>,
67
+ {% endfor %}
68
+ </li>
69
70
+ </ul>
71
+ {% endif %}
72
{% endblock %}
73
</div>
74
0 commit comments