mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 14:26:30 +01:00
11 lines
257 B
Python
11 lines
257 B
Python
from django.conf import settings
|
|
import gameconf
|
|
|
|
def general_context(request):
|
|
"""
|
|
Returns common Evennia-related context stuff.
|
|
"""
|
|
return {
|
|
'game_name': gameconf.get_configvalue('site_name'),
|
|
'media_url': settings.MEDIA_URL,
|
|
}
|