Skip to content

Commit b79ac1e

Browse files
committed
Tweaked the styling of meeting rows to avoid wrapping the interim meeting names, and added meeting links for the IETF meetings.
- Legacy-Id: 11409
1 parent 5939a37 commit b79ac1e

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

ietf/templates/group/meetings-row.html

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,28 @@
55
<th class="col-md-2"></th>
66
<th class="col-md-1"></th>
77
<th class="col-md-1"></th>
8-
<th class="col-md-6"></th>
8+
<th class="col-md-1"></th>
9+
<th class="col-md-1"></th>
910
</tr>
1011
</thead>
1112
<tbody>
1213
{% for s in sessions %}
1314
<tr>
14-
<td>{% ifchanged s.meeting %}{% if s.meeting.type.slug == 'ietf' %}IETF{% endif %}{{s.meeting.number}}{% endifchanged %}</td>
1515
<td>
16+
{% ifchanged s.meeting %}
17+
{% if s.meeting.type.slug == 'ietf' %}
18+
<a href="{% url 'ietf.meeting.views.agenda' num=s.meeting.number %}">
19+
IETF {{s.meeting.number}}
20+
</a>
21+
{% else %}
22+
{{s.meeting.number}}
23+
{% endif %}
24+
{% endifchanged %}
25+
</td>
26+
<td class="text-right">
1627
{% if s.name %}{{ s.name }}<br>{% endif %}
1728
{% if s.status.slug == "sched" %}
18-
{% if s.meeting.type.slug == 'ietf' %}{{s.time|date:"D M d, Y Hi"}}{% else %}{{s.time|date:"D M d, Y"}}{% endif %}
29+
{{s.time|date:"D M d, Y"}}
1930
{% else %}
2031
{{s.status}}
2132
{% endif %}
@@ -26,6 +37,7 @@
2637
{% endif %}
2738
{% endif %}
2839
</td>
40+
<td class="text-center">{% if s.meeting.type.slug == 'ietf' %}{{s.time|date:"H:i"}}{% endif %}</td>
2941
<td>{% if s.agenda %}<a href="{{ s.agenda.get_absolute_url }}">Agenda</a>{% endif %}</td>
3042
<td>{% if s.minutes %}<a href="{{ s.minutes.get_absolute_url }}">Minutes</a>{% endif %}</td>
3143
<td><a href="{% url 'ietf.meeting.views.session_details' num=s.meeting.number acronym=s.group.acronym %}">Materials</a></td>

0 commit comments

Comments
 (0)