Commit 1017b52b authored by Michal Čihař's avatar Michal Čihař

More readable code

parent 931c5654
......@@ -4,5 +4,7 @@
{% 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 %}
{% with object.unit_set.all.count as count and object.get_translated_percent as translated and object.get_fuzzy_percent as fuzzy %}
{% blocktrans %}There are {{ count }} strings, out of which {{ translated }}% is translated and {{ fuzzy }}% is fuzzy.{% endblocktrans %}
{% endwith %}
</p>
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