mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #26007 -- Clarified SingleObjectTemplateResponseMixin.get_template_names() docs.
This commit is contained in:
parent
bb6114ce50
commit
0fc6d5362b
2 changed files with 6 additions and 4 deletions
|
@ -164,9 +164,10 @@ Single object mixins
|
|||
|
||||
.. method:: get_template_names()
|
||||
|
||||
Returns a list of candidate template names. Returns the following list:
|
||||
Returns a list of candidate template names. Return a list containing
|
||||
``template_name``, if set on the value. Otherwise, return a list
|
||||
containing:
|
||||
|
||||
* the value of ``template_name`` on the view (if provided)
|
||||
* the contents of the ``template_name_field`` field on the
|
||||
object instance that the view is operating upon (if available)
|
||||
* ``<app_label>/<model_name><template_name_suffix>.html``
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue