From d760a0f856a8fad481b9bbfee97b459875fc0f4d Mon Sep 17 00:00:00 2001 From: Casey Kinsey Date: Wed, 21 Jan 2015 12:26:01 -0600 Subject: [PATCH] Update README.rst for more explicit setup. Might save new users a little bit of digging. --- README.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.rst b/README.rst index 98cd911..08c1d65 100644 --- a/README.rst +++ b/README.rst @@ -22,6 +22,19 @@ 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 ====== @@ -30,6 +43,7 @@ Use it like this, simple. .. code-block:: + {% load bootstrap %} {{ form|bootstrap }}