From 93adc7d4e7bf341316ed0274cea6adec7c2b0766 Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Sat, 2 Feb 2013 18:49:02 +0000 Subject: [PATCH] use crispy_forms --- requirements.txt | 1 + xnet/settings.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/requirements.txt b/requirements.txt index 5203206..4e5feee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ https://www.djangoproject.com/download/1.5c1/tarball/#egg=Django django_authgroupex django-xworkflows +django-crispy-forms pil diff --git a/xnet/settings.py b/xnet/settings.py index 233557b..4260933 100644 --- a/xnet/settings.py +++ b/xnet/settings.py @@ -140,6 +140,7 @@ INSTALLED_APPS = ( 'django.contrib.admin', 'django_authgroupex', + 'crispy_forms', 'xnet.site', 'xnet.accounts', 'xnet.news', @@ -175,3 +176,5 @@ LOGGING = { }, } } + +CRISPY_TEMPLATE_PACK = 'bootstrap' -- 2.1.4