switch time and name columns in profile views due to the (((()))) menace

master
Aevann 2024-04-08 12:48:23 +02:00
parent 23475d31c6
commit 457cd4efc9
1 changed files with 2 additions and 2 deletions

View File

@ -7,18 +7,18 @@
<table>
<thead>
<tr>
<th>Name</th>
<th class="disable-sort-click">Last visit</th>
<th>Name</th>
</tr>
</thead>
{% for view in views %}
<tr>
<td>{{view.last_view_string}}</td>
<td>
{% with user=view.viewer %}
{% include "user_in_table.html" %}
{% endwith %}
</td>
<td>{{view.last_view_string}}</td>
</tr>
{% endfor %}
</table>