|
|
@@ -62,7 +62,7 @@ class CustomLinkFilterForm(FilterForm):
|
|
|
]
|
|
|
content_type = ContentTypeChoiceField(
|
|
|
queryset=ContentType.objects.all(),
|
|
|
- limit_choices_to=FeatureQuery('custom_fields'),
|
|
|
+ limit_choices_to=FeatureQuery('custom_links'),
|
|
|
required=False
|
|
|
)
|
|
|
weight = forms.IntegerField(
|
|
|
@@ -83,7 +83,7 @@ class ExportTemplateFilterForm(FilterForm):
|
|
|
]
|
|
|
content_type = ContentTypeChoiceField(
|
|
|
queryset=ContentType.objects.all(),
|
|
|
- limit_choices_to=FeatureQuery('custom_fields'),
|
|
|
+ limit_choices_to=FeatureQuery('export_templates'),
|
|
|
required=False
|
|
|
)
|
|
|
mime_type = forms.CharField(
|
|
|
@@ -109,7 +109,7 @@ class WebhookFilterForm(FilterForm):
|
|
|
]
|
|
|
content_types = ContentTypeMultipleChoiceField(
|
|
|
queryset=ContentType.objects.all(),
|
|
|
- limit_choices_to=FeatureQuery('custom_fields'),
|
|
|
+ limit_choices_to=FeatureQuery('webhooks'),
|
|
|
required=False
|
|
|
)
|
|
|
http_method = forms.MultipleChoiceField(
|