Mercurial > sat_legacy_website
annotate templates/sat_website/developers.html @ 134:319368437642
removed from the FAQ the questions that were linked to CAcert
author | souliane <souliane@mailoo.org> |
---|---|
date | Mon, 07 Dec 2015 12:03:02 +0100 |
parents | 0d20fb28c32e |
children |
rev | line source |
---|---|
0 | 1 {% extends "sat_website/category.html" %} |
2 | |
3 {% comment %} | |
4 SàT website: Salut à Toi's presentation website | |
5 Copyright (C) 2012 Jérôme Poisson (goffi@goffi.org) | |
6 | |
7 This file is part of SàT website. | |
8 | |
9 SàT website is free software: you can redistribute it and/or modify | |
10 it under the terms of the GNU Affero General Public License as published by | |
11 the Free Software Foundation, either version 3 of the License, or | |
12 (at your option) any later version. | |
13 | |
14 Foobar is distributed in the hope that it will be useful, | |
15 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 GNU Affero General Public License for more details. | |
18 | |
19 You should have received a copy of the GNU Affero General Public License | |
20 along with Foobar. If not, see <http://www.gnu.org/licenses/>. | |
21 {% endcomment %} | |
22 | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
23 {% load i18n %} |
0 | 24 {% load staticfiles %} |
35
10ce34ab389a
dummy patch (just add some new lines to make space between the blocks)
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
25 |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
26 {% block headline %}{% trans "Salut à Toi: contributing" %}{% endblock %} |
48
3b4ba14d1e26
update features.html + other small changes
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
27 {% block subtext %}{% trans "Some information for people willing to help the development" %}{% endblock %} |
0 | 28 {% block main_container %} |
35
10ce34ab389a
dummy patch (just add some new lines to make space between the blocks)
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
29 |
0 | 30 <div class="row"> |
26 | 31 <h5 class="alert alert-success"> |
60 | 32 {% trans "Report a bug" %} |
33 </h5> | |
34 <div class="info"> | |
35 <p>{% blocktrans with bugzilla="<a target=\"#\" href=\"http://bugs.goffi.org/describecomponents.cgi?product=Salut%20%C3%A0%20Toi\">http://bugs.goffi.org</a>" %}If you found a bug, please report it to our Bugzilla: {{bugzilla}}{% endblocktrans %}</p> | |
36 </div> | |
37 </div> | |
38 | |
39 <div class="row"> | |
40 <h5 class="alert alert-success"> | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
41 {% trans "Get the source" %} |
26 | 42 </h5> |
0 | 43 <div class="info"> |
60 | 44 <p>{% blocktrans with repos_sat="<a target=\"#\" href=\"http://repos.goffi.org/sat\">http://repos.goffi.org/sat</a>" repos="<a target=\"#\" href=\"http://repos.goffi.org\">http://repos.goffi.org</a>" %}You'll find the mercurial repository of SàT on {{ repos_sat }}, satellite projects are also available on {{ repos }}{% endblocktrans %}</p> |
45 <p>{% blocktrans with mercurial="<a target=\"#\" href=\"http://mercurial.selenic.com/\">Mercurial</a>" %}To clone the repository, use {{ mercurial }}: <code>hg clone http://repos.goffi.org/sat</code>. Check the wiki (see below) for installation instructions{% endblocktrans %}</p> | |
0 | 46 </div> |
47 </div> | |
48 | |
49 <div class="row"> | |
26 | 50 <h5 class="alert alert-success"> |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
51 {% trans "Documentation" %} |
26 | 52 </h5> |
0 | 53 <div class="info"> |
60 | 54 <p>{% blocktrans with wiki="<a target=\"#\" href=\"http://wiki.goffi.org/wiki/sat\">http://wiki.goffi.org/wiki/sat</a>" %}The documentation is available on the wiki (feel free to improve it): {{ wiki }}{% endblocktrans %}</p> |
55 <p>{% blocktrans with developers_page="<a target=\"#\" href=\"http://wiki.goffi.org/wiki/Cat%C3%A9gorie:Documentation_d%C3%A9veloppeur\">http://wiki.goffi.org/wiki/Catégorie:Documentation_développeur</a>" %}You'll also find a dedicated section for developers: {{ developers_page }}{% endblocktrans %}</p> | |
0 | 56 </div> |
57 | |
58 </div> | |
59 | |
60 <div class="row"> | |
26 | 61 <h5 class="alert alert-success"> |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
62 {% trans "Contact" %} |
26 | 63 </h5> |
0 | 64 <div class="info"> |
60 | 65 <p>{% blocktrans with sat_muc="<a target=\"#\" href=\"xmpp:sat@chat.jabberfr.org?join\">sat@chat.jabberfr.org</a>" %}The best way to join us is on SàT's Jabber room: {{ sat_muc }}{% endblocktrans %}</p> |
66 <p>{% blocktrans with mailing_list="<a target=\"#\" href=\"http://lists.goffi.org/listinfo/dev\">http://lists.goffi.org/listinfo/dev</a>" %}If you need help, you can also write to our dev mailing list: {{ mailing_list }}{% endblocktrans %}</p> | |
0 | 67 </div> |
68 </div> | |
35
10ce34ab389a
dummy patch (just add some new lines to make space between the blocks)
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
69 |
0 | 70 {% endblock %} |