RETIRED, further work has moved to Debian project infrastructure
Go to file
arjoonn sharma 4326a2fbb6 In the form.html template cehcking the same condition is done twice.
Doing it once reduces complexity making the code faster while rendering.
Also since the check is done on a high level like templates, it is slower than
the native python if condition. Thus the need to reduce checks on the higher levels.
2015-03-06 11:36:06 +05:30
bootstrapform In the form.html template cehcking the same condition is done twice. 2015-03-06 11:36:06 +05:30
docs fixed RST for link to Nivl 2013-09-09 22:44:16 -04:00
example Merge branch 'eureka' of https://github.com/caumons/django-bootstrap-form into caumons-eureka 2013-12-06 03:31:07 +08:00
tests update test html 2013-12-09 02:43:40 +08:00
.gitignore Merge branch 'eureka' of https://github.com/caumons/django-bootstrap-form into caumons-eureka 2013-12-06 03:31:07 +08:00
.travis.yml travis: Run tests on Python 3.3 2014-04-03 21:12:34 +02:00
CHANGES.txt Update README and add CHANGES.txt 2013-12-06 03:40:56 +08:00
LICENSE add LICENSE 2011-09-13 20:59:07 -07:00
MANIFEST.in fix setup.py with MANIFEST.in 2012-02-14 21:23:14 +08:00
README.rst Update README.rst for more explicit setup. 2015-01-21 12:26:01 -06:00
setup.py setup: Add classifiers for Python version support 2014-04-03 21:16:17 +02:00

Django bootstrap form

PyPI version

image

image

Bitdeli badge

Twitter Bootstrap for Django Form.

A simple Django template tag to work with Bootstrap

Install

Add to INSTALLED_APPS:

# myapp/settings.py

INSTALLED_APPS = [

'bootstrapform', # ...

]

Usage

Use it like this, simple.

{% load bootstrap %}
{{ form|bootstrap }}

Demo

Checkout this Demo site to see it in action.