{% extends 'base.html' %} {% load commonmark %} {% load static from staticfiles %} {% load imageutils %} {% block extra_head %} {% endblock extra_head %} {% block content %}

Hand Out Badges

Use this view to hand out badges to participants. Use the search field to search for username, email, products, order ID, ticket UUID, etc. To check in participants go to the Ticket Checkin view instead. To hand out merchandise and other products go to the Hand Out Products view instead.
This table shows all (Shop|Discount|Sponsor)Tickets which are badge_handed_out=False. Tickets must be checked in before they are shown in this list.

{% for ticket in tickets %} {% endfor %}
Ticket UUID Ticket Type Ticket Order ID Order User Order Email Ticket Name Ticket Email Product
{{ ticket.uuid }} {{ ticket.shortname }} {{ ticket.order.id }} {{ ticket.order.user }} {{ ticket.order.user.email }} {{ ticket.name }} {{ ticket.email }} {{ ticket.product }}
{% endblock content %}