Skip to content

Commit

Permalink
order pools alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
xsuchy authored and praiskup committed Sep 5, 2024
1 parent ffc862e commit 634f480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resallocwebui/templates/pools.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h1 class="resource--title">Resalloc pools</h1>
</tr>
</thead>
<tbody>
{% for pool, info in information.items() %}
{% for pool, info in information.items()|sort(attribute='0') %}
<tr>
<th scope="row">{{ pool }}</th>
<td>{{ info['MAX'] }}</td>
Expand Down

0 comments on commit 634f480

Please sign in to comment.