summaryrefslogtreecommitdiff
path: root/docs/topics/class-based-views.txt
diff options
context:
space:
mode:
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.