{% extends "base_nav.html" %} {% block title %}{{ block.super }} : Report{% endblock %} {% block styles %} {{ block.super }} {% endblock %} {% block scripts %} {{ block.super }} {% endblock %} {% block content %}

{# this is here because it is floated to the right #}
{% spaceless %} {% block report_buttons %} {% endblock %} {% endspaceless %}

rows

{{ model_name_plural }}

Available Columns

Below are the columns of data that are available for viewing. Note that depending on which columns are added to your report, the the number of rows may change, but the number of {{ model_name_plural }} will stay constant.

{% for category in columns %}

{{ category.name }} Add All

    {% for column in category.columns %}
  • Add {{ column.name }} {{ column.description|safe }}
  • {% endfor %}
{% endfor %}

Selected Columns

The order below (top-bottom) defines the order they will be displayed (left-right). To change the order simply click and drag any of the columns to the desired location and release in the visible drop zone.

    {% for category in columns %} {% for column in category.columns %}
  • Remove {{ column.name }}
  • {% endfor %} {% endfor %}
{% endblock %}