12 lines
382 B
HTML
12 lines
382 B
HTML
{% load i18n %}
|
|
|
|
{% with object.subproject as object %}
|
|
{% include "subproject_info.html" %}
|
|
{% endwith %}
|
|
<p>
|
|
{% blocktrans with object.unit_set.all.count as count and object.get_translated_percent as translated and object.get_fuzzy_percent as fuzzy %}
|
|
There are {{ count }} strings, out of which {{ translated }}% is translated
|
|
and {{ fuzzy }}% is fuzzy.
|
|
{% endblocktrans %}
|
|
</p>
|