diff options
Diffstat (limited to 'tutorial/4-authentication-and-permissions.html')
| -rw-r--r-- | tutorial/4-authentication-and-permissions.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tutorial/4-authentication-and-permissions.html b/tutorial/4-authentication-and-permissions.html index 65cc65e2..d2f2f803 100644 --- a/tutorial/4-authentication-and-permissions.html +++ b/tutorial/4-authentication-and-permissions.html @@ -290,7 +290,7 @@ url(r'^users/(?P<pk>[0-9]+)/$', views.UserDetail.as_view()),  </code></pre>  <h2 id="adding-login-to-the-browsable-api">Adding login to the Browsable API</h2>  <p>If you open a browser and navigate to the browsable API at the moment, you'll find that you're no longer able to create new code snippets.  In order to do so we'd need to be able to login as a user.</p> -<p>We can add a login view for use with the browsable API, by editing our URLconf once more.</p> +<p>We can add a login view for use with the browsable API, by editing the URLconf in our project-level urls.py file.</p>  <p>Add the following import at the top of the file:</p>  <pre class="prettyprint lang-py"><code>from django.conf.urls import include  </code></pre> | 
