Browse Source

Doc: add a note about the URL namespace for pluggable URLs

Baptiste Jonglez 8 years ago
parent
commit
16f40803d8
1 changed files with 2 additions and 0 deletions
  1. 2 0
      EXTENDING.md

+ 2 - 0
EXTENDING.md

@@ -169,3 +169,5 @@ Optionaly, you can customize which URLs are plugged and to which prefix via the
         class MyAppConfig(AppConfig, coin.apps.AppURLS):
             name = 'my_app'
             exported_urlpatterns = [('coolapp', 'my_app.cool_urls')]
+
+The URL namespace will be set to the prefix ('coolapp' in this example).