X-Git-Url: https://git.0d.be/?p=django-panik-combo.git;a=blobdiff_plain;f=panikombo%2Fforms.py;h=8cb67c53d02aa3ab4036b6678dcaee6793a400f1;hp=6e499e01de32848b813c825199d632479042f51c;hb=a53294a17b610fa38589d1ebe223ddad42d07f11;hpb=e46d55da78c87c9ae4160ff7c5291a30e60d1436 diff --git a/panikombo/forms.py b/panikombo/forms.py index 6e499e0..8cb67c5 100644 --- a/panikombo/forms.py +++ b/panikombo/forms.py @@ -53,14 +53,14 @@ class EpisodeCellForm(forms.ModelForm): class EpisodeAutoSelectionCellForm(forms.ModelForm): class Meta: model = EpisodeAutoSelectionCell - fields = ('title', 'tags', 'category', 'period') + fields = ('title', 'tags', 'and_tags', 'category', 'period') widgets = {'tags': TagWidget()} class NewsItemAutoSelectionCellForm(forms.ModelForm): class Meta: model = NewsItemAutoSelectionCell - fields = ('title', 'tags', 'category', 'future') + fields = ('title', 'tags', 'and_tags', 'category', 'future') widgets = {'tags': TagWidget()}