This was answered here last month:

http://groups.google.com/group/django-users/browse_frm/thread/f0e7d503401a7186/1d378aa769159983?#1d378aa769159983

As Jay mentioned, you need to use the object value, not the formfield. The date filter requires a datetime instance, which the formfield is not  and so has no day attribute (or year or month attributes for that matter). 

Don

On Sep 27, 2006, at 4:08 PM, viestards wrote:


Using the 'date' filter, you can format the output however you want,
within templates.

For example, to format a date as "September 17, 2006", you would do
the following in a template:

{{ object.pub_date|date:"F d, Y" }}

thanks for reply, but will it work on forms?
 Right now I get:
'FormFieldWrapper' object has no attribute 'day'
and mark on line
{{form.registrationDate|date:"d.m.Y"}}

Viestards

Jay P.


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to