Skip to content

Commit

Permalink
Added text align right for time col
Browse files Browse the repository at this point in the history
  • Loading branch information
anushbmx authored and codingjoe committed Jan 6, 2021
1 parent 62b0cd0 commit 4c1bde5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions health_check/templates/health_check/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1 class="w3-center">System status</h1>
<tr class="w3-blue">
<th colspan="2">Service</th>
<th>Status</th>
<th class="w3-hide-small w3-hide-medium w3-right">Time Taken</th>
<th class="w3-hide-small w3-hide-medium w3-right w3-right-align">Time Taken</th>
</tr>
{% for plugin in plugins %}
<tr>
Expand All @@ -26,7 +26,7 @@ <h1 class="w3-center">System status</h1>
</td>
<td>{{ plugin.identifier }}</td>
<td>{{ plugin.pretty_status }}</td>
<td class="w3-hide-small w3-hide-medium w3-right">{{ plugin.time_taken|floatformat:4 }} seconds</td>
<td class="w3-hide-small w3-hide-medium w3-right w3-right-align">{{ plugin.time_taken|floatformat:4 }} seconds</td>
</tr>
{% endfor %}
</table>
Expand Down

0 comments on commit 4c1bde5

Please sign in to comment.