weblate/html/languages.html
2012-03-30 15:17:11 +02:00

32 lines
724 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 class="sort">
<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 }}">{{ lang }}</a></th>
<td class="progress"><div class="progress" id="{{ percent|floatformat:0 }}"></div></td>
<td class="percent">{{ percent }}%</td>
</tr>
{% endif %}
{% endwith %}
{% endfor %}
</tbody>
</table>
{% endblock %}