summaryrefslogtreecommitdiff
path: root/docs/topics/class-based-views.txt
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2011-10-14 00:12:01 +0000
committerLuke Plant <L.Plant.98@cantab.net>2011-10-14 00:12:01 +0000
commitd1e5c55258d624058a93c8cacdb1f25ae7857554 (patch)
treedca859edc2229f68b7511687aa8b333378786633 /docs/topics/class-based-views.txt
parent5109ac370928a5924887424b6d6c803038fcb691 (diff)
Fixed many more ReST indentation errors, somehow accidentally missed from [16955]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/class-based-views.txt')
-rw-r--r--docs/topics/class-based-views.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/topics/class-based-views.txt b/docs/topics/class-based-views.txt
index 62368faee1..3812faefd2 100644
--- a/docs/topics/class-based-views.txt
+++ b/docs/topics/class-based-views.txt
@@ -29,22 +29,22 @@ be passed as an extra argument to the URLconf.
Django ships with generic views to do the following:
- * Perform common "simple" tasks: redirect to a different page and
- render a given template.
+* Perform common "simple" tasks: redirect to a different page and
+ render a given template.
- * Display list and detail pages for a single object. If we were creating an
- application to manage conferences then a ``TalkListView`` and a
- ``RegisteredUserListView`` would be examples of list views. A single
- talk page is an example of what we call a "detail" view.
+* Display list and detail pages for a single object. If we were creating an
+ application to manage conferences then a ``TalkListView`` and a
+ ``RegisteredUserListView`` would be examples of list views. A single
+ talk page is an example of what we call a "detail" view.
- * Present date-based objects in year/month/day archive pages,
- associated detail, and "latest" pages.
- `The Django Weblog <http://www.djangoproject.com/weblog/>`_'s
- year, month, and day archives are built with these, as would be a typical
- newspaper's archives.
+* Present date-based objects in year/month/day archive pages,
+ associated detail, and "latest" pages.
+ `The Django Weblog <http://www.djangoproject.com/weblog/>`_'s
+ year, month, and day archives are built with these, as would be a typical
+ newspaper's archives.
- * Allow users to create, update, and delete objects -- with or
- without authorization.
+* Allow users to create, update, and delete objects -- with or
+ without authorization.
Taken together, these views provide easy interfaces to perform the most common
tasks developers encounter.