{% load i18n %} {% verbatim %} {% endverbatim %}
{% trans "Summary" %} {% trans "Referee" %} {% trans "Current State" %}
{{ obj.name }} {{ obj.referee }}
{{ obj.project }}
{% endverbatim %}{% trans "completed" %}{% verbatim %}
{% comment %} TODO: Try to reenable grouping by projects with angular {% regroup object_list by project as projects %} {% for project in projects %} {% if project.grouper %}

{% trans "Project" %}: {{ project.grouper }}

{% endif %} {% for obj in project.list %} {% endfor %}
{% trans "Summary" %} {% trans "Referee" %} {% trans "Current State" %}
{% if obj.completed %} {% else %} {% endif %} {{ obj.summary }} {{ obj.referee }} {% if obj.completed %} {% trans "completed" %} {% else %} {% with obj.get_states as states %}
{% if states.done %}
{% endif %} {% if states.todo %}
{% endif %} {% if states.review %}
{% endif %} {% if states.hold %}
{% endif %}
{% endwith %} {% endif %}
{% endfor %} {% endcomment %}