forked from rDrama/rDrama
1
0
Fork 0

more verbose muting description

master
Aevann 2023-09-07 12:45:42 +03:00
parent 973667ff17
commit a4bc71d4e3
2 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,12 @@
{% extends "default.html" %}
{% block pagetitle %}@{{u.username}}'s muters{% endblock %}
{% block pagetitle %}@{{u.username}}'s notification muters{% endblock %}
{% block content %}
<h5 class="my-3">@{{u.username}}'s muters ({{users|length}} users)</h5>
<h5 class="my-3">@{{u.username}}'s notification muters ({{users|length}} users)</h5>
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>Name</th>
<th class="disable-sort-click">Muting since</td>
<th class="disable-sort-click">Muting notifications since</td>
</tr>
</thead>
<tbody id="muters-table">

View File

@ -1,12 +1,12 @@
{% extends "default.html" %}
{% block pagetitle %}Users muted by @{{u.username}}{% endblock %}
{% block pagetitle %}Users whose notifications are muted by @{{u.username}}{% endblock %}
{% block content %}
<h5 class="my-3">Users muted by @{{u.username}} ({{users|length}} users)</h5>
<h5 class="my-3">Users whose notifications are muted by @{{u.username}} ({{users|length}} users)</h5>
<div class="overflow-x-auto mt-1"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>Name</th>
<th class="disable-sort-click">Muting since</th>
<th class="disable-sort-click">Muting notifications since</th>
{% if v.id == u.id %}
<th class="disable-sort-click"></th>
{% endif %}