limodou wrote: > I want to use generic view to create my model polls's form html code, > but I found pub_date is split to pub_date_date and pub_date_time, I > want to know if there are some documents remind this. I used below > code: > > {% for field in form.fields %} > {{field}} > {% endfor %} > > and I want to know how to get field display name? > > btw: polls model is the example from tutorial > > -- > I like python! > My Blog: http://www.donews.net/limodou > NewEdit Maillist: http://groups.google.com/group/NewEdit >
Fields can create multiple FormFields. This is why iterating over the FormFields is not going to get you very satisfactory results for autogenerating a form. If you wish to autogenerate a form consistently, you can take a look at how it is done by the admin in the new-admin branch. However, this part is not yet documented and won't be until the API is fully baked. (Post core fields removal.) Robert