Commit da41a017 authored by Michal Čihař's avatar Michal Čihař

Add links for direct translating to subproject overview

parent 4a45f6a8
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
<th>{% trans "Language" %}</th> <th>{% trans "Language" %}</th>
<th colspan="2">{% trans "Translated" %}</th> <th colspan="2">{% trans "Translated" %}</th>
<th>{% trans "Fuzzy" %}</th> <th>{% trans "Fuzzy" %}</th>
<th></th>
</tr> </tr>
<tbody> <tbody>
{% for trans in object.translation_set.all %} {% for trans in object.translation_set.all %}
...@@ -27,6 +28,7 @@ ...@@ -27,6 +28,7 @@
<td class="percent">{{ percent }}%</td> <td class="percent">{{ percent }}%</td>
<td class="progress"><div class="progress" id="{{ percent|floatformat:0 }}"></div></td> <td class="progress"><div class="progress" id="{{ percent|floatformat:0 }}"></div></td>
<td class="percent">{{ fuzzy }}%</td> <td class="percent">{{ fuzzy }}%</td>
<td>{% if percent < 100 %}<a href="{{ trans.get_translate_url }}?type=untranslated">{% trans "Translate" %}</a>{% endif %}</td>
</tr> </tr>
{% endwith %} {% endwith %}
{% endfor %} {% endfor %}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment