takahe/templates/admin/users.html

59 wiersze
2.2 KiB
HTML
Czysty Zwykły widok Historia

2022-11-18 00:43:00 +00:00
{% extends "settings/base.html" %}
{% load activity_tags %}
2022-11-18 00:43:00 +00:00
{% block subtitle %}Users{% endblock %}
{% block content %}
2022-12-16 23:38:52 +00:00
<form action="." class="search">
<input type="search" name="query" value="{{ query }}" placeholder="Search by email">
<button><i class="fa-solid fa-search"></i></button>
</form>
<table class="items">
2022-12-16 23:38:52 +00:00
{% for user in page_obj %}
<tr>
<td class="icon">
<a href="{{ user.urls.admin_edit }}" class="overlay"></a>
<i class="fa-solid fa-user"></i>
</td>
<td class="name">
<a href="{{ user.urls.admin_edit }}" class="overlay"></a>
2022-12-16 23:38:52 +00:00
{{ user.email }}
<small>{% if user.admin %}Admin{% elif user.moderator %}Moderator{% endif %}</small>
</td>
<td class="stat">
{{ user.num_identities }}
2022-12-16 23:38:52 +00:00
<small>
identit{{ user.num_identities|pluralize:"y,ies" }}
2022-12-16 23:38:52 +00:00
</small>
</span>
<td class="actions">
{% if user.banned %}
<span class="bad">Banned</span>
{% endif %}
</td>
</tr>
2022-12-16 23:38:52 +00:00
{% empty %}
<tr class="empty">
<td>
{% if query %}
No users match your query.
{% else %}
There are no users yet.
{% endif %}
</td>
</tr>
2022-12-16 23:38:52 +00:00
{% endfor %}
</table>
<div class="pagination">
{% if page_obj.has_previous %}
<a class="button" href=".?{% urlparams page=page_obj.previous_page_number %}">Previous Page</a>
{% endif %}
{% if page_obj.paginator.count %}
<span class="count">{{ page_obj.paginator.count }} user{{page_obj.paginator.count|pluralize }}</span>
{% endif %}
{% if page_obj.has_next %}
<a class="button" href=".?{% urlparams page=page_obj.next_page_number %}">Next Page</a>
{% endif %}
</div>
{% endblock %}