Skip to content

Commit

Permalink
Swap the RR and TC columns so that they are in the right order accord…
Browse files Browse the repository at this point in the history
…ing the the heading
  • Loading branch information
eheinrich committed Mar 18, 2020
1 parent 007ef12 commit ea4b261
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@
<td {% if ta.std_allocation > 0 and ta.std_time_used >= ta.std_allocation %} class="bg-danger" {% endif %}>
{{ ta.std_time_used|floatformat }}
</td>
<td>{{ ta.tc_allocation|floatformat }}</td>
<td {% if ta.tc_allocation > 0 and ta.tc_time_used >= ta.tc_allocation %} class="bg-danger" {% endif %}>
{{ ta.tc_time_used|floatformat }}
</td>
<td>{{ ta.rr_allocation|floatformat }}</td>
<td {% if ta.rr_allocation > 0 and ta.rr_time_used >= ta.rr_allocation %} class="bg-danger" {% endif %}>
{{ ta.rr_time_used|floatformat }}
</td>
<td>{{ ta.tc_allocation|floatformat }}</td>
<td {% if ta.tc_allocation > 0 and ta.tc_time_used >= ta.tc_allocation %} class="bg-danger" {% endif %}>
{{ ta.tc_time_used|floatformat }}
</td>
<td>{{ ta.ipp_limit|floatformat }}</td>
<td>{{ ta.ipp_time_available|floatformat }}</td>
<td>{{ ta.proposal.users.count }}</td>
Expand Down

0 comments on commit ea4b261

Please sign in to comment.