You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tutorial/quickstart.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ The project layout should look like:
46
46
./tutorial/urls.py
47
47
./tutorial/wsgi.py
48
48
49
-
It may look unusual that the application has been created within the project directory. Using the project's namespace avoids name clashes with external module (topic goes outside the scope of the quickstart).
49
+
It may look unusual that the application has been created within the project directory. Using the project's namespace avoids name clashes with external modules (a topic that goes outside the scope of the quickstart).
50
50
51
51
Now sync your database for the first time:
52
52
@@ -77,7 +77,7 @@ First up we're going to define some serializers. Let's create a new module named
77
77
model = Group
78
78
fields = ('url', 'name')
79
79
80
-
Notice that we're using hyperlinked relations in this case, with `HyperlinkedModelSerializer`. You can also use primary key and various other relationships, but hyperlinking is good RESTful design.
80
+
Notice that we're using hyperlinked relations in this case with `HyperlinkedModelSerializer`. You can also use primary key and various other relationships, but hyperlinking is good RESTful design.
81
81
82
82
## Views
83
83
@@ -133,7 +133,7 @@ Again, if we need more control over the API URLs we can simply drop down to usin
133
133
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.
134
134
135
135
## Pagination
136
-
Pagination allows you to control how many objects per page are returned. To enable it add following lines to the`tutorial/settings.py`
136
+
Pagination allows you to control how many objects per page are returned. To enable it add the following lines to `tutorial/settings.py`
0 commit comments