You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added comment docevents when changing SessionPresentation objects. Reworked group materials page to be more helpful when there are multiple SessionPresentations withing a given Meeting
<td>{% for p in d.last_presented %}{{p.session.meeting}}{% if d.rev != p.rev %} (-{{ p.rev }}){% endif %}{%if not forloop.last%}, {% endif %}{% endfor %}</td>
37
-
<td>{% for p in d.future_presentations %}{{p.session.meeting}}{% if d.rev != p.rev %} (-{{p.rev}}){%endif%}{%if not forloop.last%}, {%endif%}{%endfor%}</td>
36
+
<td>{% regroup d.last_presented by session.meeting as past_pres_list %}
37
+
{% for p in past_pres_list %}
38
+
{{ p.grouper }}
39
+
{% if p.list|length > 1 %}
40
+
( {{ p.list|length }} sessions )
41
+
{% else %}
42
+
{% for pr in p.list %}
43
+
{% if pr.rev != d.rev %}
44
+
(-{{ pr.rev }})
45
+
{% endif %}
46
+
{% endfor %}
47
+
{% endif %}
48
+
{% if not forloop.last %}, {% endif %}
49
+
{% endfor %}
50
+
<td>{% regroup d.future_presentations by session.meeting as meeting_pres_list %}
0 commit comments