2022-05-04 23:09:46 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
2022-10-29 00:38:39 +00:00
|
|
|
<h5 class="pt-4 pl-2 my-1">Users who viewed your profile</h5>
|
2022-05-04 23:09:46 +00:00
|
|
|
<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>
|
|
|
|
|
2022-10-29 00:38:39 +00:00
|
|
|
{% endblock %}
|