Beginnings of the integrated front-end website.

This commit is contained in:
Greg Taylor 2007-06-05 20:06:21 +00:00
parent bb6905c1ca
commit 1e13d94b20
12 changed files with 1258 additions and 2 deletions

View file

@ -0,0 +1,10 @@
from django.conf import settings
def general_context(request):
"""
Returns common Evennia-related context stuff.
"""
return {
'game_name': "Test Game",
'media_url': settings.MEDIA_URL,
}