weblate/html/languages.html
2012-03-08 13:41:23 +01:00

32 lines
722 B
HTML
Vendored

{% extends "base.html" %}
{% load i18n %}
{% load url from future %}
{% block breadcums %}
<li><a href="{% url 'trans.views.show_languages' %}">{% trans "languages" %}</a></li>
{% endblock %}
{% block content %}
<table>
<thead>
<tr>
<th>{% trans "Language" %}</th>
<th colspan="2">{% trans "Translated" %}</th>
</tr>
<tbody>
{% for lang in languages %}
{% with lang.get_translated_percent as percent %}
{% if lang.has_translations %}
<tr>
<th><a href="{{ lang.get_absolute_url }}">{% trans lang.name %}</a></th>
<td class="percent">{{ percent }}%</td>
<td class="progress"><div class="progress" id="{{ percent|floatformat:0 }}"></div></td>
</tr>
{% endif %}
{% endwith %}
{% endfor %}
</tbody>
</table>
{% endblock %}