{% extends "base.html" %} {% block title %}{{ project_name }} Iterations{% endblock %} {% block pagetitle %}{{ project_name }} Iterations{% endblock %} {% block actionbar %}
  • Back to Projects Project List
  • Create Create Iteration
  • {% endblock %} {% block content %} {% if object_list %} {% for iteration in object_list %} {% endfor %}
    Iteration Description Start Date End Date
    {{iteration.name}} {{iteration.description}} {{iteration.start_date}} {{iteration.end_date}}
    {% else %}
    There are no iterations
    {% endif %} {% endblock %}