Rock said the following: > Some thoughts: > > Inplementing form.as_items returning a list of form lines would be > nice. > This allows a variety of custom formatting options. Examples: > > <form> > {% for item in forms.as_items }}{{ item }} , {% endfor %}<br/> > <...submit directive...> > </form> > > <form> > {{ item[0] }} -- {{ item[1] }} -- {{ item[2] }}<br/> > {{ item[3] }}<br/> > {{ item[4] }} <submit directive> > </form>
These can already be done, just loop over the form, or use the manual items like {{ form.fieldname }}, {{ form.fieldname.label_tag }}, {{ form.fieldname.errors }}, etc -- Collin Grady Two wrongs don't make a right, but they make a good excuse. -- Thomas Szasz --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@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-developers?hl=en -~----------~----~----~----~------~----~------~--~---