Reputation: 317
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
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
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