From 3b662a5059235ee25e76a723ed988dc8241c6a77 Mon Sep 17 00:00:00 2001 From: Guillermo Doghel Date: Wed, 11 Dec 2024 13:29:18 -0300 Subject: [PATCH] Reportes de bono --- events/templates/admin/tickets_report.html | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 events/templates/admin/tickets_report.html diff --git a/events/templates/admin/tickets_report.html b/events/templates/admin/tickets_report.html new file mode 100644 index 0000000..05d556c --- /dev/null +++ b/events/templates/admin/tickets_report.html @@ -0,0 +1,66 @@ +{% extends "admin/base_site.html" %} +{% load i18n admin_urls %} + +{% block content %} +
+

Reporte de Usuarios por Evento

+ +
+
+ + + + + + + {% if selected_event %} + Exportar a CSV + {% endif %} +
+
+ + {% if results %} +
+ + + + {% for column in columns %} + + {% endfor %} + + + + {% for row in results %} + + {% for value in row %} + + {% endfor %} + + {% endfor %} + +
{{ column }}
{{ value }}
+ +
+ {% if has_prev %} + « Anterior + {% endif %} + + + Página {{ page }} de {{ total_pages }} + + + {% if has_next %} + Siguiente » + {% endif %} +
+
+ {% endif %} +
+{% endblock %}