troggle-unchained/core/context.py
substantialnoninfringinguser e565a6b73b [svn] Renaming troggle.expo to troggle.core. To do this, used:
perl -p -i -e "s/expo(?=[\s\.']+)/core/g" `find -name \*.py`

and then manually checked each change (had to remove a couple)
2009-07-02 20:43:18 +01:00

5 lines
158 B
Python

from django.conf import settings
from core.models import Expedition
def troggle_context(request):
return { 'settings':settings, 'Expedition':Expedition }