view templates/sat_website/developers.html @ 48:3b4ba14d1e26

update features.html + other small changes
author souliane <souliane@mailoo.org>
date Sun, 03 May 2015 22:39:02 +0200
parents 10ce34ab389a
children 0d20fb28c32e
line wrap: on
line source

{% extends "sat_website/category.html" %}

{% comment %}
SàT website: Salut à Toi's presentation website
Copyright (C) 2012  Jérôme Poisson (goffi@goffi.org)

This file is part of SàT website.

SàT website is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Foobar is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
{% endcomment %}

{% load i18n %}
{% load staticfiles %}

{% block headline %}{% trans "Salut à Toi: contributing" %}{% endblock %}
{% block subtext %}{% trans "Some information for people willing to help the development" %}{% endblock %}
{% block main_container %}

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Get the source" %}
    </h5>
    <div class="info">
        <p>{% blocktrans with repos_sat="<a href=\"http://repos.goffi.org/sat\">http://repos.goffi.org/sat</a>" repos="<a href=\"http://repos.goffi.org\">http://repos.goffi.org</a>" %}You'll find the mercurial repository of SàT on {{ repos_sat }}, satellite project are also available on {{ repos }}{% endblocktrans %}</p>
        <p>{% blocktrans with mercurial="<a 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>
    </div>
</div>

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Documentation" %}
    </h5>
    <div class="info">
        <p>{% blocktrans with wiki="<a href=\"http://wiki.goffi.org/wiki/sat\">http://wiki.goffi.org/wiki/sat</a>" %}The documentation is available on the wiki: {{ wiki }} (don't hesitate to improve it){% endblocktrans %}</p>
        <p>{% blocktrans with developers_page="<a href=\"http://wiki.goffi.org/wiki/S%C3%A0T_d%C3%A9veloppement/en\">http://wiki.goffi.org/wiki/SàT_développement</a>" %}You'll also find a dedicated page for developers: {{ developers_page }}{% endblocktrans %}</p>
        <p>{% blocktrans with mailing_list="<a href=\"http://lists.goffi.org\">http://lists.goffi.org</a>" %}If you need help, you can also check the mailing list: {{ mailing_list }}{% endblocktrans %}</p>
    </div>
    
</div>

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Contact" %}
    </h5>
    <div class="info">
        <p>{% blocktrans with sat_muc="<a 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>
    </div>
</div>

{% endblock %}