{% extends "website/base.html" %} {% block titleblock %}Admin{% endblock %} {% block content %}

Admin

The Evennia admin page allows for modifying database entities using a graphical interface.


Game entities

Accounts

Accounts can have several characters under them. A user's login and password information can be changed here.

Objects

Objects include everything with an in-game location, from characters to rooms, exits, swords and monsters.

Scripts

Scripts are meta objects used to store game information and state, handle special functionality or perform timed actions. They have no in-game location.

Channels

Channels are used to redirect and organize player communications.

Help Topics

Extend the automatic command-help with custom help topics.


Extra website pages

Sites (domains)

Configure domain name for your pages. For local-only testing, create a domain named localhost:4001. Then manually add SITE_ID=<id> to your settings, where <id> is the database-id of the domain you created (the <id> can be found from the url of the domain in the admin, so /admin/sites/site/3/change means that <id> is 3).

Pages

Create, edit and publish new web pages without needing to know how to code. Select the domain specified by SITE_ID above.


If you are an advanced user who needs access to the raw Django Admin, it is available here. You can make this the default by changing EVENNIA_ADMIN to False in settings.py and reload.

{% endblock content %}