Small improvements in template
Improve the template for the meetings index by ordering meetings, building a list of links, and clearly separate logging information from meeting schedule information. Change-Id: Ic0a15abd1d6177531c80d316eeeef0ada2d903e2
This commit is contained in:
parent
2c14f3149d
commit
b258c24a8e
@ -1,13 +1,32 @@
|
|||||||
<h1>OpenStack IRC meetings</h1>
|
<h1>OpenStack IRC meetings</h1>
|
||||||
|
|
||||||
<p>
|
<h2>Logging</h2>
|
||||||
<a href="irclogs/">Channel Logs</a><br/>
|
<p>OpenStack IRC channels and meetings are logged. You can find them here:</p>
|
||||||
<a href="meetings/">Meeting Logs</a><br/>
|
<ul>
|
||||||
<a href="irc-meetings.ical">iCalendar Meeting Schedule</a><br/>
|
<li><a href="irclogs/">Channel Logs</a></li>
|
||||||
</p>
|
<li><a href="meetings/">Meeting Logs</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
{% for meeting in meetings %}
|
<h2>Meeting schedule</h2>
|
||||||
<h3>{{ meeting.project }}</h3>
|
<p>
|
||||||
|
<p>The IRC meetings schedule is driven by the
|
||||||
|
<a href=http://git.openstack.org/cgit/openstack-infra/irc-meetings/tree/>openstack-infra/irc-meetings</a> repository.
|
||||||
|
To propose a change, please submit a change to that repository in Gerrit.</p>
|
||||||
|
<p>Here is the link to an ICS file containing all OpenStack IRC meetings, for
|
||||||
|
use in your favorite calendaring app:</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="irc-meetings.ical">iCalendar Meeting Schedule</a><br/></li>
|
||||||
|
</ul>
|
||||||
|
<p>Here is a list of current meetings with their descriptions:</p>
|
||||||
|
<ul>
|
||||||
|
{% for meeting in meetings|sort(attribute='project') %}
|
||||||
|
<li><a href="#{{ meeting.project }}">{{ meeting.project }}</a></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
{% for meeting in meetings|sort(attribute='project') %}
|
||||||
|
<a name="{{ meeting.project }}"><h3>{{ meeting.project }}</h3></a>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{% for schedule in meeting.schedules %}
|
{% for schedule in meeting.schedules %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user