{% extends "reportcraft/base.html" %} {% load reportcraft %} {% load static %} {% block extra_css %} {{ block.super }} {% endblock %} {% block page-pretitle %}Report{% endblock %} {% block page-title %} {{ object.title }} {% endblock %} {% block page-subtitle %}{{ object.description }}{% endblock %} {% block page-tools %} {% tool_icon label='Reports' icon='list-details' %} {% tool_icon label='Sources' icon='database' %} {% tool_icon label='Preview' icon='live-view' %} {% tool_icon label='Edit' icon='pencil' %} {% tool_icon label='Delete' icon='trash-x' %} {% tool_icon label='Add Entry' icon='photo-plus' %} {% endblock %} {% block page-content %}
Add entries to the report and then configure them to select the fields to display. The entry position, specifies the ordering of entries within the report. The entry style can be used to control the layout.
{% for entry in entries %}
{{ entry | entry_html }}
{% endfor %}
{% endblock %}