Skip to content

Commit 06f952f

Browse files
committed
Removed username
1 parent fef6d7b commit 06f952f

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

templates/view_order.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ <h4><span class="badge badge-dark w-100">Order status</span></h4>
1616
<tr>
1717
<th>Order</th>
1818
<th>Order Time</th>
19-
<th>Name</th>
2019
<th>Status</th>
2120
<th>Order</th>
2221
</tr>
@@ -25,7 +24,6 @@ <h4><span class="badge badge-dark w-100">Order status</span></h4>
2524
<tr>
2625
<td><a href="/orders/{{order_id}}">{{order_id}}</a></td>
2726
<td>{{timestamp}}</td>
28-
<td>{{username}}</td>
2927
<td><span class="badge {% if status == status_delivered %}badge-success{% else %}badge-info{% endif %}"
3028
id="order_status">{{status_str}}</span></td>
3129
{% autoescape false %}

templates/view_orders.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,13 @@ <h4><span class="badge badge-dark w-100">My orders&nbsp;&nbsp;<a href="/orders">
1111
<tr>
1212
<th>Order</th>
1313
<th>Order Time</th>
14-
<th>Name</th>
1514
<th>Status</th>
1615
</tr>
1716
</thead>
1817
{% for order_id, order in order_ids.items() %}
1918
<tr>
2019
<th><a href="/orders/{{order_id}}">{{order_id}}</a></th>
2120
<td>{{order.timestamp}}</td>
22-
<td>{{order.username}}</td>
2321
<td>{{order.status_str}}</td>
2422
</tr>
2523
{% endfor %}

0 commit comments

Comments
 (0)