diff --git a/README.rst b/README.rst index 08c1d65..4c15f69 100644 --- a/README.rst +++ b/README.rst @@ -22,29 +22,43 @@ Twitter Bootstrap for Django Form. A simple Django template tag to work with `Bootstrap `_ -Install -======= - -Add to ``INSTALLED_APPS``: - -.. code-block :: - - # myapp/settings.py - - INSTALLED_APPS = [ - 'bootstrapform', - # ... - ] Usage ====== -Use it like this, simple. +Add "bootstrapform" to your INSTALLED_APPS. -.. code-block:: +At the top of your template load in our template tags:: - {% load bootstrap %} - {{ form|bootstrap }} + {% load bootstrap %} + +Then to render your form:: + +
+ Form Title + {% csrf_token %} + {{ form|bootstrap }} +
+ +
+
+ +You can also set class="form-vertical" on the form element. + +To use class="form-inline" on the form element, also change the "|boostrap" template tag to "|bootstrap_inline". + +It is also possible to create a horizontal form. The form class and template tag are both changed, and you will also need slightly different CSS around the submit button:: + +
+ Form Title + {% csrf_token %} + {{ form|bootstrap_horizontal }} +
+
+ +
+
+
Demo