2021-10-15 14:08:27 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<pre></pre>
|
|
|
|
<h5>Users who viewed your profile</h5>
|
|
|
|
<pre></pre>
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th style="font-weight: bold">Name</th>
|
|
|
|
<th style="font-weight: bold">Last visit</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for view in viewers %}
|
|
|
|
<tr>
|
2021-11-04 21:14:38 +00:00
|
|
|
<td style="font-weight: bold"><a style="color: #{{view.viewer.namecolor}}" href="/@{{view.viewer.username}}"><img loading="lazy" src="/uid/{{view.viewer.id}}/pic" class="pp20"><span {% if view.viewer.patron %}class="patron" style="background-color:#{{view.viewer.namecolor}};"{% endif %}>{{view.viewer.username}}</span></a></td>
|
2021-10-15 14:08:27 +00:00
|
|
|
<td style="font-weight: bold">{{view.last_view_string}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2021-07-23 15:50:26 +00:00
|
|
|
{% endblock %}
|