diff options
| author | Vladimir Gorej | 2012-05-28 13:39:03 +0200 |
|---|---|---|
| committer | Vladimir Gorej | 2012-05-28 13:39:03 +0200 |
| commit | 448cbbc89406935a44e7c57b1a2e773b17f7f8b5 (patch) | |
| tree | d6dcb9bbca4af8f274de9a37ee6849b6b5e48afb | |
| parent | 1331c1dfb4d3fd9acab74a0cf10ca4d7e9132637 (diff) | |
| download | django-brevisurl-448cbbc89406935a44e7c57b1a2e773b17f7f8b5.tar.bz2 | |
Fix in readme file0.9
| -rw-r--r-- | README.rst | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 -------- |
