|
@@ -135,12 +135,37 @@ Here is an example URL pattern to be used in your `urls.py`:
|
|
|
|
|
|
url(r'^(?P<id>\d+)$', VPNView.as_view(template_name="vpn/vpn.html"), name="details")
|
|
|
|
|
|
-Note that this pattern **must** be called "details". The global `urls.py`
|
|
|
-should contain a pattern of the form:
|
|
|
+Note that this pattern **must** be called "details".
|
|
|
+Of course, you can add as many additional views as you want.
|
|
|
|
|
|
- url(r'^vpn/', include('coin.vpn.urls', namespace='vpn'))
|
|
|
+URLs
|
|
|
+----
|
|
|
|
|
|
-where the value of "namespace" is the URL namespace defined in your
|
|
|
-original model (see above).
|
|
|
+App views URLs are pluggable, you only have to tell your app to declare its
|
|
|
+URLs. Then its URLs will be available under `<app_name>/<view_name>` (as long s
|
|
|
+your app is listed in `INSTALLED_APPS`).
|
|
|
|
|
|
-Of course, you can add as many additional views as you want.
|
|
|
+To do so :
|
|
|
+
|
|
|
+1. Create a `<app_name>/apps.py` like (important part is inheriting
|
|
|
+ `coin.apps.AppURLs`) :
|
|
|
+
|
|
|
+ from django.apps import AppConfig
|
|
|
+ import coin.apps
|
|
|
+
|
|
|
+ class MyAppConfig(AppConfig, coin.apps.AppURLs):
|
|
|
+ name = 'myapp'
|
|
|
+ verbose_name = "Fruity app !"
|
|
|
+
|
|
|
+2. Edit a `<app_dir>/__init__.py` :
|
|
|
+
|
|
|
+ default_app_config = 'coin.myapp.apps.MyAppConfig
|
|
|
+
|
|
|
+
|
|
|
+Optionaly, you can customize which URLs are plugged and to which prefix via the
|
|
|
+`exported_urlpatterns` var on your config class as a list of
|
|
|
+`<prefix>,<urlpatterns>` :
|
|
|
+
|
|
|
+ class MyAppConfig(AppConfig, coin.apps.AppURLS):
|
|
|
+ name = 'my_app'
|
|
|
+ exported_urlpatterns = [('coolapp', 'my_app.cool_urls')]
|