forked from rDrama/rDrama
1
0
Fork 0

minor grammer change + delete unused template

master
Aevann1 2022-10-27 17:37:40 +02:00
parent 35ea423f35
commit 28cf9b66f9
4 changed files with 4 additions and 28 deletions

View File

@ -11,7 +11,7 @@
<tr>
<th>#</th>
<th>Name</th>
<td>Blocking Since</td>
<td>Blocking since</td>
</tr>
</thead>
<tbody id="blockers-table">

View File

@ -11,7 +11,7 @@
<tr>
<th>#</th>
<th>Name</th>
<td>Following Since</td>
<td>Following since</td>
{% if v.id == u.id %}
<th></th>
{% endif %}

View File

@ -12,7 +12,7 @@
<th>#</th>
<th>Name</th>
<th>Exiled by</th>
<th>On</th>
<th>Exiled since</th>
<th></th>
</tr>
</thead>
@ -38,4 +38,4 @@
{% endfor %}
</table>
{% endblock %}
{% endblock %}

View File

@ -1,24 +0,0 @@
{% extends "default.html" %}
{% block content %}
<pre>
</pre>
<h5>Users subscribed to /h/{{sub}}</h5>
<pre></pre>
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>#</th>
<th>Name</th>
</tr>
</thead>
{% for user in users %}
<tr>
<td>{{loop.index}}</td>
<td>{% include "user_in_table.html" %}</td>
</tr>
{% endfor %}
</table>
{% endblock %}