diff --git a/pinaxcon/templates/dashboard.html b/pinaxcon/templates/dashboard.html index 350c9d63ae8f707c846b2a50ce3bcde3f20fcb6f..b9c0408c41278909de6b26290be09371c4196d85 100644 --- a/pinaxcon/templates/dashboard.html +++ b/pinaxcon/templates/dashboard.html @@ -164,6 +164,13 @@ to put this toward other purchases, or to refund it.

{% endif %} {% endif %} + + {% if user.is_staff %} +

Registration reports

+ +

View available reports. +

+ {% endif %} diff --git a/pinaxcon/templates/registrasion/reports_list.html b/pinaxcon/templates/registrasion/reports_list.html new file mode 100644 index 0000000000000000000000000000000000000000..f588359345f7c897ed51708f189a123fb688b0a9 --- /dev/null +++ b/pinaxcon/templates/registrasion/reports_list.html @@ -0,0 +1,21 @@ +{% extends "site_base.html" %} +{% load bootstrap %} +{% load registrasion_tags %} +{% block body %} + +

Registration reports

+ + + {% for report in reports %} + + + + + {% endfor %} +
+ {{ report.name }} + + {{ report.description }} +
+ +{% endblock %}