~ris/loco-team-portal/fix-552762

« back to all changes in this revision

Viewing changes to loco_directory/templates/events/event_history_list.html

  • Committer: Tarmac
  • Author(s): Chris Johnston
  • Date: 2012-06-17 14:32:03 UTC
  • mfrom: (532.1.3 theme)
  • Revision ID: tarmac@nigelb.me-20120617143203-15zle8vuew6d001d
[r=daker] Updates LTP to use the new branding guidelines

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
{% block page_name %}{% trans "Ubuntu LoCo Events History" %}{% endblock %}
10
10
 
11
11
{% block sub_nav_links %}
12
 
<a class="sub-nav-item" href="{% url event-list %}">{% trans "Back to Events List" %}</a>
 
12
<li><a class="sub-nav-item" href="{% url event-list %}">{% trans "Back to Events List" %}</a></li>
13
13
{% endblock %}
14
14
 
15
15
{% block content %}
16
 
<article class="main-content">
 
16
<div class="row">
 
17
<section class="span-12">
17
18
<h2>{% trans "Ubuntu LoCo Global Events History" %}</h2>
18
19
 
19
20
{% if global_event_list %}
24
25
{% else %}
25
26
<p>{% trans "There have been no LoCo Global Events in the past :(" %}</p>
26
27
{% endif %}
27
 
</article>
28
 
 
29
 
<hr class="divide" />
30
 
 
31
 
<article class="main-content">
 
28
</section>
 
29
</div>
 
30
 
 
31
<div class="row">
 
32
<section class="span-12">
32
33
<h2>{% trans "Ubuntu LoCo Team Events History" %}</h2>
33
34
 
34
35
<form action="." method="post">{% csrf_token %}
56
57
<p>{% trans "There have been no LoCo Team Events in the past :(" %}</p>
57
58
{% endif %}
58
59
 
59
 
</article>
 
60
</section>
 
61
</div>
60
62
{% endblock %}