{% extends 'site_base.html' %} {% load i18n %} {% load site_defaults %} {% block body %}

{% trans "About this Voting Platform" %}

{% trans "Quorum" %}

{% blocktrans %}According to the Voting regulations for Initiatives, the Quorum is determined on each 1st of the month on the Basis of registered participants. The latest Quorum is the binding one. {% endblocktrans %}

    {% for q in quorums %}
  • ab {{q.created_at|date}}: {{q.quorum}}
  • {% endfor %}

{% trans "Legal Notice" %}

{% trans "This tool is run by " %}{{ 'PLATFORM_TITLE'|get_setting }}. {% trans "The corresponding legal notice can be found here" %}.

{% trans "Software" %}

{% trans "This software is written with Python/Django and Postgres. It is Open Source and licenced under AGPL 3.0" %} {% trans "The source code has been published on Github" %}.

{% endblock %}