Character stuff

This commit is contained in:
Raynaldo Rivera
2014-10-03 20:15:43 -07:00
parent 4ca6c7dbb0
commit f9d1770361
21 changed files with 286 additions and 13 deletions

0
util/__init__.py Normal file
View File

View File

@@ -0,0 +1,9 @@
from django.conf import settings # import the settings file
def alliance_id(request):
# return the value you want as a dictionnary. you may add multiple values in there.
return {'ALLIANCE_ID': settings.ALLIANCE_ID}
def alliance_name(request):
# return the value you want as a dictionnary. you may add multiple values in there.
return {'ALLIANCE_NAME': settings.ALLIANCE_NAME}