42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load url from future %}
|
|
|
|
{% block breadcums %}
|
|
<li><a href="{{ object.project.get_absolute_url }}">{{ object.project }}</a></li>
|
|
<li><a href="{{ object.get_absolute_url }}">{{ object.name }}</a></li>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "subproject_info.html" %}
|
|
|
|
<h2>{% trans "Translations" %}</h2>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Language" %}</th>
|
|
<th colspan="2">{% trans "Translated" %}</th>
|
|
<th>{% trans "Fuzzy" %}</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 trans.language.name %}</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>
|
|
|
|
{% url 'accounts.views.contact' as contact_url %}
|
|
|
|
<p>{% blocktrans %}Should your language be missing, plese <a href="{{ contact_url }}?subject=New+language+request+for+{{ object }}">contact us</a>.{% endblocktrans %}</li>
|
|
|
|
{% endblock %}
|
|
|