Oops sorry for the duplicate post! I am looking to get controll of a specific field. The docs say I can get my hands on the following parts of a field: {{ field.label }} The label of the field, e.g. E-mail address. {{ field.label_tag }} The field's label wrapped in the appropriate HTML <label> tag, e.g. <label for="id_email">E-mail address</label> {{ 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. {{ field.help_text }} Any help text that has been associated with the field. {{ field.errors }}
what about the value of the field, if it is text for example: <input id="id_subject" type="text" name="subject" maxlength="100" value="the_thing_i_am_after" onclick="javascript :smokeAndMirrors()" / > I don't want django to write the whole form for me. I'm probably missing something quite obvious! On Sep 25, 12:56 pm, Daniel Roseman <[EMAIL PROTECTED]> wrote: > On Sep 25, 9:36 am, "I.K." <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I've spent a short while reading the documentation but not spotted > > what I need. Could somebody point me to the right place please? > > > Is there a way to put a bound Django form into a template to render > > an HTML form with the previously posted values in it? I'd like to get > > the field value specifically, as I introduce javascript handlers on > > some fields and don't want django to render the whole field. > > > For example, a user fills in an html form with their address but > > leaves out a mandatory field, after validation I wish to render the > > same HTML with all of the previously submitted values in the form. > > > Thanks in advance > > I'm not really sure what you're asking here - at first you say you > don't want Django to render the form, then you say you want it > completely rendered. > > Assuming all you want is to redisplay a partially filled form that > failed validation along with all the entered values, that's actually > the standard way to handle forms in Django. See > here:http://docs.djangoproject.com/en/dev/topics/forms/#using-a-form-in-a-... > On a POST, the form is bound to the data, and if it is not valid, the > bound form is redisplayed. > > Does that answer your question? > > -- > DR. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---