Browse Source

Fixed the base class note in the Date Views docs.

Rocky Meza 11 years ago
parent
commit
42197e31aa
1 changed files with 4 additions and 1 deletions
  1. 4 1
      docs/ref/class-based-views/generic-date-based.txt

+ 4 - 1
docs/ref/class-based-views/generic-date-based.txt

@@ -612,7 +612,10 @@ DateDetailView
 
     All of the generic views listed above have matching ``Base`` views that
     only differ in that they do not include the
-    :class:`~django.views.generic.detail.SingleObjectTemplateResponseMixin`:
+    :class:`~django.views.generic.list.MultipleObjectTemplateResponseMixin`
+    (for the archive views) or
+    :class:`~django.views.generic.detail.SingleObjectTemplateResponseMixin`
+    (for the :class:`DateDetailView`):
 
     .. class:: BaseArchiveIndexView