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:
parent
961a2f471b
commit
8884b8b042
2 changed files with 8 additions and 0 deletions
|
@ -220,6 +220,8 @@ DJANGO_APPS = (
|
||||||
# Admin panel and documentation:
|
# Admin panel and documentation:
|
||||||
'django.contrib.admin',
|
'django.contrib.admin',
|
||||||
# 'django.contrib.admindocs',
|
# 'django.contrib.admindocs',
|
||||||
|
|
||||||
|
'crispy_forms',
|
||||||
)
|
)
|
||||||
|
|
||||||
# Apps specific for this project go here.
|
# Apps specific for this project go here.
|
||||||
|
@ -238,6 +240,11 @@ INSTALLED_APPS = DJANGO_APPS + LOCAL_APPS
|
||||||
########## END APP CONFIGURATION
|
########## END APP CONFIGURATION
|
||||||
|
|
||||||
|
|
||||||
|
########## CRISPY FORMS CONFIGURATION
|
||||||
|
CRISPY_TEMPLATE_PACK = 'bootstrap3'
|
||||||
|
########## END CRISPY_FORMS CONFIGURATION
|
||||||
|
|
||||||
|
|
||||||
########## LOGGING CONFIGURATION
|
########## LOGGING CONFIGURATION
|
||||||
# See: https://docs.djangoproject.com/en/dev/ref/settings/#logging
|
# See: https://docs.djangoproject.com/en/dev/ref/settings/#logging
|
||||||
# A sample logging configuration. The only tangible logging
|
# A sample logging configuration. The only tangible logging
|
||||||
|
|
|
@ -2,6 +2,7 @@ Django==1.7.3
|
||||||
bpython==0.13.1
|
bpython==0.13.1
|
||||||
django-braces==1.4.0
|
django-braces==1.4.0
|
||||||
django-model-utils==2.2
|
django-model-utils==2.2
|
||||||
|
django-crispy-forms==1.4.0
|
||||||
logutils==0.3.3
|
logutils==0.3.3
|
||||||
psycopg2==2.5.4
|
psycopg2==2.5.4
|
||||||
passlib==1.6.2
|
passlib==1.6.2
|
||||||
|
|
Loading…
Reference in a new issue