Files @ 7fac10241ec7
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/reports_list.html

Joel Addison
Improve attendee reports

Display attendee profile data in normal table without DataTables so
sorting is not applied, causing data to be confusing to read.
Include item quantity in attendee data report for accurate schwag packing.
{% extends "site_base.html" %}
{% load registrasion_tags %}

{% block page_title %}Registration reports{% endblock %}
{% block head_title %}Registration reports{% endblock %}

{% block content %}
<table class="table table-striped">
  {% for report in reports %}
    <tr>
      <td>
        <a href="{{ report.url }}">{{ report.title }}</a>
      </td>
      <td>
        {{ report.description }}
      </td>
    </tr>
  {% endfor %}
</table>

{% endblock %}