Paricia administratorยค
Paricia administrators - or superusers - have full powers to control any aspect of Paricia, from giving permissions to other users to changing the visibility of objects. The exception to this is deleting objects that have dependants, as explained in the permissions section.
There are two ways of becoming an Admin user
- Asking another Admin to give superuser permissions to that user. This is done via the Paricia Admin. Within the
Users
app, select the user whose permissions need changing and check the box granting the userSuperuser status
, as shown in this picture:
-
Via the command line. This is a more advanced method and typically required only when setting up Paricia for the first time, either locally for development or in a new server. We will assume that that Paricia has been launched using
docker compose
, as instructed in the installation instructions. The steps in this case are:- Open an terminal and access the server, if not for local development, via SSH or other method.
- Find the name of the container running the
paricia
image executingdocker ps
. It should be something likeparicia-web-1
orparicia-app-1
. - Create the superuser with
docker exec -it paricia-web-1 python manage.py createsuperuser
. - You will be asked for a username, email and password. Complete all the details.
Once that is done, you should be able to login in to Paricia via the web interface and access the Paricia Admin.