view sat_website/templates/sat_website/developers.html @ 157:e9bd848b21da

developers: fixed missing escaping
author Goffi <goffi@goffi.org>
date Sat, 13 Jan 2018 19:17:19 +0100
parents 856867212b5d
children
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 "Report a bug" %}
    </h5>
    <div class="info">
        <p>{% blocktrans with link="<a target=\"#\" href=\"https://bugs.goffi.org\">https://bugs.goffi.org</a>" %}If you found a bug, please report it in our bug tracker (which is SàT/XMPP based ;)): {{link}}{% endblocktrans %}</p>
    </div>
</div>

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Get the source" %}
    </h5>
    <div class="info">
        <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>
        <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>
    </div>
</div>

<div class="row">
    <h5 class="alert alert-success">
    {% trans "Documentation" %}
    </h5>
    <div class="info">
        <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>
        <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>
    </div>

</div>

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

{% endblock %}