user2649814
user2649814

Reputation: 317

CSS files for Django forms

I used Bootstrap css file but when I use {{form.as_p}} in Django, Bootstrap doesn't support that well. Where can we find css files for Django forms?

Upvotes: 0

Views: 59

Answers (2)

Aldarund
Aldarund

Reputation: 17621

If you want to use bootstrap and django there is a perfect library for it django-bootstrap. Its more maintained than django-bootstrap-forms.

Upvotes: 0

Peter
Peter

Reputation: 1798

Try django-crispy-forms, also adds a lot of extra functionality to forms. Or, if you want to keep using Django Forms, try django-bootstrap-forms (and use it with {{ form|bootstrap }})

Upvotes: 1

Related Questions