aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Gorej2012-05-28 13:39:03 +0200
committerVladimir Gorej2012-05-28 13:39:03 +0200
commit448cbbc89406935a44e7c57b1a2e773b17f7f8b5 (patch)
treed6dcb9bbca4af8f274de9a37ee6849b6b5e48afb
parent1331c1dfb4d3fd9acab74a0cf10ca4d7e9132637 (diff)
downloaddjango-brevisurl-448cbbc89406935a44e7c57b1a2e773b17f7f8b5.tar.bz2
Fix in readme file0.9
-rw-r--r--README.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index b30122b..045ae76 100644
--- a/README.rst
+++ b/README.rst
@@ -58,6 +58,16 @@ Configuration
BREVISURL_BACKEND = 'brevisurl.backends.local.BrevisUrlBackend' # Default is 'brevisurl.backends.local.BrevisUrlBackend'
+**Append brevisurl url patterns to your urls.py at the end of module, if you're using local backend**
+
+::
+
+ urlpatterns += patterns('',
+ # brevisurl urls
+ (r'^', include('brevisurl.urls'))
+ )
+
+
Examples
--------