Advertisement
Guest User

sdfdsf

a guest
Jul 24th, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.59 KB | None | 0 0
  1. Django’s generic views can be a powerful tool for rapid development and prototyping.
  2. Don’t be fooled by the name though. Generic views are not just temporary scaffolding.
  3. Newcomers to Django can be forgiven for thinking the name must refer to some sort of
  4. default template for displaying your data, but the reality is quite different. Remember, a
  5. Django view is Python code that accepts an HttpRequest and returns an HttpResponse.
  6. The design of the data objects passed to that view, and the template used to render that
  7. response,are completely up to you.
  8. In this section, we walk through a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement