Frontend | Backend | Api

Users default templates (Backend)

This page contains an overview of the default templates for the Users module.

The overview is generated based on controllers using the specified template as their default layout and containing GET methods; thus depending on the configuration the controller might not use the template at all or other controllers might use the template too.
The table is only meant as a first orientation which ResponseVariables can likely be expected when working with the template.

File Controller GET Response variables GET Description
users/backend/address-types/add.html AddressTypes\Add
Name Type Description
addressType AddressType Single (empty) AddressType record
Add a new record. Assigns an empty record to the template.
users/backend/address-types/edit.html AddressTypes\Edit
Name Type Description
addressType AddressType Retrieved AddressType record
Retrieve a single record and display the edit page for the record
users/backend/address-types/manage.html AddressTypes\Manage
Name Type Description
addressTypes Collection (AddressType) Collection of AddressTypes
Retrieve available records and assign them to the template for editing.
users/backend/authors/add.html Authors\Add
Name Type Description
author Author Single (empty) Author record
Add a new record. Assigns an empty record to the template.
users/backend/authors/edit.html Authors\Edit
Name Type Description
author Author Retrieved Author record
Retrieve a single record and display the edit page for the record
users/backend/authors/manage.html Authors\Manage
Name Type Description
authors Collection (Author) Collection of Authors
Retrieve available records and assign them to the template for editing.
users/backend/groups/add.html Groups\Add
Name Type Description
group Group Single (empty) Group record
Add a new record. Assigns an empty record to the template.
users/backend/groups/edit.html Groups\Edit
Name Type Description
group Group Retrieved Group record
Retrieve a single record and display the edit page for the record
users/backend/groups/manage.html Groups\Manage
Name Type Description
groups Collection (Group) Collection of Groups
Retrieve available records and assign them to the template for editing.
users/backend/login.html Login
Name Type Description
user User Empty user model
localPasswordEnabled bool Is login via local password enabled?
enabledOAuthAuthenticators array List of enabled OAuth authenticators
Process GET request. Show login form.
users/backend/people/add.html People\Add
Name Type Description
person Person Single (empty) Person record
Add a new record. Assigns an empty record to the template.
users/backend/people/edit.html People\Edit
Name Type Description
person Person Retrieved Person record
Retrieve a single record and display the edit page for the record
users/backend/people/manage.html People\Manage
Name Type Description
people Collection (Person) Collection of People
Retrieve available records and assign them to the template for editing.
users/backend/users/add.html Users\AddAuthorUser
Name Type Description
user User Single (empty) User record
Add a new record. Assigns an empty record to the template.
users/backend/users/edit.html Users\Edit
Name Type Description
user User Retrieved User record
Retrieve a single record and display the edit page for the record
users/backend/users/manage.html Users\Manage
Name Type Description
users Collection (User) Collection of Users
Retrieve available records and assign them to the template for editing.