rDrama/files/templates/viewers.html

25 lines
513 B
HTML
Raw Normal View History

2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
{% block content %}
<pre></pre>
2022-09-29 10:30:17 +00:00
<h5 class="pt-4 pl-2">Users who viewed your profile</h5>
2022-05-04 23:09:46 +00:00
<pre></pre>
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>Name</th>
<th>Last visit</th>
</tr>
</thead>
{% for view in viewers %}
<tr>
2022-09-05 03:01:06 +00:00
<td>
{% with user=view.viewer %}
{% include "user_in_table.html" %}
{% endwith %}
</td>
2022-05-04 23:09:46 +00:00
<td>{{view.last_view_string}}</td>
</tr>
{% endfor %}
</table>
2021-07-23 15:50:26 +00:00
{% endblock %}