diff --git a/example/example/settings.py b/example/example/settings.py index 8dfb0e9..5f5306b 100644 --- a/example/example/settings.py +++ b/example/example/settings.py @@ -128,6 +128,7 @@ INSTALLED_APPS = ( 'django_coverage', 'floppyforms', 'rest_framework', + 'crispy_forms', 'djadmin2', 'blog', ) diff --git a/example2/example2/settings.py b/example2/example2/settings.py index bb1df97..8b6c19d 100644 --- a/example2/example2/settings.py +++ b/example2/example2/settings.py @@ -122,6 +122,7 @@ INSTALLED_APPS = ( 'floppyforms', 'rest_framework', 'djadmin2', + 'crispy_forms', 'polls', ) diff --git a/requirements.txt b/requirements.txt index 49eb5ed..80ba813 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,3 +8,4 @@ django-extra-views==0.6.2 django-floppyforms==1.1 Sphinx==1.2b1 django-filter==0.6 +django-crispy-forms==1.3.2 \ No newline at end of file diff --git a/setup.py b/setup.py index 0cb2326..67b256e 100644 --- a/setup.py +++ b/setup.py @@ -92,7 +92,8 @@ setup( 'django-braces==1.0.0', 'django-extra-views==0.6.2', 'djangorestframework==2.3.3', - 'django-floppyforms==1.1' + 'django-floppyforms==1.1', + 'django-crispy-forms==1.3.2' ], zip_safe=False, )