{% extends "timepiece/user/base.html" %} {% load bootstrap_toolkit %} {% block title %}Users{% endblock title %} {% block content %}

Users

{{ form|as_bootstrap:"inline" }}
{% include "timepiece/pagination.html" %} {% for user in object_list %} {% endfor %}
Username First Name Last Name Email Time Sheet Active
{{ user.username }} {{ user.first_name }} {{ user.last_name }} {{ user.email }} View Time Sheet {% if user.is_active %} {% else %} {% endif %}
{% include "timepiece/pagination.html" %}
{% endblock content %}