diff --git a/ietf/templates/meeting/agenda.html b/ietf/templates/meeting/agenda.html index 82080f039..bb7e3d3e1 100644 --- a/ietf/templates/meeting/agenda.html +++ b/ietf/templates/meeting/agenda.html @@ -33,16 +33,9 @@
- {% include "meeting/meeting_heading.html" with meeting=schedule.meeting %} + {% include "meeting/meeting_heading.html" with meeting=schedule.meeting updated=updated %} -

Updated {{ updated|date:"Y-m-d \a\t G:i:s (T)" }}

-

-

- Note: IETF agendas are subject to change, up to and during a meeting. -

- -

Alternative Agenda Presentation Formats:

-

+

{% if "-utc" in request.path %} Agenda in local timezone | {% else %} @@ -63,7 +56,12 @@ {% load cache %} {% cache 300 ietf_meeting_agenda_utc schedule.meeting.number request.path %} -

Agenda

+

Agenda

+ +

+ Note: IETF agendas are subject to change, up to and during a meeting. +

+
diff --git a/ietf/templates/meeting/meeting_heading.html b/ietf/templates/meeting/meeting_heading.html index c86222024..5b0255efa 100644 --- a/ietf/templates/meeting/meeting_heading.html +++ b/ietf/templates/meeting/meeting_heading.html @@ -9,5 +9,10 @@ {{ meeting.end_date|date:"F " }} {% endif %} {{ meeting.end_date|date:"j, Y" }} +
+ Updated {{ updated|date:"Y-m-d \a\t G:i:s (T)" }} + + + diff --git a/static/css/ietf.css b/static/css/ietf.css index 5d59ef557..54b70ba03 100644 --- a/static/css/ietf.css +++ b/static/css/ietf.css @@ -400,3 +400,5 @@ td.ad div { border-bottom: solid #ccc 1px; } .milestone { font-style: italic; } .adname { padding-bottom: .5em; line-height: 1em;} + +h1 .small .pull-right { line-height: normal }