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

33 lines
853 B
HTML

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