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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{% extends "base.html" %}
{% load i18n %}

{% block title %} {% trans " About LoCo Team Directory | Ubuntu LoCo Team Directory" noop %} {% endblock %}

{% block content %}

<div class="mainpage">

<h1>{% trans "About Ubuntu LoCo Team Directory" noop %}</h1>


<div class="main">
  <h2><a href="{% url team-list %}">{% trans "What is the LoCo Directory?" noop %}</a></h2>
    <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  %}
{% 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 %}
    </p>
</div>

<div id="container2">
  <div id="left">

<h2><a href="{% url team-list %}">{% trans "The Directory Data" noop %}</a></h2>
<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  %}
{% 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 %}
</p>
  </div><!-- left -->
  <div id="right">
<h2><a href="#">{% trans "Contribute to LoCo Directory!" noop %}</a></h2>
<p>{% trans "You can make it better:" noop %}
<ul>
<li>{% trans "Have an Idea?" noop %}<a href='https://blueprints.launchpad.net/loco-directory'>{% trans "Write a blueprint!" noop %}</a></li>
<li> {% trans "Help <a href='https://translations.launchpad.net/loco-directory'>Translate!</a>" noop %}</li>
<li> {% trans "Found a bug," noop %} <a href='https://bugs.launchpad.net/loco-directory'>{% trans "Report it!" noop %}</a></li>
<li> {% trans "Help with code," noop %} <a href='https://code.launchpad.net/loco-directory'>{% trans "Get the code!" noop %}</a></li>
</ul>
</p>
<p>{% trans "Need to know more," noop %} <a href='https://answers.launchpad.net/loco-directory'>{% trans "just ask!" noop %}</a></p>
  </div><!-- right -->
  <div class="clear"></div>
 </div><!-- container -->



{% if translator_credits %}
<p class="footnote">
{% trans "Translated by:" %} {{ translator_credits|join:", " }}
</p>
{% endif %}

</div>
{% endblock %}