Skip to content

Commit 201f110

Browse files
committed
Add point of sale on customer detail page
1 parent 2fde22f commit 201f110

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

bakeup/templates/workshop/customer_detail.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,13 @@ <h3>Order history:</h3>
140140
Total positions: <strong>{{ object.total_ordered_positions }}</strong></p>
141141
{% for order in customer.orders.all %}
142142
<div class="row border-bottom">
143-
<div class="col-3 fw-bold">
143+
<div class="col-2 fw-bold">
144144
{{ order.production_day }}
145145
</div>
146-
<div class="col-9">
146+
<div class="col-2">
147+
{{ order.point_of_sale }}
148+
</div>
149+
<div class="col-8">
147150
{% include "workshop/includes/order_positions.html" with positions=order.positions.all %}
148151
</div>
149152
</div>

0 commit comments

Comments
 (0)