diff options
| author | Andrew Godwin | 2022-12-16 16:38:52 -0700 | 
|---|---|---|
| committer | Andrew Godwin | 2022-12-16 16:38:52 -0700 | 
| commit | 45c6978bc397691b22db0360b16b19979eac7dce (patch) | |
| tree | 8e22839cd8a7b685f1d4491762c5d56aa5960dee /templates/admin/users.html | |
| parent | 1bcdff79e7e14b2166056d3b16531b32474c374b (diff) | |
| download | takahe-45c6978bc397691b22db0360b16b19979eac7dce.tar.gz takahe-45c6978bc397691b22db0360b16b19979eac7dce.tar.bz2 takahe-45c6978bc397691b22db0360b16b19979eac7dce.zip  | |
User admin and LD schema fixes
Diffstat (limited to 'templates/admin/users.html')
| -rw-r--r-- | templates/admin/users.html | 39 | 
1 files changed, 36 insertions, 3 deletions
diff --git a/templates/admin/users.html b/templates/admin/users.html index f2dc864..1bf5b2e 100644 --- a/templates/admin/users.html +++ b/templates/admin/users.html @@ -3,7 +3,40 @@  {% block subtitle %}Users{% endblock %}  {% block content %} -    <p> -        Please use the <a href="/djadmin/users/user/">Django Admin</a> for now. -    </p> +    <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> +    <section class="icon-menu"> +        {% for user in page_obj %} +            <a class="option" href="{{ user.urls.admin_edit }}"> +                <i class="fa-solid fa-user"></i> +                <span class="handle"> +                    {{ user.email }} +                    <small> +                        {{ user.num_identities }} identit{{ user.num_identities|pluralize:"y,ies" }} +                    </small> +                </span> +                {% if user.banned %} +                    <span class="pill bad">Banned</span> +                {% endif %} +            </a> +        {% empty %} +            <p class="option empty"> +                {% if query %} +                    No users match your query. +                {% else %} +                    There are no users yet. +                {% endif %} +            </p> +        {% endfor %} +        <div class="load-more"> +            {% if page_obj.has_previous %} +                <a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a> +            {% endif %} +            {% if page_obj.has_next %} +                <a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a> +            {% endif %} +        </div> +    </section>  {% endblock %}  | 
