aboutsummaryrefslogtreecommitdiffstats
path: root/api-guide/routers/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'api-guide/routers/index.html')
-rw-r--r--api-guide/routers/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/api-guide/routers/index.html b/api-guide/routers/index.html
index 70d136f4..cc7bad73 100644
--- a/api-guide/routers/index.html
+++ b/api-guide/routers/index.html
@@ -483,20 +483,20 @@ router.register(r'users', UserViewSet)
router.register(r'accounts', AccountViewSet)
urlpatterns = [
- url(r'^forgot-password/$, ForgotPasswordFormView.as_view(),
+ url(r'^forgot-password/$', ForgotPasswordFormView.as_view(),
]
urlpatterns += router.urls
</code></pre>
<p>Alternatively you can use Django's <code>include</code> function, like so…</p>
<pre><code>urlpatterns = [
- url(r'^forgot-password/$, ForgotPasswordFormView.as_view(),
+ url(r'^forgot-password/$', ForgotPasswordFormView.as_view(),
url(r'^', include(router.urls))
]
</code></pre>
<p>Router URL patterns can also be namespaces.</p>
<pre><code>urlpatterns = [
- url(r'^forgot-password/$, ForgotPasswordFormView.as_view(),
+ url(r'^forgot-password/$', ForgotPasswordFormView.as_view(),
url(r'^api/', include(router.urls, namespace='api'))
]
</code></pre>