{% for summary in summaries %}
{% translate "Character" %} |
{% translate "Setups" %} |
{% if rotation.is_closed %}
{% translate "Actual Total" %} |
{% translate "Estimated Total" %} |
|
{% else %}
{% translate "Total" %} |
{% endif %}
{% for row in summary %}
{{ row.character_name }}
|
{{ row.helped_setups }} |
{% if rotation.is_closed %}
{{ row.actual_total|floatformat:0|intcomma }} |
{% endif %}
{{ row.estimated_total|floatformat:0|intcomma }} |
{% if rotation.is_closed %}
|
{% endif %}
{% endfor %}
{% endfor %}
{% for prj, summaries in projects_summaries.items %}
{% blocktranslate with name=prj.name %}
Contributions to {{ name }}
{% endblocktranslate %}
{% for summary in summaries %}
{% translate "Character" %} |
{% if rotation.is_closed %}
{% translate "Actual Total" %} |
{% translate "Estimated Total" %} |
{% else %}
{% translate "Total" %} |
{% endif %}
{% for row in summary %}
{{ row.character_name }}
|
{% if rotation.is_closed %}
{{ row.actual_total|floatformat:"g" }} |
{% endif %}
{{ row.estimated_total|floatformat:"g" }} |
{% endfor %}
{% endfor %}
{% endfor %}