diff options
Diffstat (limited to 'ogcp/templates/users.html')
-rw-r--r-- | ogcp/templates/users.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ogcp/templates/users.html b/ogcp/templates/users.html new file mode 100644 index 0000000..c97f113 --- /dev/null +++ b/ogcp/templates/users.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} + +{% block nav_users %}active{% endblock %} + +{% block container %} + <form id="usersForm"> + <input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/> + </form> + {{ super() }} +</form> +{% endblock %} + +{% block sidebar %} + <ul id="users-list" class="nav flex-column nav-pills"> + {% for user in users %} + <li id="user-{{ user['USER'] }}" class="nav-item"> + <input class="form-check-input" type="checkbox" form="usersForm" + value="{{ user['USER'] }}" + name="user-{{ user['USER'] }}" /> + {{ user['USER'] }} + </li> + {% endfor %} + </ul> +{% endblock %} + +{% block commands %} + {% if btn_back %} + <button class="btn btn-danger ml-3" type="button" id="backButton" onclick="history.back()"> + {{ _("Back") }} + </button> + {% endif %} +{% endblock %} + |