rDrama/drama/templates/followers.html

21 lines
658 B
HTML

{% extends "default.html" %}
{% block content %}
<pre class="d-none d-md-inline-block"></pre>
<h5>@{{u.username}}'s followers</h5>
<pre></pre>
<table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th style="font-weight: bold">#</th>
<th style="font-weight: bold">Name</th>
</tr>
</thead>
{% for user in users %}
<tr>
<td style="font-weight: bold">{{users.index(user)+1}}</td>
<td style="font-weight: bold"><a style="color: #{{user.namecolor}}" href="/@{{user.username}}"><img src="/@{{user.username}}/pic/profile" class="profile-pic-20 mr-1">{{user.username}}</a></td>
</tr>
{% endfor %}
</table>
{% endblock %}