Skip to content

Commit

Permalink
fix: swap columns in host view
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeidnx committed Nov 18, 2024
1 parent 244a63c commit bf8b61c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/hosts/show_host.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ <h1>Host: {{ host.name }}</h1>
<tbody>
{% for user in authorized_users %}
<tr>
<td>{{ user.2 }}</td>
<td><a href="/users/{{ user.1 }}">{{ user.1 }}</a></td>
<td>{{ user.1 }}</td>
<td><a href="/users/{{ user.2 }}">{{ user.2 }}</a></td>
<td>
{% match user.3 %}
{% when Some with (options) %}
Expand Down

0 comments on commit bf8b61c

Please sign in to comment.