34 lines
743 B
HTML

{% extends 'base.html' %}
{% block content %}
<header class="page-header">
<h3>Users</h3>
<menu>
<a href="{% url 'account-create' %}">
<button class="btn btn-add">Create new account</button>
</a>
</menu>
</header>
<section>
<table class="index">
<thead>
<th>Name</th>
<th>Email</th>
</thead>
<tbody>
{% for user in user_list %}
<tr>
<td><a href="{% url 'account-detail' user.id %}">{{ user.get_full_name }}</a></td>
<td><a href="mailto:{{ user.email }}">{{ user.email }} &nearr;</a></td>
</tr>
{% empty %}
<tr>
<td colspan="3">No users yet.</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
{% endblock %}