Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting of CRISPY_TEMPLATE_PACK variable in Django Crispy Forms

I am referring to this: http://django-crispy-forms.readthedocs.org/en/d-0/install.html. I would like to use Django Crispy Forms together with Twitter Bootstrap, hence i need to set CRISPY_TEMPLATE_PACK to bootstrap.

Where do i do this? I am not sure how to do this.. Need some guidance...

like image 620
lakshmen Avatar asked Dec 15 '22 22:12

lakshmen


1 Answers

CRISPY_TEMPLATE_PACK = 'bootstrap' 

it goes in your settings.py.

like image 128
lakshmen Avatar answered May 20 '23 20:05

lakshmen