Django routes are specified as regular expressions to match URLs. What happens when a URL is matched?
The specified template is rendered, supplying matched arguments as the context.
An 404 HTTP response is returned indicating that the resource not found
The specified view is called and passed the HTTP request and any matched arguments specified in the URL pattern
QuizBucket
© 2017 QuizBucket.org