diff --git a/gnuviechadmin/gnuviechadmin/settings/base.py b/gnuviechadmin/gnuviechadmin/settings/base.py index 33f5b85..9612eea 100644 --- a/gnuviechadmin/gnuviechadmin/settings/base.py +++ b/gnuviechadmin/gnuviechadmin/settings/base.py @@ -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 diff --git a/requirements/base.txt b/requirements/base.txt index f5ce376..b1fa482 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -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