view templates/sat_website/membership.html @ 147:d0cd185f9b61

replace apayer with liberapay
author souliane <souliane@mailoo.org>
date Tue, 17 Oct 2017 06:01:01 +0200
parents 1bdb78a21647
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)
Copyright (C) 2014  Adrien Cossa (souliane@mailoo.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 %}
{% get_current_language as LANGUAGE_CODE %}

{% block headline %}{% trans "Join the association" %}{% endblock %}
{% block main_container %}

<div class="row">
    <h5 class="alert alert-success">{% trans "About the association" %}</h5>
    <div class="info">
        <p>{% trans "We want it to be as transparent as the software. You can read about its mission, its organisation and check the official documents." %}</p>
        <p><a class="btn btn-default" href="association.html" role="button">{% trans "Association" %}</a></p>
    </div>
</div>

<div class="row">
    <h5 class="alert alert-success">{% trans "Become a member" %}</h5>
    <div class="info">

		{% comment %}
        <p>{% blocktrans %}For 2015, we need about {{ asso_finance_target }} € for:
            <ul>
                <li>two full-time salaries based on the French minimal salary;</li>
                <li>hosting this web site and the Libervia demo and registering the domain names;</li>
                <li>fees for the association's bank account and the online payment system (apayer.fr);</li>
                <li>administrative help such as a lawyer or an accountant;</li>
                <li>travel expenses to attend and participate in meetings;</li>
                <li>hardware to develop and test the software;</li>
                <li>miscellaneous extra costs such as printing.</li>
            </ul>
            Which makes, with an average annual contribution of 10 € per subscription, {{ asso_members_target }} members before December, 31<sup>st</sup> 2015!
            {% endblocktrans %}
        </p>
        {% include "sat_website/finance.html" with obj="members" %}
        {% include "sat_website/finance.html" %}
        {% endcomment %}

        <p>{% trans "The membership lasts exactly one year and isn't automatically renewed: you have to renew it yourself and you can change the amount of your subscription every year." %}</p>
        <p>
            <a class="btn btn-default" href="membership_form.html" role="button">{% trans "Join the association" %}</a>
        </p>
    </div>
</div>

<div class="row">
    <h5 class="alert alert-success">{% trans "Donations" %}</h5>
    <div class="info">
        <p>{% trans "You can also make a donation without joining the association. We recommend using the open funding platform Liberapay to set up a weekly, monthly or yearly donation." %}</p>
        <p>
            <a class="btn btn-default" href="https://liberapay.com/salut_a_toi/" role="button">{% trans "Donation via Liberapay" %}</a>
        </p>
        <p>
        	{% trans "Or you can make a transfer to the following account:" %}
        </p>
        <pre>
	        {% trans "Payee:" %} Salut à Toi
	        IBAN: FR76 1027 8060 4300 0207 3220 109
	        BIC: CMCIFR2A
	        {% trans "Bank:" %} Crédit Mutuel (France)</pre>
    </div>
</div>

{% endblock %}