{% extends "layout.twig.html" %} {% set title_ = "Users" %} {% block head %}{% endblock %} {% block content %}

System Users Add New User


{% if users|length < 1 %}

The user table is empty please click the Add User Link

{% else %} {% for usr in users %} {% endfor %} {% endif %}
ID Username Name User type Account Type
{{usr.id}} {{usr.user_id}} {{usr.fullname}} {{usr.user_type}} {{usr.account_type}} View Edit
{% endblock %}