Fixed #4401 -- Added documentation about mimetype parameter to

direct_to_template generic view. Thanks, Forest Bond and Marc Fargas.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@5406 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-06-01 10:37:39 +00:00
parent 2dd753fa88
commit 9b94115843
1 changed files with 3 additions and 0 deletions

View File

@ -99,6 +99,9 @@ which is a dictionary of the parameters captured in the URL.
dictionary is callable, the generic view will call it dictionary is callable, the generic view will call it
just before rendering the template. just before rendering the template.
* ``mimetype``: The MIME type to use for the resulting document. Defaults
to the value of the ``DEFAULT_CONTENT_TYPE`` setting.
**Example:** **Example:**
Given the following URL patterns:: Given the following URL patterns::