{% extends "base.html" %}
{% load i18n %}
{% load url from future %}
{% block content %}
{% if not user.is_authenticated %}
{% if usertranslations %}
{% with usertranslations as translations and 2 as show_language %}
{% include "list-translations.html" %}
{% endwith %}
{% endif %}
{% trans "Project" %} |
{% trans "Translated" %} |
{% for prj in projects %}
{% with prj.get_translated_percent as percent and prj.get_fuzzy_percent as fuzzy and prj.get_failing_checks_percent as check_percent %}
{{ prj }} |
|
{{ percent }}% |
{% endwith %}
{% endfor %}
{% include "legend.html" %}
{% if offer_hosting %}
{% url 'hosting' as contact_url %}
{% blocktrans %}We can host your project as well, if you are interested, please contact us.{% endblocktrans %}
{% endif %}
{% include "last-changes.html" %}
{% trans "User" %} |
{% trans "Translated" %} |
{% for u in top_translations %}
{{ u.get_user_display_link }} |
{{ u.translated }} |
{% endfor %}
{% trans "User" %} |
{% trans "Suggested" %} |
{% for u in top_suggestions %}
{{ u.get_user_display_link }} |
{{ u.suggested }} |
{% endfor %}
{% endblock %}