25 lines
636 B
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 %}
|