On Feb 13, 4:45 pm, "bax...@gretschpages.com" <mail.bax...@gmail.com>
wrote:
> I need a YearField of sorts, where users can select a year (for their
> car), and I'm trying to figure out how best to implement it. I'd need
> roughly 1901 to present. I know I could just put them all in choices,
> but that seems messy and a pain to maintain (even if only once a
> year). Better ways?


import datetime
class MyForm(forms.Form):
    def __init__(self, *args, **kwargs):
        super(MyForm, self).__init__(*args, **kwargs)
        year = datetime.date.today().year
        self.fields['year_field'].choices = [(y, y) for y in range
(year-100, year+1)]

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