|
@@ -27,7 +27,6 @@ from netbox.ui.panels import (
|
|
|
NestedGroupObjectPanel,
|
|
NestedGroupObjectPanel,
|
|
|
ObjectsTablePanel,
|
|
ObjectsTablePanel,
|
|
|
OrganizationalObjectPanel,
|
|
OrganizationalObjectPanel,
|
|
|
- Panel,
|
|
|
|
|
RelatedObjectsPanel,
|
|
RelatedObjectsPanel,
|
|
|
TemplatePanel,
|
|
TemplatePanel,
|
|
|
)
|
|
)
|
|
@@ -1764,7 +1763,7 @@ class ModuleTypeView(GetRelatedModelsMixin, generic.ObjectView):
|
|
|
CommentsPanel(),
|
|
CommentsPanel(),
|
|
|
],
|
|
],
|
|
|
right_panels=[
|
|
right_panels=[
|
|
|
- Panel(
|
|
|
|
|
|
|
+ TemplatePanel(
|
|
|
title=_('Attributes'),
|
|
title=_('Attributes'),
|
|
|
template_name='dcim/panels/module_type_attributes.html',
|
|
template_name='dcim/panels/module_type_attributes.html',
|
|
|
),
|
|
),
|
|
@@ -2934,7 +2933,7 @@ class ModuleView(GetRelatedModelsMixin, generic.ObjectView):
|
|
|
CommentsPanel(),
|
|
CommentsPanel(),
|
|
|
],
|
|
],
|
|
|
right_panels=[
|
|
right_panels=[
|
|
|
- Panel(
|
|
|
|
|
|
|
+ TemplatePanel(
|
|
|
title=_('Module Type'),
|
|
title=_('Module Type'),
|
|
|
template_name='dcim/panels/module_type.html',
|
|
template_name='dcim/panels/module_type.html',
|
|
|
),
|
|
),
|
|
@@ -3740,7 +3739,7 @@ class ModuleBayView(generic.ObjectView):
|
|
|
],
|
|
],
|
|
|
right_panels=[
|
|
right_panels=[
|
|
|
CustomFieldsPanel(),
|
|
CustomFieldsPanel(),
|
|
|
- Panel(
|
|
|
|
|
|
|
+ TemplatePanel(
|
|
|
title=_('Installed Module'),
|
|
title=_('Installed Module'),
|
|
|
template_name='dcim/panels/installed_module.html',
|
|
template_name='dcim/panels/installed_module.html',
|
|
|
),
|
|
),
|
|
@@ -3815,7 +3814,7 @@ class DeviceBayView(generic.ObjectView):
|
|
|
TagsPanel(),
|
|
TagsPanel(),
|
|
|
],
|
|
],
|
|
|
right_panels=[
|
|
right_panels=[
|
|
|
- Panel(
|
|
|
|
|
|
|
+ TemplatePanel(
|
|
|
title=_('Installed Device'),
|
|
title=_('Installed Device'),
|
|
|
template_name='dcim/panels/installed_device.html',
|
|
template_name='dcim/panels/installed_device.html',
|
|
|
),
|
|
),
|
|
@@ -4310,11 +4309,11 @@ class CableView(generic.ObjectView):
|
|
|
CommentsPanel(),
|
|
CommentsPanel(),
|
|
|
],
|
|
],
|
|
|
right_panels=[
|
|
right_panels=[
|
|
|
- Panel(
|
|
|
|
|
|
|
+ TemplatePanel(
|
|
|
title=_('Termination A'),
|
|
title=_('Termination A'),
|
|
|
template_name='dcim/panels/cable_termination_a.html',
|
|
template_name='dcim/panels/cable_termination_a.html',
|
|
|
),
|
|
),
|
|
|
- Panel(
|
|
|
|
|
|
|
+ TemplatePanel(
|
|
|
title=_('Termination B'),
|
|
title=_('Termination B'),
|
|
|
template_name='dcim/panels/cable_termination_b.html',
|
|
template_name='dcim/panels/cable_termination_b.html',
|
|
|
),
|
|
),
|