add a few more columns

This commit is contained in:
Thomas Steen Rasmussen 2020-08-10 15:44:29 +02:00
parent 4c1e36f72b
commit f906b1e28b
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,8 @@ Merchandise Orders | {{ block.super }}
<th>OPR Id</th>
<th>Product</th>
<th>Quantity</th>
<th>Paid</th>
<th>Ticket Generated</th>
</tr>
</thead>
<tbody>
@ -38,6 +40,8 @@ Merchandise Orders | {{ block.super }}
<td>{{ productrel.id }}</td>
<td>{{ productrel.product.name }}</td>
<td>{{ productrel.quantity }}</td>
<td>{{ product.order.paid|yesno }}</td>
<td>{{ product.order.ticket_generated|yesno }}</td>
</tr>
{% endfor %}
</tbody>