{% extends "base.html" %} {% load i18n %} {% block main %}

{% trans "Sprints" %}

{% for sprint in sprints %}

{% trans "Sprint" %} #{{ sprint.id }}: {{ sprint.title }}

{% include "rapid_prototyping/costs_table_head.html" with hide_caption=1 %} {% include "rapid_prototyping/costs_table_body.html" with costs=sprint.tasks %} {% include "rapid_prototyping/costs_total.html" %}
{% endfor %} Index {% endblock %} {% block extra_script %} {% endblock %}