~mhall119/summit/new-meeting-stuff

« back to all changes in this revision

Viewing changes to summit/schedule/templates/schedule/meeting.html

  • Committer: Tarmac
  • Author(s): Chris Johnston
  • Date: 2012-03-05 02:00:36 UTC
  • mfrom: (295.4.2 927825)
  • Revision ID: tarmac@nigelb.me-20120305020036-6id74b3nzfyn7tgt
[r=mhall119] Changes from room.name to room.title on the meeting page for better readability.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
<section class="double-side-content">
48
48
    <h2>{{ meeting.title }}</h2>
49
49
    {% for ai in agenda_items %}
50
 
        <h3>{{ ai.slot }} in {{ ai.room.name }}</h3>
 
50
        <h3>{{ ai.slot }} in {{ ai.room.title }}</h3>
51
51
    {% endfor %}
52
52
    <div id="description">
53
53
        {{ meeting.description }}
98
98
            <li><a href="{{meeting.link_to_pad}}" target="_new">Notes in a separate window</a></li>
99
99
            <li><a href="{{meeting.edit_link_to_pad}}" target="_new">Edit notes window</a></li>
100
100
            {% for ai in agenda_items %}
101
 
                {% if ai.room.icecast_url %}<li><a href="{{ ai.room.icecast_url }}" target="_new">Live audio for {{ai.room.name}}</a></li>{% endif %}
 
101
                {% if ai.room.icecast_url %}<li><a href="{{ ai.room.icecast_url }}" target="_new">Live audio for {{ ai.room.title }}</a></li>{% endif %}
102
102
            {% endfor %}
103
103
            {% if meeting.spec_url %}<li><a href="{{ meeting.spec_url }}">Blueprint</a></li>{% endif %}
104
104
            {% if meeting.wiki_url %}<li><a href="{{ meeting.wiki_url }}">Wiki page</a></li>{% endif %}