~daker/loco-team-portal/fix.1293258

« back to all changes in this revision

Viewing changes to loco_directory/templates/meetings/team_meeting_detail_agenda.inc.html

  • Committer: Tarmac
  • Author(s): daker
  • Date: 2013-11-28 20:50:36 UTC
  • mfrom: (661.3.2 fix.1234036)
  • Revision ID: tarmac-20131128205036-p7u3561bt77ivnc0
[r=Michael Hall] Fixed the meeting page 1201941,1234036

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% load i18n markup %}
2
2
{% load recurse %}
3
3
{% if user_is_team_member %}
4
 
    <a style="margin-bottom: 10px;" class="contact-button" href="{% url agenda-item-new team_meeting_object.id %}">{% trans 'Add Agenda Item' %}</a>
 
4
    <a style="margin-bottom: 10px;" class="contact-button" href="{% url agenda-item-new team_meeting.id %}">{% trans 'Add Agenda Item' %}</a>
5
5
{% endif %}
6
6
 
7
 
{% if team_meeting_object.agenda %}
8
 
    {% recurse item.children.all with team_meeting_object.agenda.top as item %}
 
7
{% if team_meeting.agenda %}
 
8
    {% recurse item.children.all with team_meeting.agenda.top as item %}
9
9
        <ul class="agenda-list">
10
10
        {% loop %}
11
11
            <li class="agenda-item">
12
12
                <div style="overflow: auto">
13
13
                    <div style="float: left; width: 615px">
14
14
                        {% if user_is_team_member %}
15
 
                        <a class="agenda-title" title="{% trans 'Update Agenda Item:' %} {{ item.title }}" href="{% url agenda-item-update team_meeting_object.id item.id %}">{{ item.title }}</a>
 
15
                        <a class="agenda-title" title="{% trans 'Update Agenda Item:' %} {{ item.title }}" href="{% url agenda-item-update team_meeting.id item.id %}">{{ item.title }}</a>
16
16
                        {% else %}
17
17
                        <span class="agenda-title" >{{ item.title }}</span>
18
18
                        {% endif %}
19
19
                        ‒ <a class="agenda-sig" href="{% url profile-detail item.owner.user.username %}">{{ item.owner.realname }}</a>
20
 
                        @ {{ item.created_date|date:"D, d N Y H:i T" }}
21
20
                        {% if item.description %}
22
21
                        <div class="agenda-description">{{ item.description|markdown:'safe' }}</div>
23
22
                        {% endif %}