mirror of
https://github.com/evennia/evennia.git
synced 2026-04-03 14:37:17 +02:00
11 lines
215 B
Python
11 lines
215 B
Python
|
|
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,
|
||
|
|
}
|