{# /* * OTS Signs Theme - User Page * Based on Xibo CMS user-page.twig with OTS styling */ #} {% extends "authed.twig" %} {% import "inline.twig" as inline %} {% block title %}{{ "Users"|trans }} | {% endblock %} {% block actionMenu %}{% endblock %} {% block pageContent %}

{% trans "Filter Users" %}

{% set title %}{% trans "Username" %}{% endset %} {{ inline.inputNameGrid('userName', title) }} {% set title %}{% trans "User Type" %}{% endset %} {{ inline.dropdown("userTypeId", "single", title, "", [{userTypeId:null, userType:""}]|merge(userTypes), "userTypeId", "userType") }} {% set title %}{% trans "Retired" %}{% endset %} {% set values = [{id: 1, value: "Yes"}, {id: 0, value: "No"}] %} {{ inline.dropdown("retired", "single", title, 0, values, "id", "value") }} {% set title %}{% trans "First Name" %}{% endset %} {{ inline.input('firstName', title) }} {% set title %}{% trans "Last Name" %}{% endset %} {{ inline.input('lastName', title) }}
{% if currentUser.isSuperAdmin() or (currentUser.isGroupAdmin() and currentUser.featureEnabled("users.add")) %} {% if currentUser.getOptionValue("isAlwaysUseManualAddUserForm", 0) %} {% set addUserFormUrl = url_for("user.add.form") %} {% else %} {% set addUserFormUrl = url_for("user.onboarding.form") %} {% endif %} {% endif %}
{% trans "Username" %} {% trans "Homepage" %} {% trans "Home folder" %} {% trans "Email" %} {% trans "Library Quota" %} {% trans "Last Login" %} {% trans "Logged In?" %} {% trans "Retired?" %} {% trans "Two Factor" %} {% trans "First Name" %} {% trans "Last Name" %} {% trans "Phone" %} {% trans "Ref 1" %} {% trans "Ref 2" %} {% trans "Ref 3" %} {% trans "Ref 4" %} {% trans "Ref 5" %} {% trans "Row Menu" %}
{% endblock %} {% block javaScript %} {% endblock %}