info_desk/scan.html: show quantity if it's a ShopTicket and single_ticket_per_product is set
fixes #377.
This commit is contained in:
parent
95e04b3741
commit
aa252c3d11
|
@ -56,6 +56,13 @@
|
|||
<strong>Product:</strong>
|
||||
<td>
|
||||
{{ ticket.product }}
|
||||
{% if ticket.ticket_type.single_ticket_per_product and ticket.shortname == "shop" %}
|
||||
<tr>
|
||||
<td>
|
||||
<strong>Quantity:</strong>
|
||||
<td>
|
||||
{{ ticket.orp.quantity }}
|
||||
{% endif %}
|
||||
<tr>
|
||||
<td>
|
||||
<strong>Order:</strong>
|
||||
|
|
Loading…
Reference in a new issue