{% extends "djangobmf/module_index.html" %} {% load i18n %} {% block base_content %} {% 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 %} {% endblock %}