~lamont/loco-team-portal/production-merge-urt18784

« back to all changes in this revision

Viewing changes to loco_directory/templates/index.html

  • Committer: Daniel Holbach
  • Date: 2009-12-21 11:03:49 UTC
  • Revision ID: daniel.holbach@canonical.com-20091221110349-bo2zmme5i2e4egif
start at revision 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
{% load i18n %}
 
3
 
 
4
{% block title %} {% trans "Ubuntu LoCo Team Directory" %} {% endblock %}
 
5
 
 
6
{% block content %}
 
7
 
 
8
<div class="mainpage">
 
9
 
 
10
<h1>{% trans "Ubuntu LoCo Team Directory" %}</h1>
 
11
 
 
12
<table><tr><td width="50%" valign="top">
 
13
 
 
14
<h2><a href="{% url team-list %}">{% trans "Teams" %}</a></h2>
 
15
<p>{% trans "List of all Ubuntu LoCo Teams, with full information such as contact, web pages, mailing list, and more." %}
 
16
{% trans "If there are no teams in your country/region/area, you will be able to add a team in the near future." %}
 
17
</p>
 
18
 
 
19
</td><td valign="top">
 
20
<h2><a href="#">{% trans "Coming Soon!" %}</a></h2>
 
21
<p>{% trans "Future additions to this site will include:" %}
 
22
<ul>
 
23
<li>Events</li>
 
24
<li>Team Collaboration</li>
 
25
<li>Various mashups</li>
 
26
</ul>
 
27
</p>
 
28
</td></tr></table>
 
29
 
 
30
{% if translator_credits %}
 
31
<p class="footnote">
 
32
{% trans "Translated by:" %} {{ translator_credits|join:", " }}
 
33
</p>
 
34
{% endif %}
 
35
 
 
36
</div>
 
37
{% endblock %}