Skip to content

Commit

Permalink
Colour cancelled invoices red (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 authored Oct 17, 2024
1 parent ec000be commit c6823bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RIGS/templates/invoice_list_waiting.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
{% for event in object_list %}
<tr class="{{event.status_color}}">
<th scope="row"><a href="{% url 'event_detail' event.pk %}">{{ event.display_id }}</a><br>
<span class="text-muted">{{ event.get_status_display }}</span></th>
<span class="{% if event.get_status_display == 'Cancelled' %}text-danger{% endif %}">{{ event.get_status_display }}</span></th>
<td>{{ event.start_date }}</td>
<td>
{{ event.name }}
Expand Down

0 comments on commit c6823bb

Please sign in to comment.