{% extends "base.html" %} {% block content %}
Back to Dashboard

{{ qr_set.name }}

{% if qr_set.description %}

{{ qr_set.description }}

{% endif %}

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

Add QR Code

Create QR codes for points and achievements in this set

Quick Templates

Click to quickly add common QR code types to this set

QR Set Actions

Create printable PDFs and admin codes for this set

Generate PDF

Admin QR Code

Use this special QR code to link all codes in this set to an event. Print this on each page.

Admin QR Code

Scan to link all QR codes to an event

Danger Zone

These actions cannot be undone

QR Codes in this Set

{% if qr_codes %}
{% for qr_code in qr_codes %} {% endfor %}
QR Code Details Points Achievement Status Actions
QR Code
{{ qr_code.title or "Untitled" }}
Code: {{ qr_code.code[:10] }}...
{% if qr_code.description %}
{{ qr_code.description }}
{% endif %}
{{ qr_code.points }} pts {% if qr_code.achievement_name %} {{ qr_code.achievement_name }} {% else %} None {% endif %} {% if qr_code.used %} Redeemed {% else %} Available {% endif %} View
{% else %}

No QR codes in this set yet. Add your first QR code using the form.

{% endif %}
{% endblock %}