On 11/29/07, mamcxyz <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> I'm triying to use SplitDateTimeField. I have this form definition:
>
> class EventsForm(forms.Form):
>     title = forms.CharField(help_text=u'Ingrese el título de la
> noticia', required=True, label=u'Titulo')
>     tags = TagField(help_text=u'Ej: Fiesta, Internet, Jovenes, etc..',
> required=True, label=u'Etiquetas/Categorias')
>     expireOn = forms.SplitDateTimeField(help_text=u'Determine cuando
> la noticia se vuelve obsoleta.',widget =SplitDateTimeWidget,
> required=True, label=u'Fecha expiración')


Where is this SplitDateTimeWidget imported from?  When I cut/pasted from
your example into one of my own forms, I had to add 'forms.' in front of
SplitDateTimeWidget in order to get the code to run.  Then it works fine, no
error rendering, using your template  from below.  Do you have some other
SplitDateTimeWidget you are using?

However when the form is rendered with this template:
>
> <dl {% if field.required %} class="requerido"{% endif %}>


Note it rather looks like you are using 'field' here before it has been set
to anything.

{% for field in form %}
>     <dt>{% if field.required%}*{% endif %}{{ field.label_tag }}</dt>
>     {% if field.help_text %}<dd
> class="ayuda"><small>{{ field.help_text }}</small></dd>{% endif %}
>     <dd>{{ field }}</dd>
>     {% if field.errors %}<dd class="error">{{ field.errors }}</dd>{%
> endif %}
> {% endfor %}
> </dl>
>
> this error happend:
>
> 'str' object has no attribute 'date'
>
> Caught an exception while rendering: 'str' object has no attribute
> 'date'
> 1       <dl {% if field.required %} class="requerido"{% endif %}>
> 2       {% for field in form %}  <==HERE


I suspect the template debug code is highlighting the wrong line here, since
I don't see how that line could cause the error reported.  It's far more
likely to be the <dd>{{ field }}</dd> line.  There's an open bug (
http://code.djangoproject.com/ticket/5831) that may be causing this, though
I haven't dug into it to be sure (since I can't replicate your error).

Karen

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

Reply via email to