In my form, I have the following:
appointment = forms.SplitDateTimeField(label='AppointmentAt',
required = True
)
What do you type in Template to get SplitDateTimeField? This is what
I have, unfortunately this is not working.
In my template:
<p>
<label for="id_appointment_at">Appointment At:</label>
{{ form.appointment_at_date }} and {{ form.appointment_at_time }}
{% if form.appointment_at.errors %}***
{{ form.appointment_at.errors|join:", " }}{% endif %}
</p>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---