Skip to content

Commit

Permalink
fix(roster): Petition table CSS messed up
Browse files Browse the repository at this point in the history
  • Loading branch information
vEnhance committed May 27, 2024
1 parent 154b765 commit f0b1b50
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions roster/templates/roster/inquiry.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h2>New petition</h2>
{% if request.user|getconfig:"show_unit_petitions" %}
<h2>Current petitions</h2>
<table class="table">
<thead class="thead-dark">
<thead class="table-dark">
<tr>
<th>Created</th>
<th>Unit</th>
Expand All @@ -48,7 +48,9 @@ <h2>Current petitions</h2>
{% for inquiry in inquiries %}
<tr>
<td title="{{ inquiry.created_at|date:"r" }}">{{ inquiry.created_at|date:"M d" }}</td>
<th>{{ inquiry.unit }}</th>
<td>
<strong>{{ inquiry.unit }}</strong>
</td>
<td>{{ inquiry.get_action_type_display }}</td>
<td>
{% if inquiry.status == "INQ_NEW" %}
Expand Down

0 comments on commit f0b1b50

Please sign in to comment.