add django-crispy-forms

- add django-crispy-forms to requirements
- add crispy_forms app to settings.base
- add CRISPY_TEMPLATE_PACK setting to settings.base
This commit is contained in:
Jan Dittberner 2015-01-17 13:58:54 +01:00
parent 961a2f471b
commit 8884b8b042
2 changed files with 8 additions and 0 deletions

View file

@ -220,6 +220,8 @@ DJANGO_APPS = (
# Admin panel and documentation:
'django.contrib.admin',
# 'django.contrib.admindocs',
'crispy_forms',
)
# Apps specific for this project go here.
@ -238,6 +240,11 @@ INSTALLED_APPS = DJANGO_APPS + LOCAL_APPS
########## END APP CONFIGURATION
########## CRISPY FORMS CONFIGURATION
CRISPY_TEMPLATE_PACK = 'bootstrap3'
########## END CRISPY_FORMS CONFIGURATION
########## LOGGING CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#logging
# A sample logging configuration. The only tangible logging

View file

@ -2,6 +2,7 @@ Django==1.7.3
bpython==0.13.1
django-braces==1.4.0
django-model-utils==2.2
django-crispy-forms==1.4.0
logutils==0.3.3
psycopg2==2.5.4
passlib==1.6.2