From: Corentin Wallez Date: Sat, 2 Feb 2013 18:49:02 +0000 (+0000) Subject: use crispy_forms X-Git-Url: http://git.polytechnique.org/?p=xnet;a=commitdiff_plain;h=93adc7d4e7bf341316ed0274cea6adec7c2b0766 use crispy_forms --- 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'