The form object has the initial values in a couple places in dicts.
Since it's a dict you can access it's fields with the dot-syntax. I
just successfully tried this on one of my forms::

    {{ form.fields.FIELDNAME.initial }}

or::

    {{ form.initial.FIELDNAME }}

Just watch that your view is passing the whole form object to the
template, not `form.as_p()` (or something).

- whiteinge


On Jul 11, 12:32 pm, Chris Hoeppner <[EMAIL PROTECTED]> wrote:
> Hi there!
>
> I was just wondering how to access the value I've set in the view with
> Form(initial={'val':somevar}) in the template. Maybe field.value? No.
> field.initial? No.
>
> Any clues? Thanks!


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to