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:
|
||||
'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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue