On Tue, Feb 24, 2009 at 8:08 AM, bruno desthuilliers <
bruno.desthuilli...@gmail.com> wrote:

>
>
>
> On 24 fév, 05:46, Mark Jones <mark0...@gmail.com> wrote:
> > That is exactly the kind of WET I was talking about.  as_p() with
> > appropriate CSS styling will render really nice forms as is, with the
> > exception of the help_text.  I even think that could be fixed without
> > any major rework, just a change in the as_p() string
> >
> > from
> >
> >     def as_p(self):
> >         "Returns this form rendered as HTML <p>s."
> >         return self._html_output(u'<p>%(label)s %(field)s%(help_text)
> > s</p>', u'%s', '</p>', u' %s', True)
> >
> > to
> >
> >     def as_p(self):
> >         "Returns this form rendered as HTML <p>s."
> >         return self._html_output(u'<p>%(label)s %(field)s<span
> > class="helptext">%(help_text)s</span></p>', u'%s', '</p>', u' %s',
> > True)
>
> Feel free to submit a patch - this is an opensource project. In the
> meantime, you can also monkeypatch Form.as_p (and other as_xxx
> methods).
>
>
> > similar changes would be needed for as_ul() and as_table()
> >
>
There's already a ticket for this exact item:
http://code.djangoproject.com/ticket/8426 so don't file another one :) .
However if you want this now feel free to overide as_p() on your forms with
what you want.

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to