i'm populating the choices of a form choicefield in django, it's a year select field, i get years from the database and put them in a list of tuples in the field. My code looks like this

def get_years():
    choices = []
    years = []
    for en in Encuesta.objects.all().order_by('fecha'):
        years.append(en.fecha.year)
    for year in list(set(years)):
        choices.append((year, year))
    return choices

and my form field looks like this

year = forms.ChoiceField(choices=get_years())

The problem is that when i see it in the browser, the year list is fine according to the database, but when i change some date in database, the year select list doesn't update. I've tried width @cache_control(no_cache=True) decorator, but doesn't work. What can i do??

Thanks in advance!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Update the years when you initialize a form instance.

def __init__(self, *args, **kwargs):
   super(MyForm, self).__init__(*args, **kwargs)
   self.fields['year'].choices = self.get_years()
link|improve this answer
ohh many thanks man!! it works for me!! bye – eos87 Apr 7 '11 at 20:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.