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

View file

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