Contributing to REST framework
-
Accessing settings
-
Describe api_settings
Managing compatibility issues
Describe compat module
Running the tests
diff --git a/tutorial/2-requests-and-responses.html b/tutorial/2-requests-and-responses.html
index b3cc1fba5..9e21ea27d 100644
--- a/tutorial/2-requests-and-responses.html
+++ b/tutorial/2-requests-and-responses.html
@@ -244,7 +244,8 @@ urlpatterns = format_suffix_patterns(urlpatterns)
How's it looking?
Go ahead and test the API from the command line, as we did in tutorial part 1. Everything is working pretty similarly, although we've got some nicer error handling if we send invalid requests.
TODO: Describe using accept headers, content-type headers, and format suffixed URLs
-
Now go and open the API in a web browser, by visiting http://127.0.0.1:8000/.
+
Now go and open the API in a web browser, by visiting http://127.0.0.1:8000/."
+
Note: Right now the Browseable API only works with the CBV's. Need to fix that.
TODO: Describe browseable API awesomeness
What's next?
In tutorial part 3, we'll start using class based views, and see how generic views reduce the amount of code we need to write.