aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorTom Christie2013-05-05 18:12:35 +0100
committerTom Christie2013-05-05 18:12:35 +0100
commitb70c9cc107743b45edc50c4b4e5e6a7d5a856f01 (patch)
tree2949ff7eda5c81aff8fdfd4d97a7cef8ad55f1c3 /docs/tutorial/quickstart.md
parent75b2afcb23d0968d4c7115243cdfaa778da5dca4 (diff)
parent287ff43cdd85a5c2275205bf37e19dea3f69ad01 (diff)
downloaddjango-rest-framework-b70c9cc107743b45edc50c4b4e5e6a7d5a856f01.tar.bz2
Merge master
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index a7716105..627724c7 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -76,7 +76,11 @@ Because we're using viewsets instead of views, we can automatically generate the
Again, if we need more control over the API URLs we can simply drop down to using regular class based views, and writing the URL conf explicitly.
+<<<<<<< HEAD
Note that we're also including default login and logout views for use with the browsable API. That's optional, but useful if your API requires authentication and you want to use the browseable API.
+=======
+Finally, we're including default login and logout views for use with the browsable API. That's optional, but useful if your API requires authentication and you want to use the browsable API.
+>>>>>>> master
## Settings