forked from rDrama/rDrama
1
0
Fork 0

fix prev commit

master
Aevann 2024-02-03 01:18:11 +02:00
parent f6c97fd777
commit ccb592c7f9
1 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@
{% for user in users %}
<tr>
<td data-sort-key="{{user.username.lower() if user else ''}}">{%- include 'user_in_table.html' -%}</td>
<td {% if user.last_active %}data-time="{{user.last_active}}"{% endif %}></td>
<td>{{user.truescore}}</td>
<td><a href="/{{user.shadowbanned_by}}">{{user.shadowbanned_by}}</a></td>
<td>{{user.ban_reason | safe}}</td>
<td><a href="/{{user.shadowbanned_by}}">{{user.shadowbanned_by}}</a></td>
<td {% if user.last_active %}data-time="{{user.last_active}}"{% endif %}></td>
</tr>
{% endfor %}
</table>