{% extends "base.html" %} {% load i18n %} {% load url from future %} {% block content %} {% if not user.is_authenticated %}

{% blocktrans %}This site runs Weblate for translating the software projects listed below. You need to be logged in for translating, otherwise you can only make suggestions.{% endblocktrans %}

{% endif %} {% if usertranslations %}

{% trans "Your translations" %}

{% with usertranslations as translations %} {% include "list-translations.html" %} {% endwith %} {% endif %}

{% trans "Projects" %}

{% for prj in projects %} {% with prj.get_translated_percent as percent %} {% endwith %} {% endfor %}
{% trans "Project" %} {% trans "Translated" %}
{{ prj.name }}
{{ percent }}%

{% trans "Summaries" %}

{% trans "Recent changes" %}

{% include "last-changes.html" %}

{% trans "Most active translators" %}

{% for u in top_translations %} {% endfor %}
{% trans "User" %} {% trans "Translated" %}
{{ u.user.get_full_name }} {{ u.translated }}

{% trans "Most active suggesters" %}

{% for u in top_suggestions %} {% endfor %}
{% trans "User" %} {% trans "Suggested" %}
{{ u.user.get_full_name }} {{ u.suggested }}

{% trans "Others" %}

{% endblock %}