We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5be59e commit eeb15abCopy full SHA for eeb15ab
netbox/extras/dashboard/widgets.py
@@ -35,7 +35,8 @@ def get_content_type_labels():
35
return [
36
(content_type_identifier(ct), content_type_name(ct))
37
for ct in ContentType.objects.filter(
38
- FeatureQuery('export_templates').get_query() | Q(app_label='extras', model='objectchange')
+ FeatureQuery('export_templates').get_query() | Q(app_label='extras', model='objectchange') |
39
+ Q(app_label='extras', model='configcontext')
40
).order_by('app_label', 'model')
41
]
42
0 commit comments