mirror of
https://github.com/evennia/evennia.git
synced 2026-03-17 05:16:31 +01:00
9 lines
229 B
Python
9 lines
229 B
Python
from src.config.models import ConfigValue
|
|
|
|
def general_context(request):
|
|
"""
|
|
Returns common Evennia-related context stuff.
|
|
"""
|
|
return {
|
|
'game_name': ConfigValue.objects.get_configvalue('site_name'),
|
|
}
|