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

{% trans "Sprints" %}

{% for sprint in sprints %}

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

Developer Estimated Time Unfinished Tasks Unfinished Time Remaining Time
{{ sprint.estimated_time }} {{ sprint.unfinished_tasks }} {{ sprint.unfinished_time }} {{ sprint.remaining_time }} ({{ sprint.remaining_hours }}h)
{% 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 %}