File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,12 @@ class SignalSetFilter(django_filters.FilterSet):
5454 temporal_granularity = django_filters .MultipleChoiceFilter (
5555 field_name = "temporal_granularity" ,
5656 choices = [
57+ ("Annually" , "Annually" ),
58+ ("Monthly" , "Monthly" ),
5759 ("Daily" , "Daily" ),
5860 ("Weekly" , "Weekly" ),
5961 ("Hourly" , "Hourly" ),
62+ ("None" , "None" )
6063 ],
6164 lookup_expr = "icontains" ,
6265 )
Original file line number Diff line number Diff line change @@ -47,9 +47,12 @@ class SignalSetFilterForm(forms.ModelForm):
4747
4848 temporal_granularity = forms .ChoiceField (
4949 choices = [
50+ ("Annually" , "Annually" ),
51+ ("Monthly" , "Monthly" ),
5052 ("Daily" , "Daily" ),
5153 ("Weekly" , "Weekly" ),
5254 ("Hourly" , "Hourly" ),
55+ ("None" , "None" )
5356 ],
5457 widget = forms .CheckboxSelectMultiple (),
5558 )
You can’t perform that action at this time.
0 commit comments