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

« back to all changes in this revision

Viewing changes to loco_directory/templates/meetings/team_meeting_detail.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
{% extends "base.html" %}
2
2
{% load i18n %}
3
3
 
4
 
{% block page_name %}{% trans team_meeting_object.name %}{% endblock %}
 
4
{% block page_name %}{% trans team_meeting.name %}{% endblock %}
5
5
{% block extrahead %}{{ block.super }}
6
6
<meta property="fb:app_id" content="127188230723188"/>
7
 
<meta property="og:title" content="{{ team_meeting_object.name }}" />
8
 
<meta property="og:url" content="http://loco.ubuntu.com{% url team-meeting-detail team_meeting_object.first_team.lp_name team_meeting_object.id %}"/>
 
7
<meta property="og:title" content="{{ team_meeting.name }}" />
 
8
<meta property="og:url" content="http://loco.ubuntu.com{% url team-meeting-detail team_meeting.first_team.lp_name team_meeting.id %}"/>
9
9
<meta property="og:image" content="http://loco.ubuntu.com/media/images/cof_orange_hex1.png"/>
10
10
<meta property="og:site_name" content="Loco Team Portal"/>
11
11
<meta property="og:type" content="loco-team-portal:meeting"/>
12
12
{% endblock %}
13
13
 
14
14
{% block sub_nav_links %}
15
 
{% for team in team_meeting_object.teams.all %}<li><a class="sub-nav-item" href="{{ team.get_absolute_url }}">{{ team.name }}</a>{% endfor %}</li>
 
15
{% for team in team_meeting.teams.all %}<li><a class="sub-nav-item" href="{{ team.get_absolute_url }}">{{ team.name }}</a>{% endfor %}</li>
16
16
{% if user.is_authenticated %}
17
17
  {% if user_is_team_member %}
18
 
    <li><a class="sub-nav-item" href="{% url team-meeting-update team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Edit Details" %}</a></li>
19
 
    <li><a class="sub-nav-item" href="{% url team-meeting-delete team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Delete Meeting" %}</a></li>
20
 
    <li><a class="sub-nav-item" href="{% url team-meeting-copy team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "Copy Meeting" %}</a></li>
 
18
    <li><a class="sub-nav-item" href="{% url team-meeting-update team_meeting.first_team.lp_name team_meeting.id %}">{% trans "Edit Details" %}</a></li>
 
19
    <li><a class="sub-nav-item" href="{% url team-meeting-delete team_meeting.first_team.lp_name team_meeting.id %}">{% trans "Delete Meeting" %}</a></li>
 
20
    <li><a class="sub-nav-item" href="{% url team-meeting-copy team_meeting.first_team.lp_name team_meeting.id %}">{% trans "Copy Meeting" %}</a></li>
21
21
  {% endif %}
22
22
{% endif %}
23
 
<li><a class="sub-nav-item" href="{% url meeting-ical team_meeting_object.first_team.lp_name team_meeting_object.id %}">{% trans "iCal Feed" %}</a></li>
 
23
<li><a class="sub-nav-item" href="{% url meeting-ical team_meeting.first_team.lp_name team_meeting.id %}">{% trans "iCal Feed" %}</a></li>
24
24
{% endblock %}
25
25
 
26
26
{% block content %}