Evennia once again runs on the latest trunk. Admin interface is still broken pending transition to newforms-admins stuff.

This commit is contained in:
Greg Taylor 2008-11-05 18:08:51 +00:00
parent 72df223b3a
commit 75c38ada19
5 changed files with 19 additions and 18 deletions

View file

@ -1,9 +1,9 @@
import gameconf
from apps.config.models import ConfigValue
def general_context(request):
"""
Returns common Evennia-related context stuff.
"""
return {
'game_name': gameconf.get_configvalue('site_name'),
'game_name': ConfigValue.objects.get_configvalue('site_name'),
}