mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 07:16:31 +01:00
10 lines
215 B
Python
10 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,
|
|
}
|