2021-07-23 15:50:26 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
2021-07-24 15:32:01 +00:00
|
|
|
<pre></pre>
|
2021-07-23 15:50:26 +00:00
|
|
|
<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-07-28 04:14:27 +00:00
|
|
|
<td style="font-weight: bold"><a {% if view.viewer.animatedname %}class="{% if view.viewer.patron %}patron{% else %}leaderboard{% endif %}"{% endif %} style="color: #{{view.viewer.namecolor}}" href="/@{{view.viewer.username}}"><img src="/@{{view.viewer.username}}/pic/profile" class="profile-pic-20 mr-1">{{view.viewer.username}}</a></td>
|
2021-07-28 02:46:49 +00:00
|
|
|
<td style="font-weight: bold">{{view.last_view_string}}</td>
|
2021-07-23 15:50:26 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock %}
|