{% extends "ci_dashboard/base.html" %} {% load helpers %} {% block content %} Status History for CI System: {{ ci.name }} {% if statuses %} {% for status in statuses reversed %} {% include "ci_dashboard/status_list_item.html" with status=status %} {% endfor %} {% if statuses.has_previous %} « {% endif %} {% for page in statuses.paginator.page_range %} {{ page }} {% endfor %} {% if statuses.has_next %} » {% endif %} {% else %} {% include "ci_dashboard/not_enough_data_panel.html" %} {% endif %} {% endblock %}