{% extends "base.html" %} {% block content %}

QR Code Management

Create and manage QR code sets for your pub quiz events

Create QR Set

Create a new set of QR codes for your pub quiz event with points and achievements.

Common Templates

Quickly create QR code sets using these pre-defined templates

Standard Pub Quiz

1st, 2nd, 3rd and 4th place

Trivia Night

With category achievements

Weekly League

For ongoing competitions

Click a template to pre-fill the form. You can customize it before creating.

Quick Actions

Generate individual QR codes or access your created sets

Your QR Sets

{% if qr_sets %}
{% for qr_set in qr_sets %}

{{ qr_set.name }}

{% if qr_set.description %}

{{ qr_set.description }}

{% endif %}

Created: {{ qr_set.created_at.strftime('%Y-%m-%d') }}

League: {{ qr_set.league.name if qr_set.league else "Default League" }}

QR Codes: {% if qr_set.qr_codes %}{{ qr_set.qr_codes | length }}{% else %}0{% endif %}

{% endfor %}
{% else %}

You haven't created any QR sets yet. Create your first set using the form above.

{% endif %}
{% endblock %}