bornhack-website/src/backoffice/templates/badge_handout.html

48 lines
1.7 KiB
HTML

{% extends 'base.html' %}
{% load commonmark %}
{% load static %}
{% load imageutils %}
{% block content %}
<div class="row">
<h2>Hand Out Badges</h2>
<div class="lead">
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 <a href="{% url 'backoffice:ticket_checkin' camp_slug=camp.slug %}">Ticket Checkin view</a> instead. To hand out merchandise and other products go to the <a href="{% url 'backoffice:product_handout' camp_slug=camp.slug %}">Hand Out Products</a> view instead.
</div>
<div>
This table shows all (Shop|Discount|Sponsor)Tickets which are badge_ticket_generated=False. Tickets must be checked in before they are shown in this list.
</div>
</div>
<br>
<div class="row">
<table class="table table-hover datatable">
<thead>
<tr>
<th>Ticket UUID</th>
<th>Ticket Type</th>
<th>Ticket Order ID</th>
<th>Order User</th>
<th>Order Email</th>
<th>Ticket Name</th>
<th>Ticket Email</th>
<th>Product</th>
</tr>
</thead>
<tbody>
{% for ticket in tickets %}
<tr>
<td><a href="/admin/tickets/shopticket/{{ ticket.uuid }}/change/">{{ ticket.uuid }}</a></td>
<td>{{ ticket.shortname }}</td>
<td><a href="/admin/shop/order/{{ ticket.order.id }}/change/">{{ ticket.order.id }}</a></td>
<td>{{ ticket.order.user }}</td>
<td>{{ ticket.order.user.email }}</td>
<td>{{ ticket.name }}</td>
<td>{{ ticket.email }}</td>
<td>{{ ticket.product }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock content %}