Combined [16154] from rjsparks@nostrum.com with previous work on ticket #2633 in [16124]. Fixes issue #2633.
- Legacy-Id: 16163 Note: SVN reference [16124] has been migrated to Git commite101d94065
Note: SVN reference [16154] has been migrated to Git commit758757038a
This commit is contained in:
parent
19226d8cee
commit
4f34d6aa58
|
@ -57,8 +57,18 @@
|
|||
<span class="label label-warning">No minutes</span>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if session.type.slug == 'session' and show_agenda == "True" and not session.all_meeting_bluesheets %}
|
||||
{% if session.type.slug == 'session' and show_agenda == "True" %}
|
||||
{% if session.all_meeting_bluesheets %}
|
||||
{% if session.all_meeting_bluesheets|length == 1 %}
|
||||
<a href="{{ session.all_meeting_bluesheets.0|meeting_href:session.meeting }}">Bluesheets</a><br>
|
||||
{% else %}
|
||||
{% for bluesheets in session.all_meeting_bluesheets %}
|
||||
<a href="{{ bluesheets|meeting_href:session.meeting}}">Bluesheets<br/><span class="small pull-right">{{bluesheets.sessionpresentation_set.first.session.official_timeslotassignment.timeslot.time|date:"D G:i"}}</span></a></br>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% else %}
|
||||
<span class="label label-bluesheets">No bluesheets</span>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
|
|
Loading…
Reference in a new issue