mirror of
https://github.com/evennia/evennia.git
synced 2026-04-03 06:27:17 +02:00
Cleaned admin interface, removing misleading fields. It's still broken in a few places however, objects give a traceback here, not sure why.
This commit is contained in:
parent
399919a8a9
commit
de9c2ec437
6 changed files with 75 additions and 66 deletions
|
|
@ -49,7 +49,7 @@
|
|||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
<h1>In-game entities</h1>
|
||||
<h2>In-game</h2>
|
||||
|
||||
{% for app in app_list %}
|
||||
|
||||
|
|
@ -85,10 +85,8 @@
|
|||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
|
||||
<h1>Game setups and configs</h1>
|
||||
|
||||
|
||||
<h2>configs</h2>
|
||||
|
||||
{% for app in app_list %}
|
||||
|
||||
|
|
@ -125,8 +123,7 @@
|
|||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
|
||||
<h1>Connection protocols</h1>
|
||||
<h2>Connections</h2>
|
||||
|
||||
{% for app in app_list %}
|
||||
|
||||
|
|
@ -164,7 +161,7 @@
|
|||
{% endfor %}
|
||||
|
||||
|
||||
<h1>Website Specific</h1>
|
||||
<h2>Website</h2>
|
||||
|
||||
|
||||
{% for app in app_list %}
|
||||
|
|
|
|||
|
|
@ -22,12 +22,13 @@ SERVER_VERSION = get_evennia_version()
|
|||
# Setup lists of the most relevant apps so
|
||||
# the adminsite becomes more readable.
|
||||
|
||||
USER_RELATED = ['Auth', 'Players']
|
||||
USER_RELATED = ['Players']
|
||||
GAME_ENTITIES = ['Objects', 'Scripts', 'Comms', 'Help']
|
||||
GAME_SETUP = ['Permissions', 'Config']
|
||||
CONNECTIONS = ['Irc', 'Imc2']
|
||||
WEBSITE = ['Flatpages', 'News', 'Sites']
|
||||
|
||||
|
||||
# The main context processor function
|
||||
|
||||
def general_context(request):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue