This repository has been archived on 2025-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
asklyphe-frontend/templates/admin/home.html

25 lines
636 B
HTML

{% extends "admin/shell.html" %}
{% block title %}Home{% endblock %}
{% block head %}
{% endblock %}
{% block page %}
<h1>hello administrator!</h1>
<div class="horiz">
<div class="left">
<p>user count: {{ user_count }}</p>
<p>of those users, {{ admin_count }} are administrators</p>
<p>currently, there are {{ active_verification_requests }} unverified accounts</p>
</div>
<div class="right">
<h2>last ten users registered:</h2>
<ol>
{% for user in last_ten_users %}
<li>{{user}}</li>
{% endfor %}
</ol>
</div>
</div>
{% endblock %}