Class based views docs should be more explicit about template location
In the class based views docs, the location of the default template is mentioned:
In this case, the inferred template will be "books/publisher_list.html" -- the
"books" part comes from the name of the app that defines the model, while the
"publisher" bit is just the lowercased version of the model's name.
This is misleading because it gives a fairly explicit path without mentioning that this is relative to your templates directory. If you're an experienced Django dev, this is less obvious than you think it is. This should be clarified.
(In [15077]) Fixed #14682 - Add a note with an example of the explicit template location for class based views. Thanks PaulM for the suggestion, adamv for the patch.