Skip to content

Commit

Permalink
Item category in overdue / booked item tables
Browse files Browse the repository at this point in the history
  • Loading branch information
sondregronas committed Aug 4, 2023
1 parent 66ce892 commit 4131e28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BookingSystem/templates/index_admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h4>
{% for item in overdue_items %}
<tr class="item-row item-row--overdue">
<td>{{ item.id }}</td>
<td>{{ item.name }}</td>
<td>{{ item.name }} ({{ item.category }})</td>
<td>{{ item.borrowed_to }}</td>
<td>{{ item.order_due_date|strftime }}</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion BookingSystem/templates/innlevering.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h3>Sjekk at alt er med - bruk søkefeltet under til å dobbeltsjekke alle aktiv
<tr class="item-row">
{% endif %}
<td>{{ item.id }}</td>
<td>{{ item.name }}</td>
<td>{{ item.name }} ({{ item.category }})</td>
<td>{{ item.borrowed_to }}</td>
<td>{{ item.order_due_date|strftime }}</td>
</tr>
Expand Down

0 comments on commit 4131e28

Please sign in to comment.