rDrama/files/templates/viewers.html

21 lines
717 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block content %}
<pre></pre>
<h5>Users who viewed your profile</h5>
<pre></pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-10-15 14:08:27 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>Name</th>
<th>Last visit</th>
2021-10-15 14:08:27 +00:00
</tr>
</thead>
{% for view in viewers %}
<tr>
2022-02-24 12:03:28 +00:00
<td><a style="color: #{{view.viewer.namecolor}}" href="/@{{view.viewer.username}}"><img loading="lazy" src="{{view.viewer.profile_url}}" class="pp20"><span {% if view.viewer.patron %}class="patron" style="background-color:#{{view.viewer.namecolor}}"{% endif %}>{{view.viewer.username}}</span></a></td>
<td>{{view.last_view_string}}</td>
2021-10-15 14:08:27 +00:00
</tr>
{% endfor %}
</table>
2021-07-23 15:50:26 +00:00
{% endblock %}