Features
Admin users management

Admin users management

The users management page can be accessed by administrator users from the top navigation by clicking on the "Admin" top bar item. It allows administrators to view, create and edit users.

Listing

ℹ️

As for the other pages, this is mapped by default to a JHipster API. The code corresponding to this page is in the src/features/users/PageUsers.tsx component.

The users listing displays all the users in the application. The listing contains some information about each user as well as some actions, that can be performed by clicking on the three dots button in each row :

  • edit : navigate to user page edition (you can also click on user's row)
  • activate/deactivate : toggle user status
  • delete : delete the user

Create user

ℹ️

As for the other pages, this is mapped by default to a JHipster API. The code corresponding to this page is in the src/features/users/PageUserCreate.tsx component.

The user creation page allows administrators to create a new user. To access it, click on the "Create User" button. This will bring you to an empty form that needs to be completed with new user's information. When finished, click on the "Create User" button to create the user.

Edit user

ℹ️

As for the other pages, this is mapped by default to a JHipster API. The code corresponding to this page is in the src/features/users/PageUserUpdate.tsx component.

The user edition page allows administrators to update user information. It is similar to creation page, except that user's is pre-populated in the form. To confirm the user update, click on the "Update User" button.