On 7/13/07, Todd O'Bryan <[EMAIL PROTECTED]> wrote: > > The docs for newforms say how to override a field if you wish: > ... > But what if I only want to override the appointment field in my model > with a form field that limits people to choosing weekdays, but leave the > birth_date field as a normal DateField? >
Check the attributes of field - amongst many others, there is field.name, the name of the field on the form. So, you can do the following: if isinstance(field, models.DateField) and field.name == 'appointment': ... Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---