first push

This commit is contained in:
bkfox
2015-06-11 18:25:24 +02:00
parent 83885addeb
commit 55665a919b
15 changed files with 1598 additions and 0 deletions

10
programs/settings.py Executable file
View File

@ -0,0 +1,10 @@
from django.conf import settings
def ensure (key, default):
globals()[key] = getattr(settings, key, default)
ensure('AIRCOX_PROGRAMS_DATA', settings.MEDIA_ROOT + '/programs')