From b79ac1ee29ae2d125ac091e207766dccabc32255 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 18 Jun 2016 21:22:59 +0000 Subject: [PATCH] Tweaked the styling of meeting rows to avoid wrapping the interim meeting names, and added meeting links for the IETF meetings. - Legacy-Id: 11409 --- ietf/templates/group/meetings-row.html | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/ietf/templates/group/meetings-row.html b/ietf/templates/group/meetings-row.html index cb7d930dc..042faeb43 100644 --- a/ietf/templates/group/meetings-row.html +++ b/ietf/templates/group/meetings-row.html @@ -5,17 +5,28 @@ - + + {% for s in sessions %} - {% ifchanged s.meeting %}{% if s.meeting.type.slug == 'ietf' %}IETF{% endif %}{{s.meeting.number}}{% endifchanged %} + {% ifchanged s.meeting %} + {% if s.meeting.type.slug == 'ietf' %} + + IETF {{s.meeting.number}} + + {% else %} + {{s.meeting.number}} + {% endif %} + {% endifchanged %} + + {% if s.name %}{{ s.name }}
{% endif %} {% if s.status.slug == "sched" %} - {% if s.meeting.type.slug == 'ietf' %}{{s.time|date:"D M d, Y Hi"}}{% else %}{{s.time|date:"D M d, Y"}}{% endif %} + {{s.time|date:"D M d, Y"}} {% else %} {{s.status}} {% endif %} @@ -26,6 +37,7 @@ {% endif %} {% endif %} + {% if s.meeting.type.slug == 'ietf' %}{{s.time|date:"H:i"}}{% endif %} {% if s.agenda %}Agenda{% endif %} {% if s.minutes %}Minutes{% endif %} Materials