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!