This commit is contained in:
Aevann1 2021-08-15 03:03:29 +02:00
parent 2385e59d09
commit ed905c97e3
29 changed files with 255 additions and 249 deletions

View file

@ -7,13 +7,13 @@
<thead class="bg-primary text-white">
<tr>
<th style="font-weight: bold">Name</th>
<th style="font-weight: bold">Last visit</th>
<th style="font-weight: bold">Last visit</th>
</tr>
</thead>
{% for view in viewers %}
<tr>
<td style="font-weight: bold"><a style="color: #{{view.viewer.namecolor}}" href="/@{{view.viewer.username}}"><img src="/uid/{{view.viewer.id}}/pic/profile" class="profile-pic-20 mr-1"><span {% if view.viewer.patron %}class="patron" style="background-color:#{{view.viewer.namecolor}};"{% endif %}>{{view.viewer.username}}</span></a></td>
<td style="font-weight: bold">{{view.last_view_string}}</td>
<td style="font-weight: bold"><a style="color: #{{view.viewer.namecolor}}" href="/@{{view.viewer.username}}"><img src="/uid/{{view.viewer.id}}/pic/profile" class="profile-pic-20 mr-1"><span {% if view.viewer.patron %}class="patron" style="background-color:#{{view.viewer.namecolor}};"{% endif %}>{{view.viewer.username}}</span></a></td>
<td style="font-weight: bold">{{view.last_view_string}}</td>
</tr>
{% endfor %}
</table>