Commit f2d02647 authored by Timo Graham's avatar Timo Graham
Browse files

Fixed #16851 - Added how-to access form field value in template; thanks yasar11732 for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17138 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 16e3636a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -294,6 +294,9 @@ templates:
    The field's label wrapped in the appropriate HTML ``<label>`` tag,
    e.g. ``<label for="id_email">Email address</label>``

``{{ field.value }}`` 
    The value of the field. e.g ``someone@example.com``

``{{ field.html_name }}``
    The name of the field that will be used in the input element's name
    field. This takes the form prefix into account, if it has been set.