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

« back to all changes in this revision

Viewing changes to loco_directory/templates/about.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 " About LoCo Team Directory | Ubuntu LoCo Team Directory" noop %} {% endblock %}
 
5
 
 
6
{% block content %}
 
7
 
 
8
<div class="mainpage">
 
9
 
 
10
<h1>{% trans "About Ubuntu LoCo Team Directory" noop %}</h1>
 
11
 
 
12
 
 
13
<div class="main">
 
14
  <h2><a href="{% url team-list %}">{% trans "What is the LoCo Directory?" noop %}</a></h2>
 
15
    <p>{% trans "The LoCo Directory is a place where you can find information regarding LoCo Teams. It was originally developed by <a href='https://launchpad.net/~nixternal'>Richard Johnson</a> and further development has been made possible by the <a href='https://launchpad.net/~loco-directory-dev'>The LoCo Directory Developers</a>." noop  %}
 
16
{% trans "The LoCo Directory is made available under the <a href='http://www.gnu.org/licenses/gpl-3.0-standalone.html'>GNU GPL v3</a>." noop %}
 
17
    </p>
 
18
</div>
 
19
 
 
20
<div id="container2">
 
21
  <div id="left">
 
22
 
 
23
<h2><a href="{% url team-list %}">{% trans "The Directory Data" noop %}</a></h2>
 
24
<p>{% trans "The LoCo Directory comes from two sources, <a href='https://launchpad.net/'>Launchpad</a> and its <a href='https://help.launchpad.net/API/launchpadlib'>APIs</a>. The data that the LoCo Directory gathers is also made available as  <a href='/data/xml'>XML</a> format to interoperate with other web apps and for possible mashups." noop  %}
 
25
{% trans "The LoCo Directory is made available under the <a href='http://www.gnu.org/licenses/gpl-3.0-standalone.html'>GNU GPL v3</a> and the Code is available in <a href='https://code.launchpad.net/loco-directory'>Launchpad Code Hosting</a>." noop %}
 
26
</p>
 
27
  </div><!-- left -->
 
28
  <div id="right">
 
29
<h2><a href="#">{% trans "Contribute to LoCo Directory!" noop %}</a></h2>
 
30
<p>{% trans "You can make it better:" noop %}
 
31
<ul>
 
32
<li>{% trans "Have an Idea?" noop %}<a href='https://blueprints.launchpad.net/loco-directory'>{% trans "Write a blueprint!" noop %}</a></li>
 
33
<li> {% trans "Help <a href='https://translations.launchpad.net/loco-directory'>Translate!</a>" noop %}</li>
 
34
<li> {% trans "Found a bug," noop %} <a href='https://bugs.launchpad.net/loco-directory'>{% trans "Report it!" noop %}</a></li>
 
35
<li> {% trans "Help with code," noop %} <a href='https://code.launchpad.net/loco-directory'>{% trans "Get the code!" noop %}</a></li>
 
36
</ul>
 
37
</p>
 
38
<p>{% trans "Need to know more," noop %} <a href='https://answers.launchpad.net/loco-directory'>{% trans "just ask!" noop %}</a></p>
 
39
  </div><!-- right -->
 
40
  <div class="clear"></div>
 
41
 </div><!-- container -->
 
42
 
 
43
 
 
44
 
 
45
{% if translator_credits %}
 
46
<p class="footnote">
 
47
{% trans "Translated by:" %} {{ translator_credits|join:", " }}
 
48
</p>
 
49
{% endif %}
 
50
 
 
51
</div>
 
52
{% endblock %}