Files @ 34509d23eb9f
Branch filter:

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

bsturmfels
Make vendored symposion into an installable Python package

This allows us to install with `pip install "-e vendor/symposion"` similar to
the other vendored packages. There's no good reason for this to be different to
the others and depend on PYTHONPATH hacking.

Re-add
{% 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 %}