1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
=====================
Django bootstrap form
=====================
Generate twitter-bootstrap form output for django form
A simple Django template tag to work with twitter bootstrap ( http://twitter.github.com/bootstrap/ )
Screenshot
-----------
.. image:: _static/example.png
Installation
------------
Install django-bootstrap-form with pip
.. code-block:: sh
$ pip install django-bootstrap-form
Configuration
-------------
Add 'bootstrapform' to INSTALLED_APPS.
.. code-block:: python
INSTALLED_APPS = (
...
'bootstrapform',
...
)
Usage
------
.. code-block:: none
{% load bootstrap %}
{{ form|bootstrap }}
# or use with individual field
{{ form.<field name>|bootstrap }} - To output individual fields
# For horizontal forms
{{ form|bootstrap_horizontal }}
# Or with custom size (default is 'col-lg-2 col-sm-2')
{{ form|bootstrap_horizontal:'col-lg-4' }}
CHANGELOG
---------
- 2013-8-27:
Add support for Bootstrap 3, contributed by `Nivl <https://github.com/Nivl>`_
- 2013-5-7:
Add `radio` support for ChoiceField
|