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:
Griatch 2011-09-15 00:28:26 +02:00
parent 399919a8a9
commit de9c2ec437
6 changed files with 75 additions and 66 deletions

View file

@ -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 %}

View file

@ -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):