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