aboutsummaryrefslogtreecommitdiff
path: root/budget
diff options
context:
space:
mode:
Diffstat (limited to 'budget')
-rw-r--r--budget/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/budget/forms.py b/budget/forms.py
index d797d69..a81d8ca 100644
--- a/budget/forms.py
+++ b/budget/forms.py
@@ -14,7 +14,7 @@ def select_multi_checkbox(field, ul_class='', **kwargs):
if checked:
options['checked'] = 'checked'
html.append(u'<li><input %s /> ' % html_params(**options))
- html.append(u'<label for="%s">%s</label></li>' % (field_id, label))
+ html.append(u'<label for="%s">%s</label></li>' % (choice_id, label))
html.append(u'</ul>')
return u''.join(html)