mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-28 05:59:56 +08:00
32 lines
722 B
HTML
Vendored
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 %}
|