nautobot 2.2.9__py3-none-any.whl → 2.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/forms.py +4 -0
- nautobot/apps/models.py +10 -1
- nautobot/circuits/__init__.py +0 -1
- nautobot/circuits/apps.py +1 -0
- nautobot/circuits/factory.py +15 -3
- nautobot/circuits/filters.py +13 -0
- nautobot/circuits/forms.py +13 -0
- nautobot/circuits/migrations/0021_alter_circuit_status_alter_circuittermination__path.py +32 -0
- nautobot/circuits/migrations/0022_circuittermination_cloud_network.py +25 -0
- nautobot/circuits/models.py +16 -3
- nautobot/circuits/tables.py +16 -2
- nautobot/circuits/templates/circuits/circuittermination_create.html +10 -2
- nautobot/circuits/templates/circuits/circuittermination_retrieve.html +6 -0
- nautobot/circuits/templates/circuits/inc/circuit_termination.html +6 -1
- nautobot/circuits/tests/test_api.py +7 -5
- nautobot/circuits/tests/test_filters.py +12 -5
- nautobot/circuits/tests/test_models.py +33 -2
- nautobot/circuits/views.py +2 -3
- nautobot/cloud/__init__.py +0 -0
- nautobot/cloud/api/__init__.py +0 -0
- nautobot/cloud/api/serializers.py +54 -0
- nautobot/cloud/api/urls.py +16 -0
- nautobot/cloud/api/views.py +48 -0
- nautobot/cloud/apps.py +13 -0
- nautobot/cloud/factory.py +113 -0
- nautobot/cloud/filters.py +187 -0
- nautobot/cloud/forms.py +339 -0
- nautobot/cloud/homepage.py +43 -0
- nautobot/cloud/migrations/0001_initial.py +304 -0
- nautobot/cloud/migrations/__init__.py +0 -0
- nautobot/cloud/models.py +246 -0
- nautobot/cloud/navigation.py +85 -0
- nautobot/cloud/tables.py +157 -0
- nautobot/cloud/templates/cloud/cloudaccount_retrieve.html +43 -0
- nautobot/cloud/templates/cloud/cloudnetwork_retrieve.html +122 -0
- nautobot/cloud/templates/cloud/cloudnetwork_update.html +33 -0
- nautobot/cloud/templates/cloud/cloudresourcetype_retrieve.html +111 -0
- nautobot/cloud/templates/cloud/cloudservice_retrieve.html +69 -0
- nautobot/cloud/templates/cloud/cloudservice_update.html +25 -0
- nautobot/cloud/tests/__init__.py +0 -0
- nautobot/cloud/tests/test_api.py +248 -0
- nautobot/cloud/tests/test_filters.py +125 -0
- nautobot/cloud/tests/test_models.py +43 -0
- nautobot/cloud/tests/test_views.py +153 -0
- nautobot/cloud/urls.py +14 -0
- nautobot/cloud/views.py +181 -0
- nautobot/core/__init__.py +0 -3
- nautobot/core/api/metadata.py +1 -0
- nautobot/core/api/parsers.py +7 -1
- nautobot/core/api/urls.py +1 -0
- nautobot/core/api/utils.py +1 -0
- nautobot/core/api/views.py +4 -0
- nautobot/core/apps/__init__.py +6 -3
- nautobot/core/constants.py +8 -0
- nautobot/core/factory.py +32 -1
- nautobot/core/filters.py +95 -13
- nautobot/core/forms/fields.py +10 -4
- nautobot/core/forms/forms.py +11 -3
- nautobot/core/forms/widgets.py +18 -1
- nautobot/core/graphql/schema.py +26 -4
- nautobot/core/jobs/__init__.py +16 -2
- nautobot/core/jobs/cleanup.py +100 -0
- nautobot/core/jobs/groups.py +38 -0
- nautobot/core/management/commands/generate_test_data.py +116 -3
- nautobot/core/models/__init__.py +34 -9
- nautobot/core/models/generics.py +19 -3
- nautobot/core/models/name_color_content_types.py +7 -28
- nautobot/core/models/querysets.py +4 -3
- nautobot/core/models/tree_queries.py +1 -1
- nautobot/core/models/utils.py +21 -5
- nautobot/core/settings.py +2 -17
- nautobot/core/settings.yaml +34 -13
- nautobot/core/settings_funcs.py +103 -0
- nautobot/core/tables.py +130 -56
- nautobot/core/templates/admin/search_form.html +1 -1
- nautobot/core/templates/buttons/add.html +11 -3
- nautobot/core/templates/buttons/consolidated_bulk_action_buttons.html +13 -0
- nautobot/core/templates/buttons/consolidated_detail_view_action_buttons.html +13 -0
- nautobot/core/templates/buttons/export.html +101 -53
- nautobot/core/templates/buttons/job_import.html +11 -3
- nautobot/core/templates/generic/object_bulk_destroy.html +3 -1
- nautobot/core/templates/generic/object_bulk_update.html +3 -1
- nautobot/core/templates/generic/object_changelog.html +0 -9
- nautobot/core/templates/generic/object_list.html +156 -17
- nautobot/core/templates/generic/object_retrieve.html +80 -16
- nautobot/core/templates/inc/extras_features_edit_form_fields.html +8 -0
- nautobot/core/templates/inc/javascript.html +2 -0
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/inc/nav_menu.html +1 -0
- nautobot/core/templates/inc/paginator.html +7 -7
- nautobot/core/templates/inc/search_panel.html +2 -2
- nautobot/core/templates/inc/table.html +2 -2
- nautobot/core/templates/nautobot_config.py.j2 +13 -8
- nautobot/core/templates/utilities/templatetags/dynamic_group_assignment_modal.html +37 -0
- nautobot/core/templates/utilities/templatetags/filter_form_modal.html +2 -2
- nautobot/core/templates/utilities/templatetags/saved_view_modal.html +38 -0
- nautobot/core/templates/utilities/theme_preview.html +25 -8
- nautobot/core/templates/utilities/worker_status.html +152 -0
- nautobot/core/templatetags/buttons.py +335 -38
- nautobot/core/templatetags/form_helpers.py +1 -1
- nautobot/core/templatetags/helpers.py +181 -11
- nautobot/core/testing/api.py +5 -4
- nautobot/core/testing/filters.py +63 -14
- nautobot/core/testing/mixins.py +46 -0
- nautobot/core/testing/models.py +22 -0
- nautobot/core/testing/schema.py +4 -8
- nautobot/core/testing/views.py +31 -14
- nautobot/core/tests/integration/test_import_objects_ui.py +1 -0
- nautobot/core/tests/integration/test_swagger.py +1 -1
- nautobot/core/tests/nautobot_config.py +0 -1
- nautobot/core/tests/runner.py +2 -2
- nautobot/core/tests/test_api.py +1 -0
- nautobot/core/tests/test_authentication.py +7 -2
- nautobot/core/tests/test_filters.py +11 -9
- nautobot/core/tests/test_forms.py +9 -0
- nautobot/core/tests/test_graphql.py +27 -16
- nautobot/core/tests/test_jobs.py +122 -0
- nautobot/core/tests/test_tables.py +3 -1
- nautobot/core/tests/test_templatetags_helpers.py +12 -5
- nautobot/core/tests/test_utils.py +31 -20
- nautobot/core/tests/test_views.py +6 -6
- nautobot/core/urls.py +8 -3
- nautobot/core/utils/deprecation.py +29 -0
- nautobot/core/utils/filtering.py +12 -9
- nautobot/core/utils/lookup.py +37 -2
- nautobot/core/utils/requests.py +4 -1
- nautobot/core/views/__init__.py +137 -24
- nautobot/core/views/generic.py +119 -67
- nautobot/core/views/mixins.py +105 -36
- nautobot/core/views/paginator.py +9 -3
- nautobot/core/views/renderers.py +121 -56
- nautobot/core/views/utils.py +81 -1
- nautobot/dcim/__init__.py +0 -1
- nautobot/dcim/api/serializers.py +180 -44
- nautobot/dcim/api/urls.py +7 -3
- nautobot/dcim/api/views.py +53 -7
- nautobot/dcim/apps.py +3 -0
- nautobot/dcim/choices.py +25 -0
- nautobot/dcim/constants.py +7 -0
- nautobot/dcim/factory.py +252 -18
- nautobot/dcim/filters/__init__.py +373 -193
- nautobot/dcim/filters/mixins.py +274 -1
- nautobot/dcim/forms.py +834 -121
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/homepage.py +1 -1
- nautobot/dcim/migrations/0059_add_role_field_to_interface_models.py +27 -0
- nautobot/dcim/migrations/0060_alter_cable_status_alter_consoleport__path_and_more.py +303 -0
- nautobot/dcim/migrations/0061_module_models.py +862 -0
- nautobot/dcim/migrations/0062_module_data_migration.py +25 -0
- nautobot/dcim/models/__init__.py +8 -0
- nautobot/dcim/models/cables.py +15 -0
- nautobot/dcim/models/device_component_templates.py +207 -53
- nautobot/dcim/models/device_components.py +275 -99
- nautobot/dcim/models/devices.py +468 -13
- nautobot/dcim/models/racks.py +0 -1
- nautobot/dcim/navigation.py +47 -0
- nautobot/dcim/signals.py +3 -3
- nautobot/dcim/tables/__init__.py +35 -23
- nautobot/dcim/tables/devices.py +229 -43
- nautobot/dcim/tables/devicetypes.py +65 -9
- nautobot/dcim/tables/racks.py +5 -1
- nautobot/dcim/tables/template_code.py +46 -26
- nautobot/dcim/templates/dcim/cable_connect.html +76 -3
- nautobot/dcim/templates/dcim/console_port_connection_list.html +7 -5
- nautobot/dcim/templates/dcim/device/base.html +14 -6
- nautobot/dcim/templates/dcim/device/consoleports.html +2 -3
- nautobot/dcim/templates/dcim/device/consoleserverports.html +2 -3
- nautobot/dcim/templates/dcim/device/devicebays.html +6 -7
- nautobot/dcim/templates/dcim/device/frontports.html +2 -3
- nautobot/dcim/templates/dcim/device/interfaces.html +2 -3
- nautobot/dcim/templates/dcim/device/inventory.html +2 -3
- nautobot/dcim/templates/dcim/device/modulebays.html +49 -0
- nautobot/dcim/templates/dcim/device/poweroutlets.html +2 -3
- nautobot/dcim/templates/dcim/device/powerports.html +2 -3
- nautobot/dcim/templates/dcim/device/rearports.html +2 -3
- nautobot/dcim/templates/dcim/device.html +45 -1
- nautobot/dcim/templates/dcim/device_component.html +13 -5
- nautobot/dcim/templates/dcim/device_list.html +2 -1
- nautobot/dcim/templates/dcim/devicetype.html +99 -98
- nautobot/dcim/templates/dcim/devicetype_list.html +8 -16
- nautobot/dcim/templates/dcim/inc/devicetype_component_table.html +1 -1
- nautobot/dcim/templates/dcim/inc/moduletype_component_table.html +39 -0
- nautobot/dcim/templates/dcim/interface.html +17 -2
- nautobot/dcim/templates/dcim/interface_connection_list.html +7 -5
- nautobot/dcim/templates/dcim/interface_edit.html +1 -0
- nautobot/dcim/templates/dcim/manufacturer.html +24 -0
- nautobot/dcim/templates/dcim/module/base.html +97 -0
- nautobot/dcim/templates/dcim/module_bulk_destroy.html +5 -0
- nautobot/dcim/templates/dcim/module_consoleports.html +53 -0
- nautobot/dcim/templates/dcim/module_consoleserverports.html +53 -0
- nautobot/dcim/templates/dcim/module_destroy.html +5 -0
- nautobot/dcim/templates/dcim/module_frontports.html +53 -0
- nautobot/dcim/templates/dcim/module_interfaces.html +57 -0
- nautobot/dcim/templates/dcim/module_list.html +20 -0
- nautobot/dcim/templates/dcim/module_modulebays.html +49 -0
- nautobot/dcim/templates/dcim/module_poweroutlets.html +53 -0
- nautobot/dcim/templates/dcim/module_powerports.html +53 -0
- nautobot/dcim/templates/dcim/module_rearports.html +53 -0
- nautobot/dcim/templates/dcim/module_retrieve.html +63 -0
- nautobot/dcim/templates/dcim/module_update.html +71 -0
- nautobot/dcim/templates/dcim/modulebay_bulk_destroy.html +5 -0
- nautobot/dcim/templates/dcim/modulebay_destroy.html +8 -0
- nautobot/dcim/templates/dcim/modulebay_retrieve.html +101 -0
- nautobot/dcim/templates/dcim/moduletype_list.html +11 -0
- nautobot/dcim/templates/dcim/moduletype_retrieve.html +159 -0
- nautobot/dcim/templates/dcim/power_port_connection_list.html +7 -5
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +65 -19
- nautobot/dcim/tests/integration/test_cable_connect_form.py +4 -4
- nautobot/dcim/tests/test_api.py +693 -208
- nautobot/dcim/tests/test_filters.py +843 -217
- nautobot/dcim/tests/test_models.py +1072 -8
- nautobot/dcim/tests/test_views.py +1510 -341
- nautobot/dcim/urls.py +17 -2
- nautobot/dcim/utils.py +2 -3
- nautobot/dcim/views.py +1106 -116
- nautobot/extras/__init__.py +0 -1
- nautobot/extras/api/serializers.py +115 -3
- nautobot/extras/api/urls.py +12 -0
- nautobot/extras/api/views.py +66 -0
- nautobot/extras/apps.py +2 -2
- nautobot/extras/choices.py +43 -0
- nautobot/extras/context_managers.py +13 -8
- nautobot/extras/datasources/git.py +2 -0
- nautobot/extras/factory.py +460 -9
- nautobot/extras/filters/__init__.py +174 -3
- nautobot/extras/filters/mixins.py +46 -43
- nautobot/extras/forms/base.py +24 -5
- nautobot/extras/forms/forms.py +227 -8
- nautobot/extras/forms/mixins.py +93 -0
- nautobot/extras/graphql/types.py +23 -10
- nautobot/extras/homepage.py +14 -1
- nautobot/extras/management/__init__.py +1 -0
- nautobot/extras/management/commands/refresh_dynamic_group_member_caches.py +1 -16
- nautobot/extras/migrations/0021_customfield_changelog_data.py +1 -0
- nautobot/extras/migrations/0109_dynamicgroup_group_type_dynamicgroup_tags_and_more.py +108 -0
- nautobot/extras/migrations/0110_alter_configcontext_cluster_groups_and_more.py +111 -0
- nautobot/extras/migrations/0111_metadata.py +162 -0
- nautobot/extras/migrations/0112_dynamic_group_group_type_data_migration.py +28 -0
- nautobot/extras/migrations/0113_saved_views.py +77 -0
- nautobot/extras/models/__init__.py +15 -1
- nautobot/extras/models/change_logging.py +3 -3
- nautobot/extras/models/contacts.py +4 -0
- nautobot/extras/models/customfields.py +18 -3
- nautobot/extras/models/groups.py +389 -225
- nautobot/extras/models/jobs.py +6 -3
- nautobot/extras/models/metadata.py +441 -0
- nautobot/extras/models/mixins.py +72 -62
- nautobot/extras/models/models.py +118 -9
- nautobot/extras/models/relationships.py +9 -2
- nautobot/extras/models/tags.py +13 -2
- nautobot/extras/navigation.py +57 -0
- nautobot/extras/plugins/__init__.py +3 -1
- nautobot/extras/querysets.py +30 -66
- nautobot/extras/signals.py +95 -100
- nautobot/extras/tables.py +165 -12
- nautobot/extras/templates/extras/dynamicgroup.html +44 -15
- nautobot/extras/templates/extras/dynamicgroup_edit.html +2 -0
- nautobot/extras/templates/extras/job.html +1 -1
- nautobot/extras/templates/extras/jobresult.html +61 -74
- nautobot/extras/templates/extras/metadatatype_create.html +89 -0
- nautobot/extras/templates/extras/metadatatype_retrieve.html +67 -0
- nautobot/extras/templates/extras/object_dynamicgroups.html +7 -0
- nautobot/extras/templates/extras/objectchange_list.html +0 -12
- nautobot/extras/templates/extras/plugins_list.html +1 -3
- nautobot/extras/templates/extras/role_retrieve.html +48 -0
- nautobot/extras/templates/extras/staticgroupassociation_retrieve.html +20 -0
- nautobot/extras/tests/integration/test_customfields.py +1 -0
- nautobot/extras/tests/test_api.py +509 -23
- nautobot/extras/tests/test_changelog.py +20 -9
- nautobot/extras/tests/test_context_managers.py +22 -15
- nautobot/extras/tests/test_datasources.py +13 -1
- nautobot/extras/tests/test_dynamicgroups.py +201 -171
- nautobot/extras/tests/test_filters.py +211 -12
- nautobot/extras/tests/test_jobs.py +6 -6
- nautobot/extras/tests/test_models.py +501 -4
- nautobot/extras/tests/test_relationships.py +1 -0
- nautobot/extras/tests/test_views.py +565 -8
- nautobot/extras/tests/test_webhooks.py +1 -1
- nautobot/extras/urls.py +5 -0
- nautobot/extras/utils.py +51 -11
- nautobot/extras/views.py +542 -76
- nautobot/ipam/__init__.py +0 -1
- nautobot/ipam/apps.py +1 -0
- nautobot/ipam/factory.py +17 -19
- nautobot/ipam/filters.py +13 -0
- nautobot/ipam/forms.py +8 -4
- nautobot/ipam/graphql/types.py +2 -2
- nautobot/ipam/migrations/0047_alter_ipaddress_role_alter_ipaddress_status_and_more.py +59 -0
- nautobot/ipam/models.py +11 -8
- nautobot/ipam/querysets.py +1 -1
- nautobot/ipam/signals.py +4 -2
- nautobot/ipam/tables.py +5 -0
- nautobot/ipam/templates/ipam/ipaddress_interfaces.html +1 -1
- nautobot/ipam/templates/ipam/ipaddress_vm_interfaces.html +1 -1
- nautobot/ipam/templates/ipam/prefix.html +1 -0
- nautobot/ipam/tests/test_api.py +37 -18
- nautobot/ipam/tests/test_filters.py +26 -2
- nautobot/ipam/tests/test_models.py +6 -0
- nautobot/ipam/tests/test_querysets.py +1 -1
- nautobot/ipam/tests/test_views.py +3 -2
- nautobot/ipam/urls.py +2 -2
- nautobot/ipam/views.py +18 -26
- nautobot/project-static/css/base.css +20 -0
- nautobot/project-static/css/dark.css +11 -0
- nautobot/project-static/docs/404.html +892 -88
- nautobot/project-static/docs/apps/index.html +892 -88
- nautobot/project-static/docs/apps/nautobot-apps.html +892 -88
- nautobot/project-static/docs/assets/_mkdocstrings.css +5 -0
- nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +919 -120
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +904 -101
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1618 -903
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +935 -144
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +977 -188
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +901 -99
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +897 -93
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +991 -193
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +974 -131
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +1078 -272
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +1242 -334
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1727 -875
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +1164 -381
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2088 -1374
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +2246 -1422
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +912 -111
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +963 -163
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +1010 -223
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +1913 -1277
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +1846 -1102
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +904 -101
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +2331 -1699
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1802 -1024
- nautobot/project-static/docs/development/apps/api/configuration-view.html +892 -88
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +892 -88
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +892 -88
- nautobot/project-static/docs/development/apps/api/models/global-search.html +892 -88
- nautobot/project-static/docs/development/apps/api/models/graphql.html +892 -88
- nautobot/project-static/docs/development/apps/api/models/index.html +942 -90
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +892 -88
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +892 -88
- nautobot/project-static/docs/development/apps/api/prometheus.html +892 -88
- nautobot/project-static/docs/development/apps/api/setup.html +892 -88
- nautobot/project-static/docs/development/apps/api/testing.html +892 -88
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +892 -88
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +892 -88
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +892 -88
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +892 -88
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/base-template.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/index.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/notes.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +892 -88
- nautobot/project-static/docs/development/apps/api/views/urls.html +892 -88
- nautobot/project-static/docs/development/apps/index.html +892 -88
- nautobot/project-static/docs/development/apps/migration/code-updates.html +892 -88
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +892 -88
- nautobot/project-static/docs/development/apps/migration/from-v1.html +892 -88
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +892 -88
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +892 -88
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +892 -88
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +892 -88
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +892 -88
- nautobot/project-static/docs/development/core/application-registry.html +892 -88
- nautobot/project-static/docs/development/core/best-practices.html +893 -88
- nautobot/project-static/docs/development/core/bootstrap-ui.html +892 -88
- nautobot/project-static/docs/development/core/caching.html +892 -88
- nautobot/project-static/docs/development/core/controllers.html +892 -88
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +892 -88
- nautobot/project-static/docs/development/core/generic-views.html +892 -88
- nautobot/project-static/docs/development/core/getting-started.html +892 -88
- nautobot/project-static/docs/development/core/homepage.html +892 -88
- nautobot/project-static/docs/development/core/index.html +892 -88
- nautobot/project-static/docs/development/core/model-checklist.html +901 -89
- nautobot/project-static/docs/development/core/model-features.html +892 -88
- nautobot/project-static/docs/development/core/natural-keys.html +892 -88
- nautobot/project-static/docs/development/core/navigation-menu.html +892 -88
- nautobot/project-static/docs/development/core/release-checklist.html +895 -91
- nautobot/project-static/docs/development/core/role-internals.html +892 -88
- nautobot/project-static/docs/development/core/settings.html +892 -88
- nautobot/project-static/docs/development/core/style-guide.html +893 -89
- nautobot/project-static/docs/development/core/templates.html +904 -89
- nautobot/project-static/docs/development/core/testing.html +892 -88
- nautobot/project-static/docs/development/core/user-preferences.html +892 -88
- nautobot/project-static/docs/development/index.html +892 -88
- nautobot/project-static/docs/development/jobs/index.html +893 -89
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +892 -88
- nautobot/project-static/docs/index.html +892 -88
- nautobot/project-static/docs/media/models/cloud_aws_direct_connect_dark.png +0 -0
- nautobot/project-static/docs/media/models/cloud_aws_direct_connect_light.png +0 -0
- nautobot/project-static/docs/models/cloud/cloudaccount.html +15 -0
- nautobot/project-static/docs/models/cloud/cloudnetwork.html +15 -0
- nautobot/project-static/docs/models/cloud/cloudnetworkprefixassignment.html +15 -0
- nautobot/project-static/docs/models/cloud/cloudresourcetype.html +15 -0
- nautobot/project-static/docs/models/cloud/cloudservice.html +15 -0
- nautobot/project-static/docs/models/cloud/cloudservicenetworkassignment.html +15 -0
- nautobot/project-static/docs/models/dcim/module.html +15 -0
- nautobot/project-static/docs/models/dcim/modulebay.html +15 -0
- nautobot/project-static/docs/models/dcim/modulebaytemplate.html +15 -0
- nautobot/project-static/docs/models/dcim/moduletype.html +15 -0
- nautobot/project-static/docs/models/extras/metadatachoice.html +15 -0
- nautobot/project-static/docs/models/extras/metadatatype.html +15 -0
- nautobot/project-static/docs/models/extras/objectmetadata.html +15 -0
- nautobot/project-static/docs/models/extras/role.html +15 -0
- nautobot/project-static/docs/models/extras/savedview.html +15 -0
- nautobot/project-static/docs/models/extras/staticgroupassociation.html +15 -0
- nautobot/project-static/docs/models/extras/status.html +15 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +900 -89
- nautobot/project-static/docs/overview/design_philosophy.html +892 -88
- nautobot/project-static/docs/release-notes/index.html +1129 -92
- nautobot/project-static/docs/release-notes/version-1.0.html +892 -88
- nautobot/project-static/docs/release-notes/version-1.1.html +892 -88
- nautobot/project-static/docs/release-notes/version-1.2.html +892 -88
- nautobot/project-static/docs/release-notes/version-1.3.html +892 -88
- nautobot/project-static/docs/release-notes/version-1.4.html +892 -88
- nautobot/project-static/docs/release-notes/version-1.5.html +893 -89
- nautobot/project-static/docs/release-notes/version-1.6.html +893 -89
- nautobot/project-static/docs/release-notes/version-2.0.html +892 -88
- nautobot/project-static/docs/release-notes/version-2.1.html +892 -88
- nautobot/project-static/docs/release-notes/version-2.2.html +895 -91
- nautobot/project-static/docs/release-notes/version-2.3.html +9954 -0
- nautobot/project-static/docs/requirements.txt +5 -5
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +331 -256
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +892 -88
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +892 -88
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +892 -88
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +892 -88
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +992 -174
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +892 -88
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +892 -88
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +892 -88
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +896 -88
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +892 -88
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +892 -88
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +892 -88
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +892 -88
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +892 -88
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +892 -88
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +892 -88
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +892 -88
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +944 -153
- nautobot/project-static/docs/user-guide/administration/installation/index.html +901 -93
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +934 -122
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +954 -157
- nautobot/project-static/docs/user-guide/administration/installation/services.html +913 -112
- nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +908 -99
- nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +892 -88
- nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +892 -88
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +892 -88
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +892 -88
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +893 -89
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +892 -88
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +893 -89
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +896 -88
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +895 -91
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +8984 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +8828 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +8829 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +8828 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +8829 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +8833 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +8828 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +923 -105
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +923 -105
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +918 -100
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +923 -105
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +913 -105
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +920 -116
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +921 -117
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +918 -114
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +914 -105
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +926 -108
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +936 -118
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +928 -106
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +937 -119
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +928 -110
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +918 -114
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +921 -117
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +923 -115
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +8828 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +8846 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +8843 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +8823 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +916 -112
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +940 -83
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +924 -106
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +943 -86
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +921 -103
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +929 -125
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +918 -114
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +922 -104
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +924 -106
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +906 -102
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +936 -88
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +897 -89
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +897 -89
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +901 -96
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +892 -88
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +897 -89
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/clear-view-button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/cleared-view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/config-table-columns-to-locations.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/configure-button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/create-saved-view-success.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/current-saved-view-drop-down-menu.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/default-location-list-view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/dropdown-button-after-new-saved-view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/filter-application-to-locations.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/filter-button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/global-default-location-list-view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/location-list-view-with-saved-views.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/navigation-menu.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/save-as-new-view-drop-down.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/save-view-modal.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-buttons.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-success.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-view-unchecked.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-different-user.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-modal-unchecked.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/set-as-my-default-button.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/set-as-my-default-success.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/unsaved-saved-view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/updated-saved-view.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +892 -88
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +892 -88
- nautobot/project-static/docs/user-guide/index.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +1258 -785
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +895 -91
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +896 -88
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +895 -91
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +9061 -0
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +895 -91
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +895 -91
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +9137 -0
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +895 -91
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +8933 -0
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +950 -121
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +892 -88
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +892 -88
- nautobot/project-static/js/forms.js +71 -0
- nautobot/project-static/js/table_sorting_indicator.js +46 -0
- nautobot/project-static/js/tableconfig.js +6 -1
- nautobot/project-static/materialdesignicons-7.4.47/css/materialdesignicons.min.css +3 -0
- nautobot/project-static/{materialdesignicons-6.5.95 → materialdesignicons-7.4.47}/fonts/materialdesignicons-webfont.eot +0 -0
- nautobot/project-static/{materialdesignicons-6.5.95 → materialdesignicons-7.4.47}/fonts/materialdesignicons-webfont.ttf +0 -0
- nautobot/project-static/materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.woff +0 -0
- nautobot/project-static/materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.woff2 +0 -0
- nautobot/tenancy/__init__.py +0 -1
- nautobot/tenancy/apps.py +1 -0
- nautobot/tenancy/factory.py +3 -2
- nautobot/tenancy/filters/__init__.py +1 -0
- nautobot/tenancy/forms.py +1 -1
- nautobot/tenancy/templates/tenancy/tenant.html +24 -20
- nautobot/tenancy/views.py +11 -10
- nautobot/users/__init__.py +0 -1
- nautobot/users/api/serializers.py +1 -1
- nautobot/users/api/views.py +4 -2
- nautobot/users/apps.py +3 -2
- nautobot/users/factory.py +3 -3
- nautobot/users/migrations/0010_user_default_saved_views.py +20 -0
- nautobot/users/models.py +12 -0
- nautobot/users/tests/test_filters.py +6 -3
- nautobot/users/urls.py +8 -0
- nautobot/virtualization/__init__.py +0 -1
- nautobot/virtualization/apps.py +1 -0
- nautobot/virtualization/filters.py +6 -1
- nautobot/virtualization/forms.py +11 -3
- nautobot/virtualization/graphql/types.py +2 -2
- nautobot/virtualization/migrations/0029_add_role_field_to_interface_models.py +27 -0
- nautobot/virtualization/migrations/0030_alter_virtualmachine_local_config_context_data_owner_content_type_and_more.py +67 -0
- nautobot/virtualization/models.py +0 -2
- nautobot/virtualization/tables.py +10 -3
- nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -1
- nautobot/virtualization/templates/virtualization/vminterface.html +7 -1
- nautobot/virtualization/templates/virtualization/vminterface_edit.html +1 -0
- nautobot/virtualization/tests/test_api.py +9 -4
- nautobot/virtualization/tests/test_filters.py +22 -0
- nautobot/virtualization/tests/test_models.py +7 -3
- nautobot/virtualization/tests/test_views.py +19 -3
- nautobot/virtualization/urls.py +2 -2
- nautobot/virtualization/views.py +10 -32
- {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/METADATA +20 -18
- {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/RECORD +677 -557
- nautobot/project-static/docs/assets/stylesheets/main.76a95c52.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.76a95c52.min.css.map +0 -1
- nautobot/project-static/materialdesignicons-6.5.95/.github/ISSUE_TEMPLATE.md +0 -3
- nautobot/project-static/materialdesignicons-6.5.95/README.md +0 -25
- nautobot/project-static/materialdesignicons-6.5.95/css/materialdesignicons.css +0 -26654
- nautobot/project-static/materialdesignicons-6.5.95/css/materialdesignicons.css.map +0 -16
- nautobot/project-static/materialdesignicons-6.5.95/css/materialdesignicons.min.css +0 -3
- nautobot/project-static/materialdesignicons-6.5.95/css/materialdesignicons.min.css.map +0 -16
- nautobot/project-static/materialdesignicons-6.5.95/fonts/materialdesignicons-webfont.woff +0 -0
- nautobot/project-static/materialdesignicons-6.5.95/fonts/materialdesignicons-webfont.woff2 +0 -0
- nautobot/project-static/materialdesignicons-6.5.95/package.json +0 -28
- nautobot/project-static/materialdesignicons-6.5.95/preview.html +0 -717
- nautobot/project-static/materialdesignicons-6.5.95/scss/_animated.scss +0 -27
- nautobot/project-static/materialdesignicons-6.5.95/scss/_core.scss +0 -10
- nautobot/project-static/materialdesignicons-6.5.95/scss/_extras.scss +0 -65
- nautobot/project-static/materialdesignicons-6.5.95/scss/_functions.scss +0 -20
- nautobot/project-static/materialdesignicons-6.5.95/scss/_icons.scss +0 -10
- nautobot/project-static/materialdesignicons-6.5.95/scss/_path.scss +0 -10
- nautobot/project-static/materialdesignicons-6.5.95/scss/_variables.scss +0 -6606
- nautobot/project-static/materialdesignicons-6.5.95/scss/materialdesignicons.scss +0 -8
- /nautobot/project-static/{materialdesignicons-6.5.95 → materialdesignicons-7.4.47}/LICENSE +0 -0
- {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/NOTICE +0 -0
- {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/WHEEL +0 -0
- {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.31">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../../assets/stylesheets/main.3cba04c6.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
41
|
+
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0h-32zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1z"/></svg>');}</style>
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
218
218
|
<div class="md-source__icon md-icon">
|
|
219
219
|
|
|
220
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
220
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
|
|
221
221
|
</div>
|
|
222
222
|
<div class="md-source__repository">
|
|
223
223
|
GitHub
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
378
378
|
<div class="md-source__icon md-icon">
|
|
379
379
|
|
|
380
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
380
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
|
|
381
381
|
</div>
|
|
382
382
|
<div class="md-source__repository">
|
|
383
383
|
GitHub
|
|
@@ -2484,21 +2484,29 @@
|
|
|
2484
2484
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2485
2485
|
|
|
2486
2486
|
|
|
2487
|
-
|
|
2488
|
-
|
|
2487
|
+
|
|
2488
|
+
<div class="md-nav__link md-nav__container">
|
|
2489
|
+
<a href="../../../user-guide/core-data-model/cloud/cloud.html" class="md-nav__link ">
|
|
2490
|
+
|
|
2489
2491
|
|
|
2490
2492
|
<span class="md-ellipsis">
|
|
2491
|
-
|
|
2493
|
+
Cloud
|
|
2492
2494
|
</span>
|
|
2493
2495
|
|
|
2494
2496
|
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
+
</a>
|
|
2498
|
+
|
|
2499
|
+
|
|
2500
|
+
<label class="md-nav__link " for="__nav_2_3_3" id="__nav_2_3_3_label" tabindex="0">
|
|
2501
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2502
|
+
</label>
|
|
2503
|
+
|
|
2504
|
+
</div>
|
|
2497
2505
|
|
|
2498
2506
|
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_3_label" aria-expanded="false">
|
|
2499
2507
|
<label class="md-nav__title" for="__nav_2_3_3">
|
|
2500
2508
|
<span class="md-nav__icon md-icon"></span>
|
|
2501
|
-
|
|
2509
|
+
Cloud
|
|
2502
2510
|
</label>
|
|
2503
2511
|
<ul class="md-nav__list" data-md-scrollfix>
|
|
2504
2512
|
|
|
@@ -2509,11 +2517,11 @@
|
|
|
2509
2517
|
|
|
2510
2518
|
|
|
2511
2519
|
<li class="md-nav__item">
|
|
2512
|
-
<a href="../../../user-guide/core-data-model/
|
|
2520
|
+
<a href="../../../user-guide/core-data-model/cloud/cloudaccount.html" class="md-nav__link">
|
|
2513
2521
|
|
|
2514
2522
|
|
|
2515
2523
|
<span class="md-ellipsis">
|
|
2516
|
-
|
|
2524
|
+
Cloud Account
|
|
2517
2525
|
</span>
|
|
2518
2526
|
|
|
2519
2527
|
|
|
@@ -2530,11 +2538,11 @@
|
|
|
2530
2538
|
|
|
2531
2539
|
|
|
2532
2540
|
<li class="md-nav__item">
|
|
2533
|
-
<a href="../../../user-guide/core-data-model/
|
|
2541
|
+
<a href="../../../user-guide/core-data-model/cloud/cloudnetwork.html" class="md-nav__link">
|
|
2534
2542
|
|
|
2535
2543
|
|
|
2536
2544
|
<span class="md-ellipsis">
|
|
2537
|
-
|
|
2545
|
+
Cloud Network
|
|
2538
2546
|
</span>
|
|
2539
2547
|
|
|
2540
2548
|
|
|
@@ -2551,11 +2559,11 @@
|
|
|
2551
2559
|
|
|
2552
2560
|
|
|
2553
2561
|
<li class="md-nav__item">
|
|
2554
|
-
<a href="../../../user-guide/core-data-model/
|
|
2562
|
+
<a href="../../../user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html" class="md-nav__link">
|
|
2555
2563
|
|
|
2556
2564
|
|
|
2557
2565
|
<span class="md-ellipsis">
|
|
2558
|
-
|
|
2566
|
+
Cloud Network Prefix Assignment
|
|
2559
2567
|
</span>
|
|
2560
2568
|
|
|
2561
2569
|
|
|
@@ -2572,11 +2580,11 @@
|
|
|
2572
2580
|
|
|
2573
2581
|
|
|
2574
2582
|
<li class="md-nav__item">
|
|
2575
|
-
<a href="../../../user-guide/core-data-model/
|
|
2583
|
+
<a href="../../../user-guide/core-data-model/cloud/cloudresourcetype.html" class="md-nav__link">
|
|
2576
2584
|
|
|
2577
2585
|
|
|
2578
2586
|
<span class="md-ellipsis">
|
|
2579
|
-
|
|
2587
|
+
Cloud Resource Type
|
|
2580
2588
|
</span>
|
|
2581
2589
|
|
|
2582
2590
|
|
|
@@ -2593,11 +2601,11 @@
|
|
|
2593
2601
|
|
|
2594
2602
|
|
|
2595
2603
|
<li class="md-nav__item">
|
|
2596
|
-
<a href="../../../user-guide/core-data-model/
|
|
2604
|
+
<a href="../../../user-guide/core-data-model/cloud/cloudservice.html" class="md-nav__link">
|
|
2597
2605
|
|
|
2598
2606
|
|
|
2599
2607
|
<span class="md-ellipsis">
|
|
2600
|
-
|
|
2608
|
+
Cloud Service
|
|
2601
2609
|
</span>
|
|
2602
2610
|
|
|
2603
2611
|
|
|
@@ -2614,11 +2622,11 @@
|
|
|
2614
2622
|
|
|
2615
2623
|
|
|
2616
2624
|
<li class="md-nav__item">
|
|
2617
|
-
<a href="../../../user-guide/core-data-model/
|
|
2625
|
+
<a href="../../../user-guide/core-data-model/cloud/cloudservicenetworkassignment.html" class="md-nav__link">
|
|
2618
2626
|
|
|
2619
2627
|
|
|
2620
2628
|
<span class="md-ellipsis">
|
|
2621
|
-
|
|
2629
|
+
Cloud Service Network Assignment
|
|
2622
2630
|
</span>
|
|
2623
2631
|
|
|
2624
2632
|
|
|
@@ -2628,22 +2636,9 @@
|
|
|
2628
2636
|
|
|
2629
2637
|
|
|
2630
2638
|
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
<li class="md-nav__item">
|
|
2638
|
-
<a href="../../../user-guide/core-data-model/dcim/platform.html" class="md-nav__link">
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
<span class="md-ellipsis">
|
|
2642
|
-
Platform
|
|
2643
|
-
</span>
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
</a>
|
|
2639
|
+
</ul>
|
|
2640
|
+
</nav>
|
|
2641
|
+
|
|
2647
2642
|
</li>
|
|
2648
2643
|
|
|
2649
2644
|
|
|
@@ -2666,32 +2661,24 @@
|
|
|
2666
2661
|
|
|
2667
2662
|
|
|
2668
2663
|
|
|
2669
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
2664
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
2670
2665
|
|
|
2671
2666
|
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
<a href="../../../user-guide/core-data-model/dcim/devicetype.html" class="md-nav__link ">
|
|
2675
|
-
|
|
2667
|
+
<label class="md-nav__link" for="__nav_2_3_4" id="__nav_2_3_4_label" tabindex="0">
|
|
2668
|
+
|
|
2676
2669
|
|
|
2677
2670
|
<span class="md-ellipsis">
|
|
2678
|
-
|
|
2671
|
+
DCIM
|
|
2679
2672
|
</span>
|
|
2680
2673
|
|
|
2681
2674
|
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
<label class="md-nav__link " for="__nav_2_3_3_8" id="__nav_2_3_3_8_label" tabindex="0">
|
|
2686
|
-
<span class="md-nav__icon md-icon"></span>
|
|
2687
|
-
</label>
|
|
2688
|
-
|
|
2689
|
-
</div>
|
|
2675
|
+
<span class="md-nav__icon md-icon"></span>
|
|
2676
|
+
</label>
|
|
2690
2677
|
|
|
2691
|
-
<nav class="md-nav" data-md-level="
|
|
2692
|
-
<label class="md-nav__title" for="
|
|
2678
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_4_label" aria-expanded="false">
|
|
2679
|
+
<label class="md-nav__title" for="__nav_2_3_4">
|
|
2693
2680
|
<span class="md-nav__icon md-icon"></span>
|
|
2694
|
-
|
|
2681
|
+
DCIM
|
|
2695
2682
|
</label>
|
|
2696
2683
|
<ul class="md-nav__list" data-md-scrollfix>
|
|
2697
2684
|
|
|
@@ -2702,32 +2689,11 @@
|
|
|
2702
2689
|
|
|
2703
2690
|
|
|
2704
2691
|
<li class="md-nav__item">
|
|
2705
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
<span class="md-ellipsis">
|
|
2709
|
-
Console Port Template
|
|
2710
|
-
</span>
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
</a>
|
|
2714
|
-
</li>
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
<li class="md-nav__item">
|
|
2726
|
-
<a href="../../../user-guide/core-data-model/dcim/consoleserverporttemplate.html" class="md-nav__link">
|
|
2692
|
+
<a href="../../../user-guide/core-data-model/dcim/locationtype.html" class="md-nav__link">
|
|
2727
2693
|
|
|
2728
2694
|
|
|
2729
2695
|
<span class="md-ellipsis">
|
|
2730
|
-
|
|
2696
|
+
Location Type
|
|
2731
2697
|
</span>
|
|
2732
2698
|
|
|
2733
2699
|
|
|
@@ -2744,11 +2710,11 @@
|
|
|
2744
2710
|
|
|
2745
2711
|
|
|
2746
2712
|
<li class="md-nav__item">
|
|
2747
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2713
|
+
<a href="../../../user-guide/core-data-model/dcim/location.html" class="md-nav__link">
|
|
2748
2714
|
|
|
2749
2715
|
|
|
2750
2716
|
<span class="md-ellipsis">
|
|
2751
|
-
|
|
2717
|
+
Location
|
|
2752
2718
|
</span>
|
|
2753
2719
|
|
|
2754
2720
|
|
|
@@ -2765,11 +2731,11 @@
|
|
|
2765
2731
|
|
|
2766
2732
|
|
|
2767
2733
|
<li class="md-nav__item">
|
|
2768
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2734
|
+
<a href="../../../user-guide/core-data-model/dcim/rackgroup.html" class="md-nav__link">
|
|
2769
2735
|
|
|
2770
2736
|
|
|
2771
2737
|
<span class="md-ellipsis">
|
|
2772
|
-
|
|
2738
|
+
Rack Group
|
|
2773
2739
|
</span>
|
|
2774
2740
|
|
|
2775
2741
|
|
|
@@ -2786,11 +2752,11 @@
|
|
|
2786
2752
|
|
|
2787
2753
|
|
|
2788
2754
|
<li class="md-nav__item">
|
|
2789
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2755
|
+
<a href="../../../user-guide/core-data-model/dcim/rack.html" class="md-nav__link">
|
|
2790
2756
|
|
|
2791
2757
|
|
|
2792
2758
|
<span class="md-ellipsis">
|
|
2793
|
-
|
|
2759
|
+
Rack
|
|
2794
2760
|
</span>
|
|
2795
2761
|
|
|
2796
2762
|
|
|
@@ -2807,11 +2773,11 @@
|
|
|
2807
2773
|
|
|
2808
2774
|
|
|
2809
2775
|
<li class="md-nav__item">
|
|
2810
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2776
|
+
<a href="../../../user-guide/core-data-model/dcim/manufacturer.html" class="md-nav__link">
|
|
2811
2777
|
|
|
2812
2778
|
|
|
2813
2779
|
<span class="md-ellipsis">
|
|
2814
|
-
|
|
2780
|
+
Manufacturer
|
|
2815
2781
|
</span>
|
|
2816
2782
|
|
|
2817
2783
|
|
|
@@ -2828,11 +2794,11 @@
|
|
|
2828
2794
|
|
|
2829
2795
|
|
|
2830
2796
|
<li class="md-nav__item">
|
|
2831
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2797
|
+
<a href="../../../user-guide/core-data-model/dcim/devicefamily.html" class="md-nav__link">
|
|
2832
2798
|
|
|
2833
2799
|
|
|
2834
2800
|
<span class="md-ellipsis">
|
|
2835
|
-
|
|
2801
|
+
Device Family
|
|
2836
2802
|
</span>
|
|
2837
2803
|
|
|
2838
2804
|
|
|
@@ -2849,11 +2815,11 @@
|
|
|
2849
2815
|
|
|
2850
2816
|
|
|
2851
2817
|
<li class="md-nav__item">
|
|
2852
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2818
|
+
<a href="../../../user-guide/core-data-model/dcim/platform.html" class="md-nav__link">
|
|
2853
2819
|
|
|
2854
2820
|
|
|
2855
2821
|
<span class="md-ellipsis">
|
|
2856
|
-
|
|
2822
|
+
Platform
|
|
2857
2823
|
</span>
|
|
2858
2824
|
|
|
2859
2825
|
|
|
@@ -2863,14 +2829,6 @@
|
|
|
2863
2829
|
|
|
2864
2830
|
|
|
2865
2831
|
|
|
2866
|
-
</ul>
|
|
2867
|
-
</nav>
|
|
2868
|
-
|
|
2869
|
-
</li>
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
2832
|
|
|
2875
2833
|
|
|
2876
2834
|
|
|
@@ -2888,32 +2846,32 @@
|
|
|
2888
2846
|
|
|
2889
2847
|
|
|
2890
2848
|
|
|
2891
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
2849
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4_8" >
|
|
2892
2850
|
|
|
2893
2851
|
|
|
2894
2852
|
|
|
2895
2853
|
<div class="md-nav__link md-nav__container">
|
|
2896
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2854
|
+
<a href="../../../user-guide/core-data-model/dcim/devicetype.html" class="md-nav__link ">
|
|
2897
2855
|
|
|
2898
2856
|
|
|
2899
2857
|
<span class="md-ellipsis">
|
|
2900
|
-
Device
|
|
2858
|
+
Device Type
|
|
2901
2859
|
</span>
|
|
2902
2860
|
|
|
2903
2861
|
|
|
2904
2862
|
</a>
|
|
2905
2863
|
|
|
2906
2864
|
|
|
2907
|
-
<label class="md-nav__link " for="
|
|
2865
|
+
<label class="md-nav__link " for="__nav_2_3_4_8" id="__nav_2_3_4_8_label" tabindex="0">
|
|
2908
2866
|
<span class="md-nav__icon md-icon"></span>
|
|
2909
2867
|
</label>
|
|
2910
2868
|
|
|
2911
2869
|
</div>
|
|
2912
2870
|
|
|
2913
|
-
<nav class="md-nav" data-md-level="4" aria-labelledby="
|
|
2914
|
-
<label class="md-nav__title" for="
|
|
2871
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_4_8_label" aria-expanded="false">
|
|
2872
|
+
<label class="md-nav__title" for="__nav_2_3_4_8">
|
|
2915
2873
|
<span class="md-nav__icon md-icon"></span>
|
|
2916
|
-
Device
|
|
2874
|
+
Device Type
|
|
2917
2875
|
</label>
|
|
2918
2876
|
<ul class="md-nav__list" data-md-scrollfix>
|
|
2919
2877
|
|
|
@@ -2924,11 +2882,11 @@
|
|
|
2924
2882
|
|
|
2925
2883
|
|
|
2926
2884
|
<li class="md-nav__item">
|
|
2927
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2885
|
+
<a href="../../../user-guide/core-data-model/dcim/consoleporttemplate.html" class="md-nav__link">
|
|
2928
2886
|
|
|
2929
2887
|
|
|
2930
2888
|
<span class="md-ellipsis">
|
|
2931
|
-
Console Port
|
|
2889
|
+
Console Port Template
|
|
2932
2890
|
</span>
|
|
2933
2891
|
|
|
2934
2892
|
|
|
@@ -2945,11 +2903,11 @@
|
|
|
2945
2903
|
|
|
2946
2904
|
|
|
2947
2905
|
<li class="md-nav__item">
|
|
2948
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2906
|
+
<a href="../../../user-guide/core-data-model/dcim/consoleserverporttemplate.html" class="md-nav__link">
|
|
2949
2907
|
|
|
2950
2908
|
|
|
2951
2909
|
<span class="md-ellipsis">
|
|
2952
|
-
Console Server Port
|
|
2910
|
+
Console Server Port Template
|
|
2953
2911
|
</span>
|
|
2954
2912
|
|
|
2955
2913
|
|
|
@@ -2966,11 +2924,11 @@
|
|
|
2966
2924
|
|
|
2967
2925
|
|
|
2968
2926
|
<li class="md-nav__item">
|
|
2969
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2927
|
+
<a href="../../../user-guide/core-data-model/dcim/devicebaytemplate.html" class="md-nav__link">
|
|
2970
2928
|
|
|
2971
2929
|
|
|
2972
2930
|
<span class="md-ellipsis">
|
|
2973
|
-
Device Bay
|
|
2931
|
+
Device Bay Template
|
|
2974
2932
|
</span>
|
|
2975
2933
|
|
|
2976
2934
|
|
|
@@ -2987,11 +2945,11 @@
|
|
|
2987
2945
|
|
|
2988
2946
|
|
|
2989
2947
|
<li class="md-nav__item">
|
|
2990
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2948
|
+
<a href="../../../user-guide/core-data-model/dcim/frontporttemplate.html" class="md-nav__link">
|
|
2991
2949
|
|
|
2992
2950
|
|
|
2993
2951
|
<span class="md-ellipsis">
|
|
2994
|
-
Front Port
|
|
2952
|
+
Front Port Template
|
|
2995
2953
|
</span>
|
|
2996
2954
|
|
|
2997
2955
|
|
|
@@ -3008,11 +2966,11 @@
|
|
|
3008
2966
|
|
|
3009
2967
|
|
|
3010
2968
|
<li class="md-nav__item">
|
|
3011
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2969
|
+
<a href="../../../user-guide/core-data-model/dcim/interfacetemplate.html" class="md-nav__link">
|
|
3012
2970
|
|
|
3013
2971
|
|
|
3014
2972
|
<span class="md-ellipsis">
|
|
3015
|
-
Interface
|
|
2973
|
+
Interface Template
|
|
3016
2974
|
</span>
|
|
3017
2975
|
|
|
3018
2976
|
|
|
@@ -3029,11 +2987,11 @@
|
|
|
3029
2987
|
|
|
3030
2988
|
|
|
3031
2989
|
<li class="md-nav__item">
|
|
3032
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
2990
|
+
<a href="../../../user-guide/core-data-model/dcim/modulebaytemplate.html" class="md-nav__link">
|
|
3033
2991
|
|
|
3034
2992
|
|
|
3035
2993
|
<span class="md-ellipsis">
|
|
3036
|
-
|
|
2994
|
+
Module Bay Template
|
|
3037
2995
|
</span>
|
|
3038
2996
|
|
|
3039
2997
|
|
|
@@ -3050,11 +3008,11 @@
|
|
|
3050
3008
|
|
|
3051
3009
|
|
|
3052
3010
|
<li class="md-nav__item">
|
|
3053
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3011
|
+
<a href="../../../user-guide/core-data-model/dcim/poweroutlettemplate.html" class="md-nav__link">
|
|
3054
3012
|
|
|
3055
3013
|
|
|
3056
3014
|
<span class="md-ellipsis">
|
|
3057
|
-
Power
|
|
3015
|
+
Power Outlet Template
|
|
3058
3016
|
</span>
|
|
3059
3017
|
|
|
3060
3018
|
|
|
@@ -3071,11 +3029,11 @@
|
|
|
3071
3029
|
|
|
3072
3030
|
|
|
3073
3031
|
<li class="md-nav__item">
|
|
3074
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3032
|
+
<a href="../../../user-guide/core-data-model/dcim/powerporttemplate.html" class="md-nav__link">
|
|
3075
3033
|
|
|
3076
3034
|
|
|
3077
3035
|
<span class="md-ellipsis">
|
|
3078
|
-
Power
|
|
3036
|
+
Power Port Template
|
|
3079
3037
|
</span>
|
|
3080
3038
|
|
|
3081
3039
|
|
|
@@ -3092,11 +3050,11 @@
|
|
|
3092
3050
|
|
|
3093
3051
|
|
|
3094
3052
|
<li class="md-nav__item">
|
|
3095
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3053
|
+
<a href="../../../user-guide/core-data-model/dcim/rearporttemplate.html" class="md-nav__link">
|
|
3096
3054
|
|
|
3097
3055
|
|
|
3098
3056
|
<span class="md-ellipsis">
|
|
3099
|
-
Rear Port
|
|
3057
|
+
Rear Port Template
|
|
3100
3058
|
</span>
|
|
3101
3059
|
|
|
3102
3060
|
|
|
@@ -3120,20 +3078,45 @@
|
|
|
3120
3078
|
|
|
3121
3079
|
|
|
3122
3080
|
|
|
3123
|
-
|
|
3124
|
-
|
|
3081
|
+
|
|
3082
|
+
|
|
3083
|
+
|
|
3084
|
+
|
|
3085
|
+
|
|
3086
|
+
|
|
3087
|
+
|
|
3088
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3089
|
+
|
|
3125
3090
|
|
|
3091
|
+
|
|
3092
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4_9" >
|
|
3093
|
+
|
|
3094
|
+
|
|
3095
|
+
|
|
3096
|
+
<div class="md-nav__link md-nav__container">
|
|
3097
|
+
<a href="../../../user-guide/core-data-model/dcim/device.html" class="md-nav__link ">
|
|
3098
|
+
|
|
3126
3099
|
|
|
3127
3100
|
<span class="md-ellipsis">
|
|
3128
|
-
|
|
3101
|
+
Device
|
|
3129
3102
|
</span>
|
|
3130
3103
|
|
|
3131
3104
|
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3105
|
+
</a>
|
|
3106
|
+
|
|
3136
3107
|
|
|
3108
|
+
<label class="md-nav__link " for="__nav_2_3_4_9" id="__nav_2_3_4_9_label" tabindex="0">
|
|
3109
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3110
|
+
</label>
|
|
3111
|
+
|
|
3112
|
+
</div>
|
|
3113
|
+
|
|
3114
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_4_9_label" aria-expanded="false">
|
|
3115
|
+
<label class="md-nav__title" for="__nav_2_3_4_9">
|
|
3116
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3117
|
+
Device
|
|
3118
|
+
</label>
|
|
3119
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3137
3120
|
|
|
3138
3121
|
|
|
3139
3122
|
|
|
@@ -3142,11 +3125,11 @@
|
|
|
3142
3125
|
|
|
3143
3126
|
|
|
3144
3127
|
<li class="md-nav__item">
|
|
3145
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3128
|
+
<a href="../../../user-guide/core-data-model/dcim/consoleport.html" class="md-nav__link">
|
|
3146
3129
|
|
|
3147
3130
|
|
|
3148
3131
|
<span class="md-ellipsis">
|
|
3149
|
-
|
|
3132
|
+
Console Port
|
|
3150
3133
|
</span>
|
|
3151
3134
|
|
|
3152
3135
|
|
|
@@ -3163,11 +3146,11 @@
|
|
|
3163
3146
|
|
|
3164
3147
|
|
|
3165
3148
|
<li class="md-nav__item">
|
|
3166
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3149
|
+
<a href="../../../user-guide/core-data-model/dcim/consoleserverport.html" class="md-nav__link">
|
|
3167
3150
|
|
|
3168
3151
|
|
|
3169
3152
|
<span class="md-ellipsis">
|
|
3170
|
-
|
|
3153
|
+
Console Server Port
|
|
3171
3154
|
</span>
|
|
3172
3155
|
|
|
3173
3156
|
|
|
@@ -3184,11 +3167,11 @@
|
|
|
3184
3167
|
|
|
3185
3168
|
|
|
3186
3169
|
<li class="md-nav__item">
|
|
3187
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3170
|
+
<a href="../../../user-guide/core-data-model/dcim/devicebay.html" class="md-nav__link">
|
|
3188
3171
|
|
|
3189
3172
|
|
|
3190
3173
|
<span class="md-ellipsis">
|
|
3191
|
-
|
|
3174
|
+
Device Bay
|
|
3192
3175
|
</span>
|
|
3193
3176
|
|
|
3194
3177
|
|
|
@@ -3205,11 +3188,11 @@
|
|
|
3205
3188
|
|
|
3206
3189
|
|
|
3207
3190
|
<li class="md-nav__item">
|
|
3208
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3191
|
+
<a href="../../../user-guide/core-data-model/dcim/frontport.html" class="md-nav__link">
|
|
3209
3192
|
|
|
3210
3193
|
|
|
3211
3194
|
<span class="md-ellipsis">
|
|
3212
|
-
|
|
3195
|
+
Front Port
|
|
3213
3196
|
</span>
|
|
3214
3197
|
|
|
3215
3198
|
|
|
@@ -3226,11 +3209,11 @@
|
|
|
3226
3209
|
|
|
3227
3210
|
|
|
3228
3211
|
<li class="md-nav__item">
|
|
3229
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3212
|
+
<a href="../../../user-guide/core-data-model/dcim/interface.html" class="md-nav__link">
|
|
3230
3213
|
|
|
3231
3214
|
|
|
3232
3215
|
<span class="md-ellipsis">
|
|
3233
|
-
|
|
3216
|
+
Interface
|
|
3234
3217
|
</span>
|
|
3235
3218
|
|
|
3236
3219
|
|
|
@@ -3247,11 +3230,11 @@
|
|
|
3247
3230
|
|
|
3248
3231
|
|
|
3249
3232
|
<li class="md-nav__item">
|
|
3250
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3233
|
+
<a href="../../../user-guide/core-data-model/dcim/inventoryitem.html" class="md-nav__link">
|
|
3251
3234
|
|
|
3252
3235
|
|
|
3253
3236
|
<span class="md-ellipsis">
|
|
3254
|
-
|
|
3237
|
+
Inventory Item
|
|
3255
3238
|
</span>
|
|
3256
3239
|
|
|
3257
3240
|
|
|
@@ -3268,11 +3251,11 @@
|
|
|
3268
3251
|
|
|
3269
3252
|
|
|
3270
3253
|
<li class="md-nav__item">
|
|
3271
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3254
|
+
<a href="../../../user-guide/core-data-model/dcim/modulebay.html" class="md-nav__link">
|
|
3272
3255
|
|
|
3273
3256
|
|
|
3274
3257
|
<span class="md-ellipsis">
|
|
3275
|
-
|
|
3258
|
+
Module Bay
|
|
3276
3259
|
</span>
|
|
3277
3260
|
|
|
3278
3261
|
|
|
@@ -3289,11 +3272,11 @@
|
|
|
3289
3272
|
|
|
3290
3273
|
|
|
3291
3274
|
<li class="md-nav__item">
|
|
3292
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3275
|
+
<a href="../../../user-guide/core-data-model/dcim/powerport.html" class="md-nav__link">
|
|
3293
3276
|
|
|
3294
3277
|
|
|
3295
3278
|
<span class="md-ellipsis">
|
|
3296
|
-
|
|
3279
|
+
Power Port
|
|
3297
3280
|
</span>
|
|
3298
3281
|
|
|
3299
3282
|
|
|
@@ -3310,11 +3293,11 @@
|
|
|
3310
3293
|
|
|
3311
3294
|
|
|
3312
3295
|
<li class="md-nav__item">
|
|
3313
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3296
|
+
<a href="../../../user-guide/core-data-model/dcim/poweroutlet.html" class="md-nav__link">
|
|
3314
3297
|
|
|
3315
3298
|
|
|
3316
3299
|
<span class="md-ellipsis">
|
|
3317
|
-
|
|
3300
|
+
Power Outlet
|
|
3318
3301
|
</span>
|
|
3319
3302
|
|
|
3320
3303
|
|
|
@@ -3331,11 +3314,11 @@
|
|
|
3331
3314
|
|
|
3332
3315
|
|
|
3333
3316
|
<li class="md-nav__item">
|
|
3334
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3317
|
+
<a href="../../../user-guide/core-data-model/dcim/rearport.html" class="md-nav__link">
|
|
3335
3318
|
|
|
3336
3319
|
|
|
3337
3320
|
<span class="md-ellipsis">
|
|
3338
|
-
|
|
3321
|
+
Rear Port
|
|
3339
3322
|
</span>
|
|
3340
3323
|
|
|
3341
3324
|
|
|
@@ -3370,29 +3353,733 @@
|
|
|
3370
3353
|
|
|
3371
3354
|
|
|
3372
3355
|
|
|
3373
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
3356
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4_10" >
|
|
3374
3357
|
|
|
3375
3358
|
|
|
3376
|
-
|
|
3377
|
-
|
|
3359
|
+
|
|
3360
|
+
<div class="md-nav__link md-nav__container">
|
|
3361
|
+
<a href="../../../user-guide/core-data-model/dcim/moduletype.html" class="md-nav__link ">
|
|
3362
|
+
|
|
3378
3363
|
|
|
3379
3364
|
<span class="md-ellipsis">
|
|
3380
|
-
|
|
3365
|
+
Module Type
|
|
3381
3366
|
</span>
|
|
3382
3367
|
|
|
3383
3368
|
|
|
3384
|
-
|
|
3385
|
-
</label>
|
|
3386
|
-
|
|
3387
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_4_label" aria-expanded="false">
|
|
3388
|
-
<label class="md-nav__title" for="__nav_2_3_4">
|
|
3389
|
-
<span class="md-nav__icon md-icon"></span>
|
|
3390
|
-
Extras
|
|
3391
|
-
</label>
|
|
3392
|
-
<ul class="md-nav__list" data-md-scrollfix>
|
|
3369
|
+
</a>
|
|
3393
3370
|
|
|
3394
3371
|
|
|
3395
|
-
|
|
3372
|
+
<label class="md-nav__link " for="__nav_2_3_4_10" id="__nav_2_3_4_10_label" tabindex="0">
|
|
3373
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3374
|
+
</label>
|
|
3375
|
+
|
|
3376
|
+
</div>
|
|
3377
|
+
|
|
3378
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_4_10_label" aria-expanded="false">
|
|
3379
|
+
<label class="md-nav__title" for="__nav_2_3_4_10">
|
|
3380
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3381
|
+
Module Type
|
|
3382
|
+
</label>
|
|
3383
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3384
|
+
|
|
3385
|
+
|
|
3386
|
+
|
|
3387
|
+
|
|
3388
|
+
|
|
3389
|
+
|
|
3390
|
+
|
|
3391
|
+
<li class="md-nav__item">
|
|
3392
|
+
<a href="../../../user-guide/core-data-model/dcim/consoleporttemplate.html" class="md-nav__link">
|
|
3393
|
+
|
|
3394
|
+
|
|
3395
|
+
<span class="md-ellipsis">
|
|
3396
|
+
Console Port Template
|
|
3397
|
+
</span>
|
|
3398
|
+
|
|
3399
|
+
|
|
3400
|
+
</a>
|
|
3401
|
+
</li>
|
|
3402
|
+
|
|
3403
|
+
|
|
3404
|
+
|
|
3405
|
+
|
|
3406
|
+
|
|
3407
|
+
|
|
3408
|
+
|
|
3409
|
+
|
|
3410
|
+
|
|
3411
|
+
|
|
3412
|
+
<li class="md-nav__item">
|
|
3413
|
+
<a href="../../../user-guide/core-data-model/dcim/consoleserverporttemplate.html" class="md-nav__link">
|
|
3414
|
+
|
|
3415
|
+
|
|
3416
|
+
<span class="md-ellipsis">
|
|
3417
|
+
Console Server Port Template
|
|
3418
|
+
</span>
|
|
3419
|
+
|
|
3420
|
+
|
|
3421
|
+
</a>
|
|
3422
|
+
</li>
|
|
3423
|
+
|
|
3424
|
+
|
|
3425
|
+
|
|
3426
|
+
|
|
3427
|
+
|
|
3428
|
+
|
|
3429
|
+
|
|
3430
|
+
|
|
3431
|
+
|
|
3432
|
+
|
|
3433
|
+
<li class="md-nav__item">
|
|
3434
|
+
<a href="../../../user-guide/core-data-model/dcim/frontporttemplate.html" class="md-nav__link">
|
|
3435
|
+
|
|
3436
|
+
|
|
3437
|
+
<span class="md-ellipsis">
|
|
3438
|
+
Front Port Template
|
|
3439
|
+
</span>
|
|
3440
|
+
|
|
3441
|
+
|
|
3442
|
+
</a>
|
|
3443
|
+
</li>
|
|
3444
|
+
|
|
3445
|
+
|
|
3446
|
+
|
|
3447
|
+
|
|
3448
|
+
|
|
3449
|
+
|
|
3450
|
+
|
|
3451
|
+
|
|
3452
|
+
|
|
3453
|
+
|
|
3454
|
+
<li class="md-nav__item">
|
|
3455
|
+
<a href="../../../user-guide/core-data-model/dcim/interfacetemplate.html" class="md-nav__link">
|
|
3456
|
+
|
|
3457
|
+
|
|
3458
|
+
<span class="md-ellipsis">
|
|
3459
|
+
Interface Template
|
|
3460
|
+
</span>
|
|
3461
|
+
|
|
3462
|
+
|
|
3463
|
+
</a>
|
|
3464
|
+
</li>
|
|
3465
|
+
|
|
3466
|
+
|
|
3467
|
+
|
|
3468
|
+
|
|
3469
|
+
|
|
3470
|
+
|
|
3471
|
+
|
|
3472
|
+
|
|
3473
|
+
|
|
3474
|
+
|
|
3475
|
+
<li class="md-nav__item">
|
|
3476
|
+
<a href="../../../user-guide/core-data-model/dcim/modulebaytemplate.html" class="md-nav__link">
|
|
3477
|
+
|
|
3478
|
+
|
|
3479
|
+
<span class="md-ellipsis">
|
|
3480
|
+
Module Bay Template
|
|
3481
|
+
</span>
|
|
3482
|
+
|
|
3483
|
+
|
|
3484
|
+
</a>
|
|
3485
|
+
</li>
|
|
3486
|
+
|
|
3487
|
+
|
|
3488
|
+
|
|
3489
|
+
|
|
3490
|
+
|
|
3491
|
+
|
|
3492
|
+
|
|
3493
|
+
|
|
3494
|
+
|
|
3495
|
+
|
|
3496
|
+
<li class="md-nav__item">
|
|
3497
|
+
<a href="../../../user-guide/core-data-model/dcim/poweroutlettemplate.html" class="md-nav__link">
|
|
3498
|
+
|
|
3499
|
+
|
|
3500
|
+
<span class="md-ellipsis">
|
|
3501
|
+
Power Outlet Template
|
|
3502
|
+
</span>
|
|
3503
|
+
|
|
3504
|
+
|
|
3505
|
+
</a>
|
|
3506
|
+
</li>
|
|
3507
|
+
|
|
3508
|
+
|
|
3509
|
+
|
|
3510
|
+
|
|
3511
|
+
|
|
3512
|
+
|
|
3513
|
+
|
|
3514
|
+
|
|
3515
|
+
|
|
3516
|
+
|
|
3517
|
+
<li class="md-nav__item">
|
|
3518
|
+
<a href="../../../user-guide/core-data-model/dcim/powerporttemplate.html" class="md-nav__link">
|
|
3519
|
+
|
|
3520
|
+
|
|
3521
|
+
<span class="md-ellipsis">
|
|
3522
|
+
Power Port Template
|
|
3523
|
+
</span>
|
|
3524
|
+
|
|
3525
|
+
|
|
3526
|
+
</a>
|
|
3527
|
+
</li>
|
|
3528
|
+
|
|
3529
|
+
|
|
3530
|
+
|
|
3531
|
+
|
|
3532
|
+
|
|
3533
|
+
|
|
3534
|
+
|
|
3535
|
+
|
|
3536
|
+
|
|
3537
|
+
|
|
3538
|
+
<li class="md-nav__item">
|
|
3539
|
+
<a href="../../../user-guide/core-data-model/dcim/rearporttemplate.html" class="md-nav__link">
|
|
3540
|
+
|
|
3541
|
+
|
|
3542
|
+
<span class="md-ellipsis">
|
|
3543
|
+
Rear Port Template
|
|
3544
|
+
</span>
|
|
3545
|
+
|
|
3546
|
+
|
|
3547
|
+
</a>
|
|
3548
|
+
</li>
|
|
3549
|
+
|
|
3550
|
+
|
|
3551
|
+
|
|
3552
|
+
|
|
3553
|
+
</ul>
|
|
3554
|
+
</nav>
|
|
3555
|
+
|
|
3556
|
+
</li>
|
|
3557
|
+
|
|
3558
|
+
|
|
3559
|
+
|
|
3560
|
+
|
|
3561
|
+
|
|
3562
|
+
|
|
3563
|
+
|
|
3564
|
+
|
|
3565
|
+
|
|
3566
|
+
|
|
3567
|
+
|
|
3568
|
+
|
|
3569
|
+
|
|
3570
|
+
|
|
3571
|
+
|
|
3572
|
+
|
|
3573
|
+
|
|
3574
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
3575
|
+
|
|
3576
|
+
|
|
3577
|
+
|
|
3578
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4_11" >
|
|
3579
|
+
|
|
3580
|
+
|
|
3581
|
+
|
|
3582
|
+
<div class="md-nav__link md-nav__container">
|
|
3583
|
+
<a href="../../../user-guide/core-data-model/dcim/module.html" class="md-nav__link ">
|
|
3584
|
+
|
|
3585
|
+
|
|
3586
|
+
<span class="md-ellipsis">
|
|
3587
|
+
Module
|
|
3588
|
+
</span>
|
|
3589
|
+
|
|
3590
|
+
|
|
3591
|
+
</a>
|
|
3592
|
+
|
|
3593
|
+
|
|
3594
|
+
<label class="md-nav__link " for="__nav_2_3_4_11" id="__nav_2_3_4_11_label" tabindex="0">
|
|
3595
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3596
|
+
</label>
|
|
3597
|
+
|
|
3598
|
+
</div>
|
|
3599
|
+
|
|
3600
|
+
<nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_4_11_label" aria-expanded="false">
|
|
3601
|
+
<label class="md-nav__title" for="__nav_2_3_4_11">
|
|
3602
|
+
<span class="md-nav__icon md-icon"></span>
|
|
3603
|
+
Module
|
|
3604
|
+
</label>
|
|
3605
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
3606
|
+
|
|
3607
|
+
|
|
3608
|
+
|
|
3609
|
+
|
|
3610
|
+
|
|
3611
|
+
|
|
3612
|
+
|
|
3613
|
+
<li class="md-nav__item">
|
|
3614
|
+
<a href="../../../user-guide/core-data-model/dcim/consoleport.html" class="md-nav__link">
|
|
3615
|
+
|
|
3616
|
+
|
|
3617
|
+
<span class="md-ellipsis">
|
|
3618
|
+
Console Port
|
|
3619
|
+
</span>
|
|
3620
|
+
|
|
3621
|
+
|
|
3622
|
+
</a>
|
|
3623
|
+
</li>
|
|
3624
|
+
|
|
3625
|
+
|
|
3626
|
+
|
|
3627
|
+
|
|
3628
|
+
|
|
3629
|
+
|
|
3630
|
+
|
|
3631
|
+
|
|
3632
|
+
|
|
3633
|
+
|
|
3634
|
+
<li class="md-nav__item">
|
|
3635
|
+
<a href="../../../user-guide/core-data-model/dcim/consoleserverport.html" class="md-nav__link">
|
|
3636
|
+
|
|
3637
|
+
|
|
3638
|
+
<span class="md-ellipsis">
|
|
3639
|
+
Console Server Port
|
|
3640
|
+
</span>
|
|
3641
|
+
|
|
3642
|
+
|
|
3643
|
+
</a>
|
|
3644
|
+
</li>
|
|
3645
|
+
|
|
3646
|
+
|
|
3647
|
+
|
|
3648
|
+
|
|
3649
|
+
|
|
3650
|
+
|
|
3651
|
+
|
|
3652
|
+
|
|
3653
|
+
|
|
3654
|
+
|
|
3655
|
+
<li class="md-nav__item">
|
|
3656
|
+
<a href="../../../user-guide/core-data-model/dcim/frontport.html" class="md-nav__link">
|
|
3657
|
+
|
|
3658
|
+
|
|
3659
|
+
<span class="md-ellipsis">
|
|
3660
|
+
Front Port
|
|
3661
|
+
</span>
|
|
3662
|
+
|
|
3663
|
+
|
|
3664
|
+
</a>
|
|
3665
|
+
</li>
|
|
3666
|
+
|
|
3667
|
+
|
|
3668
|
+
|
|
3669
|
+
|
|
3670
|
+
|
|
3671
|
+
|
|
3672
|
+
|
|
3673
|
+
|
|
3674
|
+
|
|
3675
|
+
|
|
3676
|
+
<li class="md-nav__item">
|
|
3677
|
+
<a href="../../../user-guide/core-data-model/dcim/interface.html" class="md-nav__link">
|
|
3678
|
+
|
|
3679
|
+
|
|
3680
|
+
<span class="md-ellipsis">
|
|
3681
|
+
Interface
|
|
3682
|
+
</span>
|
|
3683
|
+
|
|
3684
|
+
|
|
3685
|
+
</a>
|
|
3686
|
+
</li>
|
|
3687
|
+
|
|
3688
|
+
|
|
3689
|
+
|
|
3690
|
+
|
|
3691
|
+
|
|
3692
|
+
|
|
3693
|
+
|
|
3694
|
+
|
|
3695
|
+
|
|
3696
|
+
|
|
3697
|
+
<li class="md-nav__item">
|
|
3698
|
+
<a href="../../../user-guide/core-data-model/dcim/inventoryitem.html" class="md-nav__link">
|
|
3699
|
+
|
|
3700
|
+
|
|
3701
|
+
<span class="md-ellipsis">
|
|
3702
|
+
Inventory Item
|
|
3703
|
+
</span>
|
|
3704
|
+
|
|
3705
|
+
|
|
3706
|
+
</a>
|
|
3707
|
+
</li>
|
|
3708
|
+
|
|
3709
|
+
|
|
3710
|
+
|
|
3711
|
+
|
|
3712
|
+
|
|
3713
|
+
|
|
3714
|
+
|
|
3715
|
+
|
|
3716
|
+
|
|
3717
|
+
|
|
3718
|
+
<li class="md-nav__item">
|
|
3719
|
+
<a href="../../../user-guide/core-data-model/dcim/modulebay.html" class="md-nav__link">
|
|
3720
|
+
|
|
3721
|
+
|
|
3722
|
+
<span class="md-ellipsis">
|
|
3723
|
+
Module Bay
|
|
3724
|
+
</span>
|
|
3725
|
+
|
|
3726
|
+
|
|
3727
|
+
</a>
|
|
3728
|
+
</li>
|
|
3729
|
+
|
|
3730
|
+
|
|
3731
|
+
|
|
3732
|
+
|
|
3733
|
+
|
|
3734
|
+
|
|
3735
|
+
|
|
3736
|
+
|
|
3737
|
+
|
|
3738
|
+
|
|
3739
|
+
<li class="md-nav__item">
|
|
3740
|
+
<a href="../../../user-guide/core-data-model/dcim/powerport.html" class="md-nav__link">
|
|
3741
|
+
|
|
3742
|
+
|
|
3743
|
+
<span class="md-ellipsis">
|
|
3744
|
+
Power Port
|
|
3745
|
+
</span>
|
|
3746
|
+
|
|
3747
|
+
|
|
3748
|
+
</a>
|
|
3749
|
+
</li>
|
|
3750
|
+
|
|
3751
|
+
|
|
3752
|
+
|
|
3753
|
+
|
|
3754
|
+
|
|
3755
|
+
|
|
3756
|
+
|
|
3757
|
+
|
|
3758
|
+
|
|
3759
|
+
|
|
3760
|
+
<li class="md-nav__item">
|
|
3761
|
+
<a href="../../../user-guide/core-data-model/dcim/poweroutlet.html" class="md-nav__link">
|
|
3762
|
+
|
|
3763
|
+
|
|
3764
|
+
<span class="md-ellipsis">
|
|
3765
|
+
Power Outlet
|
|
3766
|
+
</span>
|
|
3767
|
+
|
|
3768
|
+
|
|
3769
|
+
</a>
|
|
3770
|
+
</li>
|
|
3771
|
+
|
|
3772
|
+
|
|
3773
|
+
|
|
3774
|
+
|
|
3775
|
+
|
|
3776
|
+
|
|
3777
|
+
|
|
3778
|
+
|
|
3779
|
+
|
|
3780
|
+
|
|
3781
|
+
<li class="md-nav__item">
|
|
3782
|
+
<a href="../../../user-guide/core-data-model/dcim/rearport.html" class="md-nav__link">
|
|
3783
|
+
|
|
3784
|
+
|
|
3785
|
+
<span class="md-ellipsis">
|
|
3786
|
+
Rear Port
|
|
3787
|
+
</span>
|
|
3788
|
+
|
|
3789
|
+
|
|
3790
|
+
</a>
|
|
3791
|
+
</li>
|
|
3792
|
+
|
|
3793
|
+
|
|
3794
|
+
|
|
3795
|
+
|
|
3796
|
+
</ul>
|
|
3797
|
+
</nav>
|
|
3798
|
+
|
|
3799
|
+
</li>
|
|
3800
|
+
|
|
3801
|
+
|
|
3802
|
+
|
|
3803
|
+
|
|
3804
|
+
|
|
3805
|
+
|
|
3806
|
+
|
|
3807
|
+
|
|
3808
|
+
|
|
3809
|
+
|
|
3810
|
+
<li class="md-nav__item">
|
|
3811
|
+
<a href="../../../user-guide/core-data-model/dcim/cable.html" class="md-nav__link">
|
|
3812
|
+
|
|
3813
|
+
|
|
3814
|
+
<span class="md-ellipsis">
|
|
3815
|
+
Cable
|
|
3816
|
+
</span>
|
|
3817
|
+
|
|
3818
|
+
|
|
3819
|
+
</a>
|
|
3820
|
+
</li>
|
|
3821
|
+
|
|
3822
|
+
|
|
3823
|
+
|
|
3824
|
+
|
|
3825
|
+
|
|
3826
|
+
|
|
3827
|
+
|
|
3828
|
+
|
|
3829
|
+
|
|
3830
|
+
|
|
3831
|
+
<li class="md-nav__item">
|
|
3832
|
+
<a href="../../../user-guide/core-data-model/dcim/deviceredundancygroup.html" class="md-nav__link">
|
|
3833
|
+
|
|
3834
|
+
|
|
3835
|
+
<span class="md-ellipsis">
|
|
3836
|
+
Device Redundancy Group
|
|
3837
|
+
</span>
|
|
3838
|
+
|
|
3839
|
+
|
|
3840
|
+
</a>
|
|
3841
|
+
</li>
|
|
3842
|
+
|
|
3843
|
+
|
|
3844
|
+
|
|
3845
|
+
|
|
3846
|
+
|
|
3847
|
+
|
|
3848
|
+
|
|
3849
|
+
|
|
3850
|
+
|
|
3851
|
+
|
|
3852
|
+
<li class="md-nav__item">
|
|
3853
|
+
<a href="../../../user-guide/core-data-model/dcim/interfaceredundancygroup.html" class="md-nav__link">
|
|
3854
|
+
|
|
3855
|
+
|
|
3856
|
+
<span class="md-ellipsis">
|
|
3857
|
+
Interface Redundancy Group
|
|
3858
|
+
</span>
|
|
3859
|
+
|
|
3860
|
+
|
|
3861
|
+
</a>
|
|
3862
|
+
</li>
|
|
3863
|
+
|
|
3864
|
+
|
|
3865
|
+
|
|
3866
|
+
|
|
3867
|
+
|
|
3868
|
+
|
|
3869
|
+
|
|
3870
|
+
|
|
3871
|
+
|
|
3872
|
+
|
|
3873
|
+
<li class="md-nav__item">
|
|
3874
|
+
<a href="../../../user-guide/core-data-model/dcim/powerpanel.html" class="md-nav__link">
|
|
3875
|
+
|
|
3876
|
+
|
|
3877
|
+
<span class="md-ellipsis">
|
|
3878
|
+
Power Panel
|
|
3879
|
+
</span>
|
|
3880
|
+
|
|
3881
|
+
|
|
3882
|
+
</a>
|
|
3883
|
+
</li>
|
|
3884
|
+
|
|
3885
|
+
|
|
3886
|
+
|
|
3887
|
+
|
|
3888
|
+
|
|
3889
|
+
|
|
3890
|
+
|
|
3891
|
+
|
|
3892
|
+
|
|
3893
|
+
|
|
3894
|
+
<li class="md-nav__item">
|
|
3895
|
+
<a href="../../../user-guide/core-data-model/dcim/powerfeed.html" class="md-nav__link">
|
|
3896
|
+
|
|
3897
|
+
|
|
3898
|
+
<span class="md-ellipsis">
|
|
3899
|
+
Power Feed
|
|
3900
|
+
</span>
|
|
3901
|
+
|
|
3902
|
+
|
|
3903
|
+
</a>
|
|
3904
|
+
</li>
|
|
3905
|
+
|
|
3906
|
+
|
|
3907
|
+
|
|
3908
|
+
|
|
3909
|
+
|
|
3910
|
+
|
|
3911
|
+
|
|
3912
|
+
|
|
3913
|
+
|
|
3914
|
+
|
|
3915
|
+
<li class="md-nav__item">
|
|
3916
|
+
<a href="../../../user-guide/core-data-model/dcim/rackreservation.html" class="md-nav__link">
|
|
3917
|
+
|
|
3918
|
+
|
|
3919
|
+
<span class="md-ellipsis">
|
|
3920
|
+
Rack Reservation
|
|
3921
|
+
</span>
|
|
3922
|
+
|
|
3923
|
+
|
|
3924
|
+
</a>
|
|
3925
|
+
</li>
|
|
3926
|
+
|
|
3927
|
+
|
|
3928
|
+
|
|
3929
|
+
|
|
3930
|
+
|
|
3931
|
+
|
|
3932
|
+
|
|
3933
|
+
|
|
3934
|
+
|
|
3935
|
+
|
|
3936
|
+
<li class="md-nav__item">
|
|
3937
|
+
<a href="../../../user-guide/core-data-model/dcim/softwareimagefile.html" class="md-nav__link">
|
|
3938
|
+
|
|
3939
|
+
|
|
3940
|
+
<span class="md-ellipsis">
|
|
3941
|
+
Software Image File
|
|
3942
|
+
</span>
|
|
3943
|
+
|
|
3944
|
+
|
|
3945
|
+
</a>
|
|
3946
|
+
</li>
|
|
3947
|
+
|
|
3948
|
+
|
|
3949
|
+
|
|
3950
|
+
|
|
3951
|
+
|
|
3952
|
+
|
|
3953
|
+
|
|
3954
|
+
|
|
3955
|
+
|
|
3956
|
+
|
|
3957
|
+
<li class="md-nav__item">
|
|
3958
|
+
<a href="../../../user-guide/core-data-model/dcim/softwareversion.html" class="md-nav__link">
|
|
3959
|
+
|
|
3960
|
+
|
|
3961
|
+
<span class="md-ellipsis">
|
|
3962
|
+
Software Version
|
|
3963
|
+
</span>
|
|
3964
|
+
|
|
3965
|
+
|
|
3966
|
+
</a>
|
|
3967
|
+
</li>
|
|
3968
|
+
|
|
3969
|
+
|
|
3970
|
+
|
|
3971
|
+
|
|
3972
|
+
|
|
3973
|
+
|
|
3974
|
+
|
|
3975
|
+
|
|
3976
|
+
|
|
3977
|
+
|
|
3978
|
+
<li class="md-nav__item">
|
|
3979
|
+
<a href="../../../user-guide/core-data-model/dcim/virtualchassis.html" class="md-nav__link">
|
|
3980
|
+
|
|
3981
|
+
|
|
3982
|
+
<span class="md-ellipsis">
|
|
3983
|
+
Virtual Chassis
|
|
3984
|
+
</span>
|
|
3985
|
+
|
|
3986
|
+
|
|
3987
|
+
</a>
|
|
3988
|
+
</li>
|
|
3989
|
+
|
|
3990
|
+
|
|
3991
|
+
|
|
3992
|
+
|
|
3993
|
+
|
|
3994
|
+
|
|
3995
|
+
|
|
3996
|
+
|
|
3997
|
+
|
|
3998
|
+
|
|
3999
|
+
<li class="md-nav__item">
|
|
4000
|
+
<a href="../../../user-guide/core-data-model/dcim/controller.html" class="md-nav__link">
|
|
4001
|
+
|
|
4002
|
+
|
|
4003
|
+
<span class="md-ellipsis">
|
|
4004
|
+
Controller
|
|
4005
|
+
</span>
|
|
4006
|
+
|
|
4007
|
+
|
|
4008
|
+
</a>
|
|
4009
|
+
</li>
|
|
4010
|
+
|
|
4011
|
+
|
|
4012
|
+
|
|
4013
|
+
|
|
4014
|
+
|
|
4015
|
+
|
|
4016
|
+
|
|
4017
|
+
|
|
4018
|
+
|
|
4019
|
+
|
|
4020
|
+
<li class="md-nav__item">
|
|
4021
|
+
<a href="../../../user-guide/core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
|
|
4022
|
+
|
|
4023
|
+
|
|
4024
|
+
<span class="md-ellipsis">
|
|
4025
|
+
Controller Managed Device Group
|
|
4026
|
+
</span>
|
|
4027
|
+
|
|
4028
|
+
|
|
4029
|
+
</a>
|
|
4030
|
+
</li>
|
|
4031
|
+
|
|
4032
|
+
|
|
4033
|
+
|
|
4034
|
+
|
|
4035
|
+
</ul>
|
|
4036
|
+
</nav>
|
|
4037
|
+
|
|
4038
|
+
</li>
|
|
4039
|
+
|
|
4040
|
+
|
|
4041
|
+
|
|
4042
|
+
|
|
4043
|
+
|
|
4044
|
+
|
|
4045
|
+
|
|
4046
|
+
|
|
4047
|
+
|
|
4048
|
+
|
|
4049
|
+
|
|
4050
|
+
|
|
4051
|
+
|
|
4052
|
+
|
|
4053
|
+
|
|
4054
|
+
|
|
4055
|
+
|
|
4056
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4057
|
+
|
|
4058
|
+
|
|
4059
|
+
|
|
4060
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
4061
|
+
|
|
4062
|
+
|
|
4063
|
+
<label class="md-nav__link" for="__nav_2_3_5" id="__nav_2_3_5_label" tabindex="0">
|
|
4064
|
+
|
|
4065
|
+
|
|
4066
|
+
<span class="md-ellipsis">
|
|
4067
|
+
Extras
|
|
4068
|
+
</span>
|
|
4069
|
+
|
|
4070
|
+
|
|
4071
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4072
|
+
</label>
|
|
4073
|
+
|
|
4074
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_5_label" aria-expanded="false">
|
|
4075
|
+
<label class="md-nav__title" for="__nav_2_3_5">
|
|
4076
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4077
|
+
Extras
|
|
4078
|
+
</label>
|
|
4079
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
4080
|
+
|
|
4081
|
+
|
|
4082
|
+
|
|
3396
4083
|
|
|
3397
4084
|
|
|
3398
4085
|
|
|
@@ -3500,10 +4187,10 @@
|
|
|
3500
4187
|
|
|
3501
4188
|
|
|
3502
4189
|
|
|
3503
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
4190
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3504
4191
|
|
|
3505
4192
|
|
|
3506
|
-
<label class="md-nav__link" for="
|
|
4193
|
+
<label class="md-nav__link" for="__nav_2_3_6" id="__nav_2_3_6_label" tabindex="0">
|
|
3507
4194
|
|
|
3508
4195
|
|
|
3509
4196
|
<span class="md-ellipsis">
|
|
@@ -3514,8 +4201,8 @@
|
|
|
3514
4201
|
<span class="md-nav__icon md-icon"></span>
|
|
3515
4202
|
</label>
|
|
3516
4203
|
|
|
3517
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
3518
|
-
<label class="md-nav__title" for="
|
|
4204
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_6_label" aria-expanded="false">
|
|
4205
|
+
<label class="md-nav__title" for="__nav_2_3_6">
|
|
3519
4206
|
<span class="md-nav__icon md-icon"></span>
|
|
3520
4207
|
IPAM
|
|
3521
4208
|
</label>
|
|
@@ -3735,10 +4422,10 @@
|
|
|
3735
4422
|
|
|
3736
4423
|
|
|
3737
4424
|
|
|
3738
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
4425
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3739
4426
|
|
|
3740
4427
|
|
|
3741
|
-
<label class="md-nav__link" for="
|
|
4428
|
+
<label class="md-nav__link" for="__nav_2_3_7" id="__nav_2_3_7_label" tabindex="0">
|
|
3742
4429
|
|
|
3743
4430
|
|
|
3744
4431
|
<span class="md-ellipsis">
|
|
@@ -3749,8 +4436,8 @@
|
|
|
3749
4436
|
<span class="md-nav__icon md-icon"></span>
|
|
3750
4437
|
</label>
|
|
3751
4438
|
|
|
3752
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
3753
|
-
<label class="md-nav__title" for="
|
|
4439
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_7_label" aria-expanded="false">
|
|
4440
|
+
<label class="md-nav__title" for="__nav_2_3_7">
|
|
3754
4441
|
<span class="md-nav__icon md-icon"></span>
|
|
3755
4442
|
Tenancy
|
|
3756
4443
|
</label>
|
|
@@ -3823,10 +4510,10 @@
|
|
|
3823
4510
|
|
|
3824
4511
|
|
|
3825
4512
|
|
|
3826
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
4513
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_8" >
|
|
3827
4514
|
|
|
3828
4515
|
|
|
3829
|
-
<label class="md-nav__link" for="
|
|
4516
|
+
<label class="md-nav__link" for="__nav_2_3_8" id="__nav_2_3_8_label" tabindex="0">
|
|
3830
4517
|
|
|
3831
4518
|
|
|
3832
4519
|
<span class="md-ellipsis">
|
|
@@ -3837,8 +4524,8 @@
|
|
|
3837
4524
|
<span class="md-nav__icon md-icon"></span>
|
|
3838
4525
|
</label>
|
|
3839
4526
|
|
|
3840
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
3841
|
-
<label class="md-nav__title" for="
|
|
4527
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_8_label" aria-expanded="false">
|
|
4528
|
+
<label class="md-nav__title" for="__nav_2_3_8">
|
|
3842
4529
|
<span class="md-nav__icon md-icon"></span>
|
|
3843
4530
|
Virtualization
|
|
3844
4531
|
</label>
|
|
@@ -4093,21 +4780,75 @@
|
|
|
4093
4780
|
|
|
4094
4781
|
|
|
4095
4782
|
|
|
4096
|
-
|
|
4097
|
-
|
|
4783
|
+
|
|
4784
|
+
|
|
4785
|
+
|
|
4786
|
+
|
|
4787
|
+
|
|
4788
|
+
|
|
4789
|
+
|
|
4790
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4791
|
+
|
|
4098
4792
|
|
|
4793
|
+
|
|
4794
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_5" >
|
|
4795
|
+
|
|
4796
|
+
|
|
4797
|
+
|
|
4798
|
+
<div class="md-nav__link md-nav__container">
|
|
4799
|
+
<a href="../../../user-guide/platform-functionality/dynamicgroup.html" class="md-nav__link ">
|
|
4800
|
+
|
|
4099
4801
|
|
|
4100
4802
|
<span class="md-ellipsis">
|
|
4101
4803
|
Dynamic Groups
|
|
4102
4804
|
</span>
|
|
4103
4805
|
|
|
4104
4806
|
|
|
4807
|
+
</a>
|
|
4808
|
+
|
|
4809
|
+
|
|
4810
|
+
<label class="md-nav__link " for="__nav_2_4_5" id="__nav_2_4_5_label" tabindex="0">
|
|
4811
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4812
|
+
</label>
|
|
4813
|
+
|
|
4814
|
+
</div>
|
|
4815
|
+
|
|
4816
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_5_label" aria-expanded="false">
|
|
4817
|
+
<label class="md-nav__title" for="__nav_2_4_5">
|
|
4818
|
+
<span class="md-nav__icon md-icon"></span>
|
|
4819
|
+
Dynamic Groups
|
|
4820
|
+
</label>
|
|
4821
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
4822
|
+
|
|
4823
|
+
|
|
4824
|
+
|
|
4825
|
+
|
|
4826
|
+
|
|
4827
|
+
|
|
4828
|
+
|
|
4829
|
+
<li class="md-nav__item">
|
|
4830
|
+
<a href="../../../user-guide/platform-functionality/staticgroupassociation.html" class="md-nav__link">
|
|
4831
|
+
|
|
4832
|
+
|
|
4833
|
+
<span class="md-ellipsis">
|
|
4834
|
+
Static Group Associations
|
|
4835
|
+
</span>
|
|
4836
|
+
|
|
4837
|
+
|
|
4105
4838
|
</a>
|
|
4106
4839
|
</li>
|
|
4107
4840
|
|
|
4108
4841
|
|
|
4109
4842
|
|
|
4110
4843
|
|
|
4844
|
+
</ul>
|
|
4845
|
+
</nav>
|
|
4846
|
+
|
|
4847
|
+
</li>
|
|
4848
|
+
|
|
4849
|
+
|
|
4850
|
+
|
|
4851
|
+
|
|
4111
4852
|
|
|
4112
4853
|
|
|
4113
4854
|
|
|
@@ -4416,7 +5157,28 @@
|
|
|
4416
5157
|
|
|
4417
5158
|
|
|
4418
5159
|
<span class="md-ellipsis">
|
|
4419
|
-
NAPALM
|
|
5160
|
+
NAPALM
|
|
5161
|
+
</span>
|
|
5162
|
+
|
|
5163
|
+
|
|
5164
|
+
</a>
|
|
5165
|
+
</li>
|
|
5166
|
+
|
|
5167
|
+
|
|
5168
|
+
|
|
5169
|
+
|
|
5170
|
+
|
|
5171
|
+
|
|
5172
|
+
|
|
5173
|
+
|
|
5174
|
+
|
|
5175
|
+
|
|
5176
|
+
<li class="md-nav__item">
|
|
5177
|
+
<a href="../../../user-guide/platform-functionality/note.html" class="md-nav__link">
|
|
5178
|
+
|
|
5179
|
+
|
|
5180
|
+
<span class="md-ellipsis">
|
|
5181
|
+
Notes
|
|
4420
5182
|
</span>
|
|
4421
5183
|
|
|
4422
5184
|
|
|
@@ -4433,11 +5195,11 @@
|
|
|
4433
5195
|
|
|
4434
5196
|
|
|
4435
5197
|
<li class="md-nav__item">
|
|
4436
|
-
<a href="../../../user-guide/platform-functionality/
|
|
5198
|
+
<a href="../../../user-guide/platform-functionality/objectmetadata.html" class="md-nav__link">
|
|
4437
5199
|
|
|
4438
5200
|
|
|
4439
5201
|
<span class="md-ellipsis">
|
|
4440
|
-
|
|
5202
|
+
Object Metadata
|
|
4441
5203
|
</span>
|
|
4442
5204
|
|
|
4443
5205
|
|
|
@@ -4485,7 +5247,7 @@
|
|
|
4485
5247
|
|
|
4486
5248
|
|
|
4487
5249
|
|
|
4488
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5250
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_16" >
|
|
4489
5251
|
|
|
4490
5252
|
|
|
4491
5253
|
|
|
@@ -4501,14 +5263,14 @@
|
|
|
4501
5263
|
</a>
|
|
4502
5264
|
|
|
4503
5265
|
|
|
4504
|
-
<label class="md-nav__link " for="
|
|
5266
|
+
<label class="md-nav__link " for="__nav_2_4_16" id="__nav_2_4_16_label" tabindex="0">
|
|
4505
5267
|
<span class="md-nav__icon md-icon"></span>
|
|
4506
5268
|
</label>
|
|
4507
5269
|
|
|
4508
5270
|
</div>
|
|
4509
5271
|
|
|
4510
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
4511
|
-
<label class="md-nav__title" for="
|
|
5272
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_16_label" aria-expanded="false">
|
|
5273
|
+
<label class="md-nav__title" for="__nav_2_4_16">
|
|
4512
5274
|
<span class="md-nav__icon md-icon"></span>
|
|
4513
5275
|
REST API
|
|
4514
5276
|
</label>
|
|
@@ -4612,6 +5374,27 @@
|
|
|
4612
5374
|
|
|
4613
5375
|
|
|
4614
5376
|
|
|
5377
|
+
<li class="md-nav__item">
|
|
5378
|
+
<a href="../../../user-guide/platform-functionality/savedview.html" class="md-nav__link">
|
|
5379
|
+
|
|
5380
|
+
|
|
5381
|
+
<span class="md-ellipsis">
|
|
5382
|
+
Saved Views
|
|
5383
|
+
</span>
|
|
5384
|
+
|
|
5385
|
+
|
|
5386
|
+
</a>
|
|
5387
|
+
</li>
|
|
5388
|
+
|
|
5389
|
+
|
|
5390
|
+
|
|
5391
|
+
|
|
5392
|
+
|
|
5393
|
+
|
|
5394
|
+
|
|
5395
|
+
|
|
5396
|
+
|
|
5397
|
+
|
|
4615
5398
|
<li class="md-nav__item">
|
|
4616
5399
|
<a href="../../../user-guide/platform-functionality/secret.html" class="md-nav__link">
|
|
4617
5400
|
|
|
@@ -4707,10 +5490,10 @@
|
|
|
4707
5490
|
|
|
4708
5491
|
|
|
4709
5492
|
|
|
4710
|
-
<input class="md-nav__toggle md-toggle " type="checkbox" id="
|
|
5493
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_23" >
|
|
4711
5494
|
|
|
4712
5495
|
|
|
4713
|
-
<label class="md-nav__link" for="
|
|
5496
|
+
<label class="md-nav__link" for="__nav_2_4_23" id="__nav_2_4_23_label" tabindex="0">
|
|
4714
5497
|
|
|
4715
5498
|
|
|
4716
5499
|
<span class="md-ellipsis">
|
|
@@ -4721,8 +5504,8 @@
|
|
|
4721
5504
|
<span class="md-nav__icon md-icon"></span>
|
|
4722
5505
|
</label>
|
|
4723
5506
|
|
|
4724
|
-
<nav class="md-nav" data-md-level="3" aria-labelledby="
|
|
4725
|
-
<label class="md-nav__title" for="
|
|
5507
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_23_label" aria-expanded="false">
|
|
5508
|
+
<label class="md-nav__title" for="__nav_2_4_23">
|
|
4726
5509
|
<span class="md-nav__icon md-icon"></span>
|
|
4727
5510
|
Users
|
|
4728
5511
|
</label>
|
|
@@ -7877,6 +8660,27 @@
|
|
|
7877
8660
|
|
|
7878
8661
|
|
|
7879
8662
|
|
|
8663
|
+
<li class="md-nav__item">
|
|
8664
|
+
<a href="../../../release-notes/version-2.3.html" class="md-nav__link">
|
|
8665
|
+
|
|
8666
|
+
|
|
8667
|
+
<span class="md-ellipsis">
|
|
8668
|
+
Version 2.3
|
|
8669
|
+
</span>
|
|
8670
|
+
|
|
8671
|
+
|
|
8672
|
+
</a>
|
|
8673
|
+
</li>
|
|
8674
|
+
|
|
8675
|
+
|
|
8676
|
+
|
|
8677
|
+
|
|
8678
|
+
|
|
8679
|
+
|
|
8680
|
+
|
|
8681
|
+
|
|
8682
|
+
|
|
8683
|
+
|
|
7880
8684
|
<li class="md-nav__item">
|
|
7881
8685
|
<a href="../../../release-notes/version-2.2.html" class="md-nav__link">
|
|
7882
8686
|
|
|
@@ -9024,16 +9828,16 @@
|
|
|
9024
9828
|
|
|
9025
9829
|
|
|
9026
9830
|
<h1 id="nautobot.apps.ui" class="doc doc-heading">
|
|
9027
|
-
|
|
9831
|
+
<code>nautobot.apps.ui</code>
|
|
9028
9832
|
|
|
9029
9833
|
|
|
9030
9834
|
<a href="#nautobot.apps.ui" class="headerlink" title="Permanent link">¶</a></h1>
|
|
9031
9835
|
|
|
9032
|
-
|
|
9033
|
-
|
|
9836
|
+
<div class="doc doc-contents first">
|
|
9837
|
+
|
|
9034
9838
|
<p>Utilities for apps to integrate with and extend the existing Nautobot UI.</p>
|
|
9035
9839
|
|
|
9036
|
-
|
|
9840
|
+
|
|
9037
9841
|
|
|
9038
9842
|
<div class="doc doc-children">
|
|
9039
9843
|
|
|
@@ -9049,22 +9853,21 @@
|
|
|
9049
9853
|
|
|
9050
9854
|
|
|
9051
9855
|
<h2 id="nautobot.apps.ui.Banner" class="doc doc-heading">
|
|
9052
|
-
|
|
9856
|
+
<code>nautobot.apps.ui.Banner</code>
|
|
9053
9857
|
|
|
9054
9858
|
|
|
9055
9859
|
<a href="#nautobot.apps.ui.Banner" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9056
9860
|
|
|
9057
9861
|
|
|
9058
|
-
|
|
9862
|
+
<div class="doc doc-contents ">
|
|
9863
|
+
|
|
9059
9864
|
|
|
9060
|
-
|
|
9061
9865
|
<p>Class that may be returned by a registered plugin_banners function.</p>
|
|
9062
9866
|
|
|
9063
9867
|
|
|
9064
|
-
|
|
9065
9868
|
|
|
9066
|
-
<div class="doc doc-children">
|
|
9067
9869
|
|
|
9870
|
+
<div class="doc doc-children">
|
|
9068
9871
|
|
|
9069
9872
|
|
|
9070
9873
|
|
|
@@ -9075,10 +9878,10 @@
|
|
|
9075
9878
|
|
|
9076
9879
|
|
|
9077
9880
|
|
|
9078
|
-
</div>
|
|
9079
9881
|
|
|
9080
9882
|
</div>
|
|
9081
9883
|
|
|
9884
|
+
</div>
|
|
9082
9885
|
|
|
9083
9886
|
</div>
|
|
9084
9887
|
|
|
@@ -9087,24 +9890,23 @@
|
|
|
9087
9890
|
|
|
9088
9891
|
|
|
9089
9892
|
<h2 id="nautobot.apps.ui.BannerClassChoices" class="doc doc-heading">
|
|
9090
|
-
|
|
9893
|
+
<code>nautobot.apps.ui.BannerClassChoices</code>
|
|
9091
9894
|
|
|
9092
9895
|
|
|
9093
9896
|
<a href="#nautobot.apps.ui.BannerClassChoices" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9094
9897
|
|
|
9095
9898
|
|
|
9096
|
-
|
|
9097
|
-
|
|
9098
|
-
|
|
9899
|
+
<div class="doc doc-contents ">
|
|
9900
|
+
<p class="doc doc-class-bases">
|
|
9901
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
|
|
9902
|
+
|
|
9099
9903
|
|
|
9100
|
-
|
|
9101
9904
|
<p>Styling choices for custom banners.</p>
|
|
9102
9905
|
|
|
9103
9906
|
|
|
9104
|
-
|
|
9105
9907
|
|
|
9106
|
-
<div class="doc doc-children">
|
|
9107
9908
|
|
|
9909
|
+
<div class="doc doc-children">
|
|
9108
9910
|
|
|
9109
9911
|
|
|
9110
9912
|
|
|
@@ -9115,10 +9917,10 @@
|
|
|
9115
9917
|
|
|
9116
9918
|
|
|
9117
9919
|
|
|
9118
|
-
</div>
|
|
9119
9920
|
|
|
9120
9921
|
</div>
|
|
9121
9922
|
|
|
9923
|
+
</div>
|
|
9122
9924
|
|
|
9123
9925
|
</div>
|
|
9124
9926
|
|
|
@@ -9127,24 +9929,23 @@
|
|
|
9127
9929
|
|
|
9128
9930
|
|
|
9129
9931
|
<h2 id="nautobot.apps.ui.ButtonColorChoices" class="doc doc-heading">
|
|
9130
|
-
|
|
9932
|
+
<code>nautobot.apps.ui.ButtonColorChoices</code>
|
|
9131
9933
|
|
|
9132
9934
|
|
|
9133
9935
|
<a href="#nautobot.apps.ui.ButtonColorChoices" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9134
9936
|
|
|
9135
9937
|
|
|
9136
|
-
|
|
9137
|
-
|
|
9138
|
-
|
|
9938
|
+
<div class="doc doc-contents ">
|
|
9939
|
+
<p class="doc doc-class-bases">
|
|
9940
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
|
|
9941
|
+
|
|
9139
9942
|
|
|
9140
|
-
|
|
9141
9943
|
<p>Map standard button color choices to Bootstrap color classes</p>
|
|
9142
9944
|
|
|
9143
9945
|
|
|
9144
|
-
|
|
9145
9946
|
|
|
9146
|
-
<div class="doc doc-children">
|
|
9147
9947
|
|
|
9948
|
+
<div class="doc doc-children">
|
|
9148
9949
|
|
|
9149
9950
|
|
|
9150
9951
|
|
|
@@ -9155,10 +9956,10 @@
|
|
|
9155
9956
|
|
|
9156
9957
|
|
|
9157
9958
|
|
|
9158
|
-
</div>
|
|
9159
9959
|
|
|
9160
9960
|
</div>
|
|
9161
9961
|
|
|
9962
|
+
</div>
|
|
9162
9963
|
|
|
9163
9964
|
</div>
|
|
9164
9965
|
|
|
@@ -9167,24 +9968,23 @@
|
|
|
9167
9968
|
|
|
9168
9969
|
|
|
9169
9970
|
<h2 id="nautobot.apps.ui.HomePageBase" class="doc doc-heading">
|
|
9170
|
-
|
|
9971
|
+
<code>nautobot.apps.ui.HomePageBase</code>
|
|
9171
9972
|
|
|
9172
9973
|
|
|
9173
9974
|
<a href="#nautobot.apps.ui.HomePageBase" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9174
9975
|
|
|
9175
9976
|
|
|
9176
|
-
|
|
9177
|
-
|
|
9178
|
-
|
|
9977
|
+
<div class="doc doc-contents ">
|
|
9978
|
+
<p class="doc doc-class-bases">
|
|
9979
|
+
Bases: <code><span title="abc.ABC">ABC</span></code></p>
|
|
9980
|
+
|
|
9179
9981
|
|
|
9180
|
-
|
|
9181
9982
|
<p>Base class for homepage layout classes.</p>
|
|
9182
9983
|
|
|
9183
9984
|
|
|
9184
|
-
|
|
9185
9985
|
|
|
9186
|
-
<div class="doc doc-children">
|
|
9187
9986
|
|
|
9987
|
+
<div class="doc doc-children">
|
|
9188
9988
|
|
|
9189
9989
|
|
|
9190
9990
|
|
|
@@ -9195,10 +9995,10 @@
|
|
|
9195
9995
|
|
|
9196
9996
|
|
|
9197
9997
|
|
|
9198
|
-
</div>
|
|
9199
9998
|
|
|
9200
9999
|
</div>
|
|
9201
10000
|
|
|
10001
|
+
</div>
|
|
9202
10002
|
|
|
9203
10003
|
</div>
|
|
9204
10004
|
|
|
@@ -9207,24 +10007,23 @@
|
|
|
9207
10007
|
|
|
9208
10008
|
|
|
9209
10009
|
<h2 id="nautobot.apps.ui.HomePageGroup" class="doc doc-heading">
|
|
9210
|
-
|
|
10010
|
+
<code>nautobot.apps.ui.HomePageGroup</code>
|
|
9211
10011
|
|
|
9212
10012
|
|
|
9213
10013
|
<a href="#nautobot.apps.ui.HomePageGroup" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9214
10014
|
|
|
9215
10015
|
|
|
9216
|
-
|
|
9217
|
-
|
|
9218
|
-
|
|
10016
|
+
<div class="doc doc-contents ">
|
|
10017
|
+
<p class="doc doc-class-bases">
|
|
10018
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
10019
|
+
|
|
9219
10020
|
|
|
9220
|
-
|
|
9221
10021
|
<p>Defines properties that can be used for a panel group.</p>
|
|
9222
10022
|
|
|
9223
10023
|
|
|
9224
|
-
|
|
9225
10024
|
|
|
9226
|
-
<div class="doc doc-children">
|
|
9227
10025
|
|
|
10026
|
+
<div class="doc doc-children">
|
|
9228
10027
|
|
|
9229
10028
|
|
|
9230
10029
|
|
|
@@ -9237,90 +10036,88 @@
|
|
|
9237
10036
|
<div class="doc doc-object doc-function">
|
|
9238
10037
|
|
|
9239
10038
|
|
|
9240
|
-
|
|
9241
10039
|
<h3 id="nautobot.apps.ui.HomePageGroup.__init__" class="doc doc-heading">
|
|
9242
|
-
|
|
10040
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
|
|
9243
10041
|
|
|
9244
10042
|
<a href="#nautobot.apps.ui.HomePageGroup.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9245
10043
|
|
|
9246
10044
|
|
|
9247
|
-
|
|
9248
|
-
|
|
9249
|
-
<p>Ensure group properties.</p>
|
|
10045
|
+
<div class="doc doc-contents ">
|
|
9250
10046
|
|
|
10047
|
+
<p>Ensure group properties.</p>
|
|
9251
10048
|
|
|
9252
10049
|
|
|
9253
|
-
|
|
9254
|
-
|
|
9255
|
-
|
|
9256
|
-
<tr>
|
|
9257
|
-
<th>Name</th>
|
|
9258
|
-
<th>Type</th>
|
|
9259
|
-
<th>Description</th>
|
|
9260
|
-
<th>Default</th>
|
|
9261
|
-
</tr>
|
|
9262
|
-
</thead>
|
|
9263
|
-
<tbody>
|
|
9264
|
-
<tr>
|
|
9265
|
-
<td><code>name</code></td>
|
|
9266
|
-
<td>
|
|
9267
|
-
<code>str</code>
|
|
9268
|
-
</td>
|
|
9269
|
-
<td>
|
|
9270
|
-
<div class="doc-md-description">
|
|
9271
|
-
<p>The name of the group.</p>
|
|
9272
|
-
</div>
|
|
9273
|
-
</td>
|
|
9274
|
-
<td>
|
|
9275
|
-
<em>required</em>
|
|
9276
|
-
</td>
|
|
9277
|
-
</tr>
|
|
9278
|
-
<tr>
|
|
9279
|
-
<td><code>permissions</code></td>
|
|
9280
|
-
<td>
|
|
9281
|
-
<code>list</code>
|
|
9282
|
-
</td>
|
|
9283
|
-
<td>
|
|
9284
|
-
<div class="doc-md-description">
|
|
9285
|
-
<p>The permissions required to view this group.</p>
|
|
9286
|
-
</div>
|
|
9287
|
-
</td>
|
|
9288
|
-
<td>
|
|
9289
|
-
<code>None</code>
|
|
9290
|
-
</td>
|
|
9291
|
-
</tr>
|
|
9292
|
-
<tr>
|
|
9293
|
-
<td><code>items</code></td>
|
|
9294
|
-
<td>
|
|
9295
|
-
<code>list</code>
|
|
9296
|
-
</td>
|
|
9297
|
-
<td>
|
|
9298
|
-
<div class="doc-md-description">
|
|
9299
|
-
<p>List of items to be rendered in this group.</p>
|
|
9300
|
-
</div>
|
|
9301
|
-
</td>
|
|
9302
|
-
<td>
|
|
9303
|
-
<code>None</code>
|
|
9304
|
-
</td>
|
|
9305
|
-
</tr>
|
|
10050
|
+
<p><span class="doc-section-title">Parameters:</span></p>
|
|
10051
|
+
<table>
|
|
10052
|
+
<thead>
|
|
9306
10053
|
<tr>
|
|
9307
|
-
<
|
|
9308
|
-
<
|
|
9309
|
-
|
|
9310
|
-
</
|
|
9311
|
-
<td>
|
|
9312
|
-
<div class="doc-md-description">
|
|
9313
|
-
<p>The weight of this group.</p>
|
|
9314
|
-
</div>
|
|
9315
|
-
</td>
|
|
9316
|
-
<td>
|
|
9317
|
-
<code>1000</code>
|
|
9318
|
-
</td>
|
|
10054
|
+
<th>Name</th>
|
|
10055
|
+
<th>Type</th>
|
|
10056
|
+
<th>Description</th>
|
|
10057
|
+
<th>Default</th>
|
|
9319
10058
|
</tr>
|
|
9320
|
-
|
|
9321
|
-
|
|
10059
|
+
</thead>
|
|
10060
|
+
<tbody>
|
|
10061
|
+
<tr class="doc-section-item">
|
|
10062
|
+
<td><code>name</code></td>
|
|
10063
|
+
<td>
|
|
10064
|
+
<code>str</code>
|
|
10065
|
+
</td>
|
|
10066
|
+
<td>
|
|
10067
|
+
<div class="doc-md-description">
|
|
10068
|
+
<p>The name of the group.</p>
|
|
10069
|
+
</div>
|
|
10070
|
+
</td>
|
|
10071
|
+
<td>
|
|
10072
|
+
<em>required</em>
|
|
10073
|
+
</td>
|
|
10074
|
+
</tr>
|
|
10075
|
+
<tr class="doc-section-item">
|
|
10076
|
+
<td><code>permissions</code></td>
|
|
10077
|
+
<td>
|
|
10078
|
+
<code>list</code>
|
|
10079
|
+
</td>
|
|
10080
|
+
<td>
|
|
10081
|
+
<div class="doc-md-description">
|
|
10082
|
+
<p>The permissions required to view this group.</p>
|
|
10083
|
+
</div>
|
|
10084
|
+
</td>
|
|
10085
|
+
<td>
|
|
10086
|
+
<code>None</code>
|
|
10087
|
+
</td>
|
|
10088
|
+
</tr>
|
|
10089
|
+
<tr class="doc-section-item">
|
|
10090
|
+
<td><code>items</code></td>
|
|
10091
|
+
<td>
|
|
10092
|
+
<code>list</code>
|
|
10093
|
+
</td>
|
|
10094
|
+
<td>
|
|
10095
|
+
<div class="doc-md-description">
|
|
10096
|
+
<p>List of items to be rendered in this group.</p>
|
|
10097
|
+
</div>
|
|
10098
|
+
</td>
|
|
10099
|
+
<td>
|
|
10100
|
+
<code>None</code>
|
|
10101
|
+
</td>
|
|
10102
|
+
</tr>
|
|
10103
|
+
<tr class="doc-section-item">
|
|
10104
|
+
<td><code>weight</code></td>
|
|
10105
|
+
<td>
|
|
10106
|
+
<code>int</code>
|
|
10107
|
+
</td>
|
|
10108
|
+
<td>
|
|
10109
|
+
<div class="doc-md-description">
|
|
10110
|
+
<p>The weight of this group.</p>
|
|
10111
|
+
</div>
|
|
10112
|
+
</td>
|
|
10113
|
+
<td>
|
|
10114
|
+
<code>1000</code>
|
|
10115
|
+
</td>
|
|
10116
|
+
</tr>
|
|
10117
|
+
</tbody>
|
|
10118
|
+
</table>
|
|
9322
10119
|
|
|
9323
|
-
|
|
10120
|
+
</div>
|
|
9324
10121
|
|
|
9325
10122
|
</div>
|
|
9326
10123
|
|
|
@@ -9328,8 +10125,7 @@
|
|
|
9328
10125
|
|
|
9329
10126
|
</div>
|
|
9330
10127
|
|
|
9331
|
-
|
|
9332
|
-
|
|
10128
|
+
</div>
|
|
9333
10129
|
|
|
9334
10130
|
</div>
|
|
9335
10131
|
|
|
@@ -9338,24 +10134,23 @@
|
|
|
9338
10134
|
|
|
9339
10135
|
|
|
9340
10136
|
<h2 id="nautobot.apps.ui.HomePageItem" class="doc doc-heading">
|
|
9341
|
-
|
|
10137
|
+
<code>nautobot.apps.ui.HomePageItem</code>
|
|
9342
10138
|
|
|
9343
10139
|
|
|
9344
10140
|
<a href="#nautobot.apps.ui.HomePageItem" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9345
10141
|
|
|
9346
10142
|
|
|
9347
|
-
|
|
9348
|
-
|
|
9349
|
-
|
|
10143
|
+
<div class="doc doc-contents ">
|
|
10144
|
+
<p class="doc doc-class-bases">
|
|
10145
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
10146
|
+
|
|
9350
10147
|
|
|
9351
|
-
|
|
9352
10148
|
<p>Defines properties that can be used for a panel item.</p>
|
|
9353
10149
|
|
|
9354
10150
|
|
|
9355
|
-
|
|
9356
10151
|
|
|
9357
|
-
<div class="doc doc-children">
|
|
9358
10152
|
|
|
10153
|
+
<div class="doc doc-children">
|
|
9359
10154
|
|
|
9360
10155
|
|
|
9361
10156
|
|
|
@@ -9368,104 +10163,102 @@
|
|
|
9368
10163
|
<div class="doc doc-object doc-function">
|
|
9369
10164
|
|
|
9370
10165
|
|
|
9371
|
-
|
|
9372
10166
|
<h3 id="nautobot.apps.ui.HomePageItem.__init__" class="doc doc-heading">
|
|
9373
|
-
|
|
10167
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">link</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">model</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_template</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_data</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">description</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
|
|
9374
10168
|
|
|
9375
10169
|
<a href="#nautobot.apps.ui.HomePageItem.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9376
10170
|
|
|
9377
10171
|
|
|
9378
|
-
|
|
9379
|
-
|
|
9380
|
-
<p>Ensure item properties.</p>
|
|
10172
|
+
<div class="doc doc-contents ">
|
|
9381
10173
|
|
|
10174
|
+
<p>Ensure item properties.</p>
|
|
9382
10175
|
|
|
9383
10176
|
|
|
9384
|
-
|
|
9385
|
-
|
|
9386
|
-
|
|
9387
|
-
<tr>
|
|
9388
|
-
<th>Name</th>
|
|
9389
|
-
<th>Type</th>
|
|
9390
|
-
<th>Description</th>
|
|
9391
|
-
<th>Default</th>
|
|
9392
|
-
</tr>
|
|
9393
|
-
</thead>
|
|
9394
|
-
<tbody>
|
|
9395
|
-
<tr>
|
|
9396
|
-
<td><code>name</code></td>
|
|
9397
|
-
<td>
|
|
9398
|
-
<code>str</code>
|
|
9399
|
-
</td>
|
|
9400
|
-
<td>
|
|
9401
|
-
<div class="doc-md-description">
|
|
9402
|
-
<p>The name of the item.</p>
|
|
9403
|
-
</div>
|
|
9404
|
-
</td>
|
|
9405
|
-
<td>
|
|
9406
|
-
<em>required</em>
|
|
9407
|
-
</td>
|
|
9408
|
-
</tr>
|
|
9409
|
-
<tr>
|
|
9410
|
-
<td><code>link</code></td>
|
|
9411
|
-
<td>
|
|
9412
|
-
<code>str</code>
|
|
9413
|
-
</td>
|
|
9414
|
-
<td>
|
|
9415
|
-
<div class="doc-md-description">
|
|
9416
|
-
<p>The link to be used for this item.</p>
|
|
9417
|
-
</div>
|
|
9418
|
-
</td>
|
|
9419
|
-
<td>
|
|
9420
|
-
<code>None</code>
|
|
9421
|
-
</td>
|
|
9422
|
-
</tr>
|
|
9423
|
-
<tr>
|
|
9424
|
-
<td><code>model</code></td>
|
|
9425
|
-
<td>
|
|
9426
|
-
<code>str</code>
|
|
9427
|
-
</td>
|
|
9428
|
-
<td>
|
|
9429
|
-
<div class="doc-md-description">
|
|
9430
|
-
<p>The model to being used for this item to calculate the total count of objects.</p>
|
|
9431
|
-
</div>
|
|
9432
|
-
</td>
|
|
9433
|
-
<td>
|
|
9434
|
-
<code>None</code>
|
|
9435
|
-
</td>
|
|
9436
|
-
</tr>
|
|
10177
|
+
<p><span class="doc-section-title">Parameters:</span></p>
|
|
10178
|
+
<table>
|
|
10179
|
+
<thead>
|
|
9437
10180
|
<tr>
|
|
9438
|
-
<
|
|
9439
|
-
<
|
|
9440
|
-
|
|
9441
|
-
</
|
|
9442
|
-
<td>
|
|
9443
|
-
<div class="doc-md-description">
|
|
9444
|
-
<p>Name of custom template.</p>
|
|
9445
|
-
</div>
|
|
9446
|
-
</td>
|
|
9447
|
-
<td>
|
|
9448
|
-
<code>None</code>
|
|
9449
|
-
</td>
|
|
9450
|
-
</tr>
|
|
9451
|
-
<tr>
|
|
9452
|
-
<td><code>custom_data</code></td>
|
|
9453
|
-
<td>
|
|
9454
|
-
<code>dict</code>
|
|
9455
|
-
</td>
|
|
9456
|
-
<td>
|
|
9457
|
-
<div class="doc-md-description">
|
|
9458
|
-
<p>Custom data to be passed to the custom template.</p>
|
|
9459
|
-
</div>
|
|
9460
|
-
</td>
|
|
9461
|
-
<td>
|
|
9462
|
-
<code>None</code>
|
|
9463
|
-
</td>
|
|
10181
|
+
<th>Name</th>
|
|
10182
|
+
<th>Type</th>
|
|
10183
|
+
<th>Description</th>
|
|
10184
|
+
<th>Default</th>
|
|
9464
10185
|
</tr>
|
|
9465
|
-
|
|
9466
|
-
|
|
10186
|
+
</thead>
|
|
10187
|
+
<tbody>
|
|
10188
|
+
<tr class="doc-section-item">
|
|
10189
|
+
<td><code>name</code></td>
|
|
10190
|
+
<td>
|
|
10191
|
+
<code>str</code>
|
|
10192
|
+
</td>
|
|
10193
|
+
<td>
|
|
10194
|
+
<div class="doc-md-description">
|
|
10195
|
+
<p>The name of the item.</p>
|
|
10196
|
+
</div>
|
|
10197
|
+
</td>
|
|
10198
|
+
<td>
|
|
10199
|
+
<em>required</em>
|
|
10200
|
+
</td>
|
|
10201
|
+
</tr>
|
|
10202
|
+
<tr class="doc-section-item">
|
|
10203
|
+
<td><code>link</code></td>
|
|
10204
|
+
<td>
|
|
10205
|
+
<code>str</code>
|
|
10206
|
+
</td>
|
|
10207
|
+
<td>
|
|
10208
|
+
<div class="doc-md-description">
|
|
10209
|
+
<p>The link to be used for this item.</p>
|
|
10210
|
+
</div>
|
|
10211
|
+
</td>
|
|
10212
|
+
<td>
|
|
10213
|
+
<code>None</code>
|
|
10214
|
+
</td>
|
|
10215
|
+
</tr>
|
|
10216
|
+
<tr class="doc-section-item">
|
|
10217
|
+
<td><code>model</code></td>
|
|
10218
|
+
<td>
|
|
10219
|
+
<code>str</code>
|
|
10220
|
+
</td>
|
|
10221
|
+
<td>
|
|
10222
|
+
<div class="doc-md-description">
|
|
10223
|
+
<p>The model to being used for this item to calculate the total count of objects.</p>
|
|
10224
|
+
</div>
|
|
10225
|
+
</td>
|
|
10226
|
+
<td>
|
|
10227
|
+
<code>None</code>
|
|
10228
|
+
</td>
|
|
10229
|
+
</tr>
|
|
10230
|
+
<tr class="doc-section-item">
|
|
10231
|
+
<td><code>custom_template</code></td>
|
|
10232
|
+
<td>
|
|
10233
|
+
<code>str</code>
|
|
10234
|
+
</td>
|
|
10235
|
+
<td>
|
|
10236
|
+
<div class="doc-md-description">
|
|
10237
|
+
<p>Name of custom template.</p>
|
|
10238
|
+
</div>
|
|
10239
|
+
</td>
|
|
10240
|
+
<td>
|
|
10241
|
+
<code>None</code>
|
|
10242
|
+
</td>
|
|
10243
|
+
</tr>
|
|
10244
|
+
<tr class="doc-section-item">
|
|
10245
|
+
<td><code>custom_data</code></td>
|
|
10246
|
+
<td>
|
|
10247
|
+
<code>dict</code>
|
|
10248
|
+
</td>
|
|
10249
|
+
<td>
|
|
10250
|
+
<div class="doc-md-description">
|
|
10251
|
+
<p>Custom data to be passed to the custom template.</p>
|
|
10252
|
+
</div>
|
|
10253
|
+
</td>
|
|
10254
|
+
<td>
|
|
10255
|
+
<code>None</code>
|
|
10256
|
+
</td>
|
|
10257
|
+
</tr>
|
|
10258
|
+
</tbody>
|
|
10259
|
+
</table>
|
|
9467
10260
|
|
|
9468
|
-
|
|
10261
|
+
</div>
|
|
9469
10262
|
|
|
9470
10263
|
</div>
|
|
9471
10264
|
|
|
@@ -9473,8 +10266,7 @@
|
|
|
9473
10266
|
|
|
9474
10267
|
</div>
|
|
9475
10268
|
|
|
9476
|
-
|
|
9477
|
-
|
|
10269
|
+
</div>
|
|
9478
10270
|
|
|
9479
10271
|
</div>
|
|
9480
10272
|
|
|
@@ -9483,24 +10275,23 @@
|
|
|
9483
10275
|
|
|
9484
10276
|
|
|
9485
10277
|
<h2 id="nautobot.apps.ui.HomePagePanel" class="doc doc-heading">
|
|
9486
|
-
|
|
10278
|
+
<code>nautobot.apps.ui.HomePagePanel</code>
|
|
9487
10279
|
|
|
9488
10280
|
|
|
9489
10281
|
<a href="#nautobot.apps.ui.HomePagePanel" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9490
10282
|
|
|
9491
10283
|
|
|
9492
|
-
|
|
9493
|
-
|
|
9494
|
-
|
|
10284
|
+
<div class="doc doc-contents ">
|
|
10285
|
+
<p class="doc doc-class-bases">
|
|
10286
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
10287
|
+
|
|
9495
10288
|
|
|
9496
|
-
|
|
9497
10289
|
<p>Defines properties that can be used for a panel.</p>
|
|
9498
10290
|
|
|
9499
10291
|
|
|
9500
|
-
|
|
9501
10292
|
|
|
9502
|
-
<div class="doc doc-children">
|
|
9503
10293
|
|
|
10294
|
+
<div class="doc doc-children">
|
|
9504
10295
|
|
|
9505
10296
|
|
|
9506
10297
|
|
|
@@ -9513,118 +10304,116 @@
|
|
|
9513
10304
|
<div class="doc doc-object doc-function">
|
|
9514
10305
|
|
|
9515
10306
|
|
|
9516
|
-
|
|
9517
10307
|
<h3 id="nautobot.apps.ui.HomePagePanel.__init__" class="doc doc-heading">
|
|
9518
|
-
|
|
10308
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_data</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_template</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
|
|
9519
10309
|
|
|
9520
10310
|
<a href="#nautobot.apps.ui.HomePagePanel.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9521
10311
|
|
|
9522
10312
|
|
|
9523
|
-
|
|
9524
|
-
|
|
9525
|
-
<p>Ensure panel properties.</p>
|
|
10313
|
+
<div class="doc doc-contents ">
|
|
9526
10314
|
|
|
10315
|
+
<p>Ensure panel properties.</p>
|
|
9527
10316
|
|
|
9528
10317
|
|
|
9529
|
-
|
|
9530
|
-
|
|
9531
|
-
|
|
9532
|
-
<tr>
|
|
9533
|
-
<th>Name</th>
|
|
9534
|
-
<th>Type</th>
|
|
9535
|
-
<th>Description</th>
|
|
9536
|
-
<th>Default</th>
|
|
9537
|
-
</tr>
|
|
9538
|
-
</thead>
|
|
9539
|
-
<tbody>
|
|
9540
|
-
<tr>
|
|
9541
|
-
<td><code>name</code></td>
|
|
9542
|
-
<td>
|
|
9543
|
-
<code>str</code>
|
|
9544
|
-
</td>
|
|
9545
|
-
<td>
|
|
9546
|
-
<div class="doc-md-description">
|
|
9547
|
-
<p>The name of the panel.</p>
|
|
9548
|
-
</div>
|
|
9549
|
-
</td>
|
|
9550
|
-
<td>
|
|
9551
|
-
<em>required</em>
|
|
9552
|
-
</td>
|
|
9553
|
-
</tr>
|
|
9554
|
-
<tr>
|
|
9555
|
-
<td><code>permissions</code></td>
|
|
9556
|
-
<td>
|
|
9557
|
-
<code>list</code>
|
|
9558
|
-
</td>
|
|
9559
|
-
<td>
|
|
9560
|
-
<div class="doc-md-description">
|
|
9561
|
-
<p>The permissions required to view this panel.</p>
|
|
9562
|
-
</div>
|
|
9563
|
-
</td>
|
|
9564
|
-
<td>
|
|
9565
|
-
<code>None</code>
|
|
9566
|
-
</td>
|
|
9567
|
-
</tr>
|
|
9568
|
-
<tr>
|
|
9569
|
-
<td><code>custom_data</code></td>
|
|
9570
|
-
<td>
|
|
9571
|
-
<code>dict</code>
|
|
9572
|
-
</td>
|
|
9573
|
-
<td>
|
|
9574
|
-
<div class="doc-md-description">
|
|
9575
|
-
<p>Custom data to be passed to the custom template.</p>
|
|
9576
|
-
</div>
|
|
9577
|
-
</td>
|
|
9578
|
-
<td>
|
|
9579
|
-
<code>None</code>
|
|
9580
|
-
</td>
|
|
9581
|
-
</tr>
|
|
10318
|
+
<p><span class="doc-section-title">Parameters:</span></p>
|
|
10319
|
+
<table>
|
|
10320
|
+
<thead>
|
|
9582
10321
|
<tr>
|
|
9583
|
-
<
|
|
9584
|
-
<
|
|
9585
|
-
|
|
9586
|
-
</
|
|
9587
|
-
<td>
|
|
9588
|
-
<div class="doc-md-description">
|
|
9589
|
-
<p>Name of custom template.</p>
|
|
9590
|
-
</div>
|
|
9591
|
-
</td>
|
|
9592
|
-
<td>
|
|
9593
|
-
<code>None</code>
|
|
9594
|
-
</td>
|
|
9595
|
-
</tr>
|
|
9596
|
-
<tr>
|
|
9597
|
-
<td><code>items</code></td>
|
|
9598
|
-
<td>
|
|
9599
|
-
<code>list</code>
|
|
9600
|
-
</td>
|
|
9601
|
-
<td>
|
|
9602
|
-
<div class="doc-md-description">
|
|
9603
|
-
<p>List of items to be rendered in this panel.</p>
|
|
9604
|
-
</div>
|
|
9605
|
-
</td>
|
|
9606
|
-
<td>
|
|
9607
|
-
<code>None</code>
|
|
9608
|
-
</td>
|
|
10322
|
+
<th>Name</th>
|
|
10323
|
+
<th>Type</th>
|
|
10324
|
+
<th>Description</th>
|
|
10325
|
+
<th>Default</th>
|
|
9609
10326
|
</tr>
|
|
9610
|
-
|
|
9611
|
-
|
|
9612
|
-
<
|
|
9613
|
-
|
|
9614
|
-
|
|
9615
|
-
|
|
9616
|
-
|
|
9617
|
-
|
|
9618
|
-
|
|
9619
|
-
|
|
9620
|
-
|
|
9621
|
-
|
|
9622
|
-
|
|
9623
|
-
|
|
9624
|
-
|
|
9625
|
-
|
|
10327
|
+
</thead>
|
|
10328
|
+
<tbody>
|
|
10329
|
+
<tr class="doc-section-item">
|
|
10330
|
+
<td><code>name</code></td>
|
|
10331
|
+
<td>
|
|
10332
|
+
<code>str</code>
|
|
10333
|
+
</td>
|
|
10334
|
+
<td>
|
|
10335
|
+
<div class="doc-md-description">
|
|
10336
|
+
<p>The name of the panel.</p>
|
|
10337
|
+
</div>
|
|
10338
|
+
</td>
|
|
10339
|
+
<td>
|
|
10340
|
+
<em>required</em>
|
|
10341
|
+
</td>
|
|
10342
|
+
</tr>
|
|
10343
|
+
<tr class="doc-section-item">
|
|
10344
|
+
<td><code>permissions</code></td>
|
|
10345
|
+
<td>
|
|
10346
|
+
<code>list</code>
|
|
10347
|
+
</td>
|
|
10348
|
+
<td>
|
|
10349
|
+
<div class="doc-md-description">
|
|
10350
|
+
<p>The permissions required to view this panel.</p>
|
|
10351
|
+
</div>
|
|
10352
|
+
</td>
|
|
10353
|
+
<td>
|
|
10354
|
+
<code>None</code>
|
|
10355
|
+
</td>
|
|
10356
|
+
</tr>
|
|
10357
|
+
<tr class="doc-section-item">
|
|
10358
|
+
<td><code>custom_data</code></td>
|
|
10359
|
+
<td>
|
|
10360
|
+
<code>dict</code>
|
|
10361
|
+
</td>
|
|
10362
|
+
<td>
|
|
10363
|
+
<div class="doc-md-description">
|
|
10364
|
+
<p>Custom data to be passed to the custom template.</p>
|
|
10365
|
+
</div>
|
|
10366
|
+
</td>
|
|
10367
|
+
<td>
|
|
10368
|
+
<code>None</code>
|
|
10369
|
+
</td>
|
|
10370
|
+
</tr>
|
|
10371
|
+
<tr class="doc-section-item">
|
|
10372
|
+
<td><code>custom_template</code></td>
|
|
10373
|
+
<td>
|
|
10374
|
+
<code>str</code>
|
|
10375
|
+
</td>
|
|
10376
|
+
<td>
|
|
10377
|
+
<div class="doc-md-description">
|
|
10378
|
+
<p>Name of custom template.</p>
|
|
10379
|
+
</div>
|
|
10380
|
+
</td>
|
|
10381
|
+
<td>
|
|
10382
|
+
<code>None</code>
|
|
10383
|
+
</td>
|
|
10384
|
+
</tr>
|
|
10385
|
+
<tr class="doc-section-item">
|
|
10386
|
+
<td><code>items</code></td>
|
|
10387
|
+
<td>
|
|
10388
|
+
<code>list</code>
|
|
10389
|
+
</td>
|
|
10390
|
+
<td>
|
|
10391
|
+
<div class="doc-md-description">
|
|
10392
|
+
<p>List of items to be rendered in this panel.</p>
|
|
10393
|
+
</div>
|
|
10394
|
+
</td>
|
|
10395
|
+
<td>
|
|
10396
|
+
<code>None</code>
|
|
10397
|
+
</td>
|
|
10398
|
+
</tr>
|
|
10399
|
+
<tr class="doc-section-item">
|
|
10400
|
+
<td><code>weight</code></td>
|
|
10401
|
+
<td>
|
|
10402
|
+
<code>int</code>
|
|
10403
|
+
</td>
|
|
10404
|
+
<td>
|
|
10405
|
+
<div class="doc-md-description">
|
|
10406
|
+
<p>The weight of this panel.</p>
|
|
10407
|
+
</div>
|
|
10408
|
+
</td>
|
|
10409
|
+
<td>
|
|
10410
|
+
<code>1000</code>
|
|
10411
|
+
</td>
|
|
10412
|
+
</tr>
|
|
10413
|
+
</tbody>
|
|
10414
|
+
</table>
|
|
9626
10415
|
|
|
9627
|
-
|
|
10416
|
+
</div>
|
|
9628
10417
|
|
|
9629
10418
|
</div>
|
|
9630
10419
|
|
|
@@ -9632,8 +10421,7 @@
|
|
|
9632
10421
|
|
|
9633
10422
|
</div>
|
|
9634
10423
|
|
|
9635
|
-
|
|
9636
|
-
|
|
10424
|
+
</div>
|
|
9637
10425
|
|
|
9638
10426
|
</div>
|
|
9639
10427
|
|
|
@@ -9642,22 +10430,22 @@
|
|
|
9642
10430
|
|
|
9643
10431
|
|
|
9644
10432
|
<h2 id="nautobot.apps.ui.NavContext" class="doc doc-heading">
|
|
9645
|
-
|
|
10433
|
+
<code>nautobot.apps.ui.NavContext</code>
|
|
9646
10434
|
|
|
9647
10435
|
|
|
9648
10436
|
<a href="#nautobot.apps.ui.NavContext" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9649
10437
|
|
|
9650
10438
|
|
|
9651
|
-
|
|
9652
|
-
|
|
9653
|
-
|
|
10439
|
+
<div class="doc doc-contents ">
|
|
10440
|
+
<p class="doc doc-class-bases">
|
|
10441
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code></p>
|
|
10442
|
+
|
|
9654
10443
|
|
|
9655
|
-
|
|
9656
10444
|
<p>Ths class represents a navigation menu tab for new ui.</p>
|
|
9657
10445
|
<p>Groups are each specified as a list of NavGrouping instances.</p>
|
|
9658
10446
|
|
|
9659
10447
|
|
|
9660
|
-
|
|
10448
|
+
|
|
9661
10449
|
|
|
9662
10450
|
<div class="doc doc-children">
|
|
9663
10451
|
|
|
@@ -9672,8 +10460,8 @@
|
|
|
9672
10460
|
|
|
9673
10461
|
|
|
9674
10462
|
<h3 id="nautobot.apps.ui.NavContext.fixed_fields" class="doc doc-heading">
|
|
9675
|
-
|
|
9676
|
-
|
|
10463
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
|
|
10464
|
+
|
|
9677
10465
|
<span class="doc doc-labels">
|
|
9678
10466
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
9679
10467
|
</span>
|
|
@@ -9681,10 +10469,10 @@
|
|
|
9681
10469
|
<a href="#nautobot.apps.ui.NavContext.fixed_fields" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9682
10470
|
|
|
9683
10471
|
|
|
9684
|
-
|
|
9685
|
-
|
|
10472
|
+
<div class="doc doc-contents ">
|
|
10473
|
+
|
|
9686
10474
|
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
9687
|
-
|
|
10475
|
+
</div>
|
|
9688
10476
|
|
|
9689
10477
|
</div>
|
|
9690
10478
|
|
|
@@ -9693,8 +10481,8 @@
|
|
|
9693
10481
|
|
|
9694
10482
|
|
|
9695
10483
|
<h3 id="nautobot.apps.ui.NavContext.initial_dict" class="doc doc-heading">
|
|
9696
|
-
|
|
9697
|
-
|
|
10484
|
+
<code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
|
|
10485
|
+
|
|
9698
10486
|
<span class="doc doc-labels">
|
|
9699
10487
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
9700
10488
|
</span>
|
|
@@ -9702,10 +10490,10 @@
|
|
|
9702
10490
|
<a href="#nautobot.apps.ui.NavContext.initial_dict" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9703
10491
|
|
|
9704
10492
|
|
|
9705
|
-
|
|
9706
|
-
|
|
10493
|
+
<div class="doc doc-contents ">
|
|
10494
|
+
|
|
9707
10495
|
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
9708
|
-
|
|
10496
|
+
</div>
|
|
9709
10497
|
|
|
9710
10498
|
</div>
|
|
9711
10499
|
|
|
@@ -9715,8 +10503,7 @@
|
|
|
9715
10503
|
|
|
9716
10504
|
</div>
|
|
9717
10505
|
|
|
9718
|
-
|
|
9719
|
-
|
|
10506
|
+
</div>
|
|
9720
10507
|
|
|
9721
10508
|
</div>
|
|
9722
10509
|
|
|
@@ -9725,23 +10512,23 @@
|
|
|
9725
10512
|
|
|
9726
10513
|
|
|
9727
10514
|
<h2 id="nautobot.apps.ui.NavGrouping" class="doc doc-heading">
|
|
9728
|
-
|
|
10515
|
+
<code>nautobot.apps.ui.NavGrouping</code>
|
|
9729
10516
|
|
|
9730
10517
|
|
|
9731
10518
|
<a href="#nautobot.apps.ui.NavGrouping" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9732
10519
|
|
|
9733
10520
|
|
|
9734
|
-
|
|
9735
|
-
|
|
9736
|
-
|
|
10521
|
+
<div class="doc doc-contents ">
|
|
10522
|
+
<p class="doc doc-class-bases">
|
|
10523
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
10524
|
+
|
|
9737
10525
|
|
|
9738
|
-
|
|
9739
10526
|
<p>Ths class represents a navigation menu group for the new ui. This is built up from a name and a weight value. The name is
|
|
9740
10527
|
the display text and the weight defines its position in the navigation sidebar.</p>
|
|
9741
10528
|
<p>Items are each specified as a list of NavItem or NavGrouping instances.</p>
|
|
9742
10529
|
|
|
9743
10530
|
|
|
9744
|
-
|
|
10531
|
+
|
|
9745
10532
|
|
|
9746
10533
|
<div class="doc doc-children">
|
|
9747
10534
|
|
|
@@ -9756,8 +10543,8 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9756
10543
|
|
|
9757
10544
|
|
|
9758
10545
|
<h3 id="nautobot.apps.ui.NavGrouping.fixed_fields" class="doc doc-heading">
|
|
9759
|
-
|
|
9760
|
-
|
|
10546
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
|
|
10547
|
+
|
|
9761
10548
|
<span class="doc doc-labels">
|
|
9762
10549
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
9763
10550
|
</span>
|
|
@@ -9765,10 +10552,10 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9765
10552
|
<a href="#nautobot.apps.ui.NavGrouping.fixed_fields" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9766
10553
|
|
|
9767
10554
|
|
|
9768
|
-
|
|
9769
|
-
|
|
10555
|
+
<div class="doc doc-contents ">
|
|
10556
|
+
|
|
9770
10557
|
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
9771
|
-
|
|
10558
|
+
</div>
|
|
9772
10559
|
|
|
9773
10560
|
</div>
|
|
9774
10561
|
|
|
@@ -9777,8 +10564,8 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9777
10564
|
|
|
9778
10565
|
|
|
9779
10566
|
<h3 id="nautobot.apps.ui.NavGrouping.initial_dict" class="doc doc-heading">
|
|
9780
|
-
|
|
9781
|
-
|
|
10567
|
+
<code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
|
|
10568
|
+
|
|
9782
10569
|
<span class="doc doc-labels">
|
|
9783
10570
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
9784
10571
|
</span>
|
|
@@ -9786,10 +10573,10 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9786
10573
|
<a href="#nautobot.apps.ui.NavGrouping.initial_dict" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9787
10574
|
|
|
9788
10575
|
|
|
9789
|
-
|
|
9790
|
-
|
|
10576
|
+
<div class="doc doc-contents ">
|
|
10577
|
+
|
|
9791
10578
|
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
9792
|
-
|
|
10579
|
+
</div>
|
|
9793
10580
|
|
|
9794
10581
|
</div>
|
|
9795
10582
|
|
|
@@ -9799,8 +10586,7 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9799
10586
|
|
|
9800
10587
|
</div>
|
|
9801
10588
|
|
|
9802
|
-
|
|
9803
|
-
|
|
10589
|
+
</div>
|
|
9804
10590
|
|
|
9805
10591
|
</div>
|
|
9806
10592
|
|
|
@@ -9809,22 +10595,22 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9809
10595
|
|
|
9810
10596
|
|
|
9811
10597
|
<h2 id="nautobot.apps.ui.NavItem" class="doc doc-heading">
|
|
9812
|
-
|
|
10598
|
+
<code>nautobot.apps.ui.NavItem</code>
|
|
9813
10599
|
|
|
9814
10600
|
|
|
9815
10601
|
<a href="#nautobot.apps.ui.NavItem" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9816
10602
|
|
|
9817
10603
|
|
|
9818
|
-
|
|
9819
|
-
|
|
9820
|
-
|
|
10604
|
+
<div class="doc doc-contents ">
|
|
10605
|
+
<p class="doc doc-class-bases">
|
|
10606
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
10607
|
+
|
|
9821
10608
|
|
|
9822
|
-
|
|
9823
10609
|
<p>This class represents a navigation menu item for the new ui. This constitutes link and its text.</p>
|
|
9824
10610
|
<p>Links are specified as Django reverse URL strings.</p>
|
|
9825
10611
|
|
|
9826
10612
|
|
|
9827
|
-
|
|
10613
|
+
|
|
9828
10614
|
|
|
9829
10615
|
<div class="doc doc-children">
|
|
9830
10616
|
|
|
@@ -9839,8 +10625,8 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9839
10625
|
|
|
9840
10626
|
|
|
9841
10627
|
<h3 id="nautobot.apps.ui.NavItem.fixed_fields" class="doc doc-heading">
|
|
9842
|
-
|
|
9843
|
-
|
|
10628
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span></code>
|
|
10629
|
+
|
|
9844
10630
|
<span class="doc doc-labels">
|
|
9845
10631
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
9846
10632
|
</span>
|
|
@@ -9848,10 +10634,10 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9848
10634
|
<a href="#nautobot.apps.ui.NavItem.fixed_fields" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9849
10635
|
|
|
9850
10636
|
|
|
9851
|
-
|
|
9852
|
-
|
|
10637
|
+
<div class="doc doc-contents ">
|
|
10638
|
+
|
|
9853
10639
|
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
9854
|
-
|
|
10640
|
+
</div>
|
|
9855
10641
|
|
|
9856
10642
|
</div>
|
|
9857
10643
|
|
|
@@ -9860,8 +10646,8 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9860
10646
|
|
|
9861
10647
|
|
|
9862
10648
|
<h3 id="nautobot.apps.ui.NavItem.initial_dict" class="doc doc-heading">
|
|
9863
|
-
|
|
9864
|
-
|
|
10649
|
+
<code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
|
|
10650
|
+
|
|
9865
10651
|
<span class="doc doc-labels">
|
|
9866
10652
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
9867
10653
|
</span>
|
|
@@ -9869,10 +10655,10 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9869
10655
|
<a href="#nautobot.apps.ui.NavItem.initial_dict" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9870
10656
|
|
|
9871
10657
|
|
|
9872
|
-
|
|
9873
|
-
|
|
10658
|
+
<div class="doc doc-contents ">
|
|
10659
|
+
|
|
9874
10660
|
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
9875
|
-
|
|
10661
|
+
</div>
|
|
9876
10662
|
|
|
9877
10663
|
</div>
|
|
9878
10664
|
|
|
@@ -9882,8 +10668,7 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9882
10668
|
|
|
9883
10669
|
</div>
|
|
9884
10670
|
|
|
9885
|
-
|
|
9886
|
-
|
|
10671
|
+
</div>
|
|
9887
10672
|
|
|
9888
10673
|
</div>
|
|
9889
10674
|
|
|
@@ -9892,24 +10677,23 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9892
10677
|
|
|
9893
10678
|
|
|
9894
10679
|
<h2 id="nautobot.apps.ui.NavMenuAddButton" class="doc doc-heading">
|
|
9895
|
-
|
|
10680
|
+
<code>nautobot.apps.ui.NavMenuAddButton</code>
|
|
9896
10681
|
|
|
9897
10682
|
|
|
9898
10683
|
<a href="#nautobot.apps.ui.NavMenuAddButton" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9899
10684
|
|
|
9900
10685
|
|
|
9901
|
-
|
|
9902
|
-
|
|
9903
|
-
|
|
10686
|
+
<div class="doc doc-contents ">
|
|
10687
|
+
<p class="doc doc-class-bases">
|
|
10688
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuButton" href="#nautobot.apps.ui.NavMenuButton">NavMenuButton</a></code></p>
|
|
10689
|
+
|
|
9904
10690
|
|
|
9905
|
-
|
|
9906
10691
|
<p>Add button subclass.</p>
|
|
9907
10692
|
|
|
9908
10693
|
|
|
9909
|
-
|
|
9910
10694
|
|
|
9911
|
-
<div class="doc doc-children">
|
|
9912
10695
|
|
|
10696
|
+
<div class="doc doc-children">
|
|
9913
10697
|
|
|
9914
10698
|
|
|
9915
10699
|
|
|
@@ -9922,18 +10706,17 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9922
10706
|
<div class="doc doc-object doc-function">
|
|
9923
10707
|
|
|
9924
10708
|
|
|
9925
|
-
|
|
9926
10709
|
<h3 id="nautobot.apps.ui.NavMenuAddButton.__init__" class="doc doc-heading">
|
|
9927
|
-
|
|
10710
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span></code>
|
|
9928
10711
|
|
|
9929
10712
|
<a href="#nautobot.apps.ui.NavMenuAddButton.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9930
10713
|
|
|
9931
10714
|
|
|
9932
|
-
|
|
9933
|
-
|
|
10715
|
+
<div class="doc doc-contents ">
|
|
10716
|
+
|
|
9934
10717
|
<p>Ensure button properties.</p>
|
|
9935
10718
|
|
|
9936
|
-
|
|
10719
|
+
</div>
|
|
9937
10720
|
|
|
9938
10721
|
</div>
|
|
9939
10722
|
|
|
@@ -9941,8 +10724,7 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9941
10724
|
|
|
9942
10725
|
</div>
|
|
9943
10726
|
|
|
9944
|
-
|
|
9945
|
-
|
|
10727
|
+
</div>
|
|
9946
10728
|
|
|
9947
10729
|
</div>
|
|
9948
10730
|
|
|
@@ -9951,21 +10733,21 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9951
10733
|
|
|
9952
10734
|
|
|
9953
10735
|
<h2 id="nautobot.apps.ui.NavMenuBase" class="doc doc-heading">
|
|
9954
|
-
|
|
10736
|
+
<code>nautobot.apps.ui.NavMenuBase</code>
|
|
9955
10737
|
|
|
9956
10738
|
|
|
9957
10739
|
<a href="#nautobot.apps.ui.NavMenuBase" class="headerlink" title="Permanent link">¶</a></h2>
|
|
9958
10740
|
|
|
9959
10741
|
|
|
9960
|
-
|
|
9961
|
-
|
|
9962
|
-
|
|
10742
|
+
<div class="doc doc-contents ">
|
|
10743
|
+
<p class="doc doc-class-bases">
|
|
10744
|
+
Bases: <code><span title="abc.ABC">ABC</span></code></p>
|
|
10745
|
+
|
|
9963
10746
|
|
|
9964
|
-
|
|
9965
10747
|
<p>Base class for navigation classes.</p>
|
|
9966
10748
|
|
|
9967
10749
|
|
|
9968
|
-
|
|
10750
|
+
|
|
9969
10751
|
|
|
9970
10752
|
<div class="doc doc-children">
|
|
9971
10753
|
|
|
@@ -9980,8 +10762,8 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9980
10762
|
|
|
9981
10763
|
|
|
9982
10764
|
<h3 id="nautobot.apps.ui.NavMenuBase.fixed_fields" class="doc doc-heading">
|
|
9983
|
-
|
|
9984
|
-
|
|
10765
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
|
|
10766
|
+
|
|
9985
10767
|
<span class="doc doc-labels">
|
|
9986
10768
|
<small class="doc doc-label doc-label-abstractmethod"><code>abstractmethod</code></small>
|
|
9987
10769
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -9990,10 +10772,10 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
9990
10772
|
<a href="#nautobot.apps.ui.NavMenuBase.fixed_fields" class="headerlink" title="Permanent link">¶</a></h3>
|
|
9991
10773
|
|
|
9992
10774
|
|
|
9993
|
-
|
|
9994
|
-
|
|
10775
|
+
<div class="doc doc-contents ">
|
|
10776
|
+
|
|
9995
10777
|
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
9996
|
-
|
|
10778
|
+
</div>
|
|
9997
10779
|
|
|
9998
10780
|
</div>
|
|
9999
10781
|
|
|
@@ -10002,8 +10784,8 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10002
10784
|
|
|
10003
10785
|
|
|
10004
10786
|
<h3 id="nautobot.apps.ui.NavMenuBase.initial_dict" class="doc doc-heading">
|
|
10005
|
-
|
|
10006
|
-
|
|
10787
|
+
<code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
|
|
10788
|
+
|
|
10007
10789
|
<span class="doc doc-labels">
|
|
10008
10790
|
<small class="doc doc-label doc-label-abstractmethod"><code>abstractmethod</code></small>
|
|
10009
10791
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -10012,10 +10794,10 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10012
10794
|
<a href="#nautobot.apps.ui.NavMenuBase.initial_dict" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10013
10795
|
|
|
10014
10796
|
|
|
10015
|
-
|
|
10016
|
-
|
|
10797
|
+
<div class="doc doc-contents ">
|
|
10798
|
+
|
|
10017
10799
|
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
10018
|
-
|
|
10800
|
+
</div>
|
|
10019
10801
|
|
|
10020
10802
|
</div>
|
|
10021
10803
|
|
|
@@ -10025,8 +10807,7 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10025
10807
|
|
|
10026
10808
|
</div>
|
|
10027
10809
|
|
|
10028
|
-
|
|
10029
|
-
|
|
10810
|
+
</div>
|
|
10030
10811
|
|
|
10031
10812
|
</div>
|
|
10032
10813
|
|
|
@@ -10035,21 +10816,21 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10035
10816
|
|
|
10036
10817
|
|
|
10037
10818
|
<h2 id="nautobot.apps.ui.NavMenuButton" class="doc doc-heading">
|
|
10038
|
-
|
|
10819
|
+
<code>nautobot.apps.ui.NavMenuButton</code>
|
|
10039
10820
|
|
|
10040
10821
|
|
|
10041
10822
|
<a href="#nautobot.apps.ui.NavMenuButton" class="headerlink" title="Permanent link">¶</a></h2>
|
|
10042
10823
|
|
|
10043
10824
|
|
|
10044
|
-
|
|
10045
|
-
|
|
10046
|
-
|
|
10825
|
+
<div class="doc doc-contents ">
|
|
10826
|
+
<p class="doc doc-class-bases">
|
|
10827
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
10828
|
+
|
|
10047
10829
|
|
|
10048
|
-
|
|
10049
10830
|
<p>This class represents a button within a NavMenuItem.</p>
|
|
10050
10831
|
|
|
10051
10832
|
|
|
10052
|
-
|
|
10833
|
+
|
|
10053
10834
|
|
|
10054
10835
|
<div class="doc doc-children">
|
|
10055
10836
|
|
|
@@ -10064,8 +10845,8 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10064
10845
|
|
|
10065
10846
|
|
|
10066
10847
|
<h3 id="nautobot.apps.ui.NavMenuButton.fixed_fields" class="doc doc-heading">
|
|
10067
|
-
|
|
10068
|
-
|
|
10848
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
|
|
10849
|
+
|
|
10069
10850
|
<span class="doc doc-labels">
|
|
10070
10851
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
10071
10852
|
</span>
|
|
@@ -10073,10 +10854,10 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10073
10854
|
<a href="#nautobot.apps.ui.NavMenuButton.fixed_fields" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10074
10855
|
|
|
10075
10856
|
|
|
10076
|
-
|
|
10077
|
-
|
|
10857
|
+
<div class="doc doc-contents ">
|
|
10858
|
+
|
|
10078
10859
|
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
10079
|
-
|
|
10860
|
+
</div>
|
|
10080
10861
|
|
|
10081
10862
|
</div>
|
|
10082
10863
|
|
|
@@ -10085,8 +10866,8 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10085
10866
|
|
|
10086
10867
|
|
|
10087
10868
|
<h3 id="nautobot.apps.ui.NavMenuButton.initial_dict" class="doc doc-heading">
|
|
10088
|
-
|
|
10089
|
-
|
|
10869
|
+
<code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
|
|
10870
|
+
|
|
10090
10871
|
<span class="doc doc-labels">
|
|
10091
10872
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
10092
10873
|
</span>
|
|
@@ -10094,131 +10875,128 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10094
10875
|
<a href="#nautobot.apps.ui.NavMenuButton.initial_dict" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10095
10876
|
|
|
10096
10877
|
|
|
10097
|
-
|
|
10098
|
-
|
|
10878
|
+
<div class="doc doc-contents ">
|
|
10879
|
+
|
|
10099
10880
|
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
10100
|
-
|
|
10881
|
+
</div>
|
|
10101
10882
|
|
|
10102
10883
|
</div>
|
|
10103
10884
|
|
|
10104
10885
|
|
|
10105
10886
|
|
|
10106
|
-
|
|
10107
10887
|
<div class="doc doc-object doc-function">
|
|
10108
10888
|
|
|
10109
10889
|
|
|
10110
|
-
|
|
10111
10890
|
<h3 id="nautobot.apps.ui.NavMenuButton.__init__" class="doc doc-heading">
|
|
10112
|
-
|
|
10891
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">link</span><span class="p">,</span> <span class="n">title</span><span class="p">,</span> <span class="n">icon_class</span><span class="p">,</span> <span class="n">button_class</span><span class="o">=</span><span class="n">ButtonActionColorChoices</span><span class="o">.</span><span class="n">DEFAULT</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
|
|
10113
10892
|
|
|
10114
10893
|
<a href="#nautobot.apps.ui.NavMenuButton.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10115
10894
|
|
|
10116
10895
|
|
|
10117
|
-
|
|
10118
|
-
|
|
10119
|
-
<p>Ensure button properties.</p>
|
|
10896
|
+
<div class="doc doc-contents ">
|
|
10120
10897
|
|
|
10898
|
+
<p>Ensure button properties.</p>
|
|
10121
10899
|
|
|
10122
10900
|
|
|
10123
|
-
|
|
10124
|
-
|
|
10125
|
-
|
|
10126
|
-
<tr>
|
|
10127
|
-
<th>Name</th>
|
|
10128
|
-
<th>Type</th>
|
|
10129
|
-
<th>Description</th>
|
|
10130
|
-
<th>Default</th>
|
|
10131
|
-
</tr>
|
|
10132
|
-
</thead>
|
|
10133
|
-
<tbody>
|
|
10134
|
-
<tr>
|
|
10135
|
-
<td><code>link</code></td>
|
|
10136
|
-
<td>
|
|
10137
|
-
<code>str</code>
|
|
10138
|
-
</td>
|
|
10139
|
-
<td>
|
|
10140
|
-
<div class="doc-md-description">
|
|
10141
|
-
<p>The link to be used for this button.</p>
|
|
10142
|
-
</div>
|
|
10143
|
-
</td>
|
|
10144
|
-
<td>
|
|
10145
|
-
<em>required</em>
|
|
10146
|
-
</td>
|
|
10147
|
-
</tr>
|
|
10148
|
-
<tr>
|
|
10149
|
-
<td><code>title</code></td>
|
|
10150
|
-
<td>
|
|
10151
|
-
<code>str</code>
|
|
10152
|
-
</td>
|
|
10153
|
-
<td>
|
|
10154
|
-
<div class="doc-md-description">
|
|
10155
|
-
<p>The title of the button.</p>
|
|
10156
|
-
</div>
|
|
10157
|
-
</td>
|
|
10158
|
-
<td>
|
|
10159
|
-
<em>required</em>
|
|
10160
|
-
</td>
|
|
10161
|
-
</tr>
|
|
10162
|
-
<tr>
|
|
10163
|
-
<td><code>icon_class</code></td>
|
|
10164
|
-
<td>
|
|
10165
|
-
<code>str</code>
|
|
10166
|
-
</td>
|
|
10167
|
-
<td>
|
|
10168
|
-
<div class="doc-md-description">
|
|
10169
|
-
<p>The icon class to be used as the icon for the start of the button.</p>
|
|
10170
|
-
</div>
|
|
10171
|
-
</td>
|
|
10172
|
-
<td>
|
|
10173
|
-
<em>required</em>
|
|
10174
|
-
</td>
|
|
10175
|
-
</tr>
|
|
10176
|
-
<tr>
|
|
10177
|
-
<td><code>button_class</code></td>
|
|
10178
|
-
<td>
|
|
10179
|
-
<code>str</code>
|
|
10180
|
-
</td>
|
|
10181
|
-
<td>
|
|
10182
|
-
<div class="doc-md-description">
|
|
10183
|
-
<p>The button class defines to be used to define the style of the button.</p>
|
|
10184
|
-
</div>
|
|
10185
|
-
</td>
|
|
10186
|
-
<td>
|
|
10187
|
-
<code><span title="nautobot.core.choices.ButtonActionColorChoices.DEFAULT">DEFAULT</span></code>
|
|
10188
|
-
</td>
|
|
10189
|
-
</tr>
|
|
10901
|
+
<p><span class="doc-section-title">Parameters:</span></p>
|
|
10902
|
+
<table>
|
|
10903
|
+
<thead>
|
|
10190
10904
|
<tr>
|
|
10191
|
-
<
|
|
10192
|
-
<
|
|
10193
|
-
|
|
10194
|
-
</
|
|
10195
|
-
<td>
|
|
10196
|
-
<div class="doc-md-description">
|
|
10197
|
-
<p>The permissions required to view this button.</p>
|
|
10198
|
-
</div>
|
|
10199
|
-
</td>
|
|
10200
|
-
<td>
|
|
10201
|
-
<code>None</code>
|
|
10202
|
-
</td>
|
|
10203
|
-
</tr>
|
|
10204
|
-
<tr>
|
|
10205
|
-
<td><code>weight</code></td>
|
|
10206
|
-
<td>
|
|
10207
|
-
<code>int</code>
|
|
10208
|
-
</td>
|
|
10209
|
-
<td>
|
|
10210
|
-
<div class="doc-md-description">
|
|
10211
|
-
<p>The weight of this button.</p>
|
|
10212
|
-
</div>
|
|
10213
|
-
</td>
|
|
10214
|
-
<td>
|
|
10215
|
-
<code>1000</code>
|
|
10216
|
-
</td>
|
|
10905
|
+
<th>Name</th>
|
|
10906
|
+
<th>Type</th>
|
|
10907
|
+
<th>Description</th>
|
|
10908
|
+
<th>Default</th>
|
|
10217
10909
|
</tr>
|
|
10218
|
-
|
|
10219
|
-
|
|
10910
|
+
</thead>
|
|
10911
|
+
<tbody>
|
|
10912
|
+
<tr class="doc-section-item">
|
|
10913
|
+
<td><code>link</code></td>
|
|
10914
|
+
<td>
|
|
10915
|
+
<code>str</code>
|
|
10916
|
+
</td>
|
|
10917
|
+
<td>
|
|
10918
|
+
<div class="doc-md-description">
|
|
10919
|
+
<p>The link to be used for this button.</p>
|
|
10920
|
+
</div>
|
|
10921
|
+
</td>
|
|
10922
|
+
<td>
|
|
10923
|
+
<em>required</em>
|
|
10924
|
+
</td>
|
|
10925
|
+
</tr>
|
|
10926
|
+
<tr class="doc-section-item">
|
|
10927
|
+
<td><code>title</code></td>
|
|
10928
|
+
<td>
|
|
10929
|
+
<code>str</code>
|
|
10930
|
+
</td>
|
|
10931
|
+
<td>
|
|
10932
|
+
<div class="doc-md-description">
|
|
10933
|
+
<p>The title of the button.</p>
|
|
10934
|
+
</div>
|
|
10935
|
+
</td>
|
|
10936
|
+
<td>
|
|
10937
|
+
<em>required</em>
|
|
10938
|
+
</td>
|
|
10939
|
+
</tr>
|
|
10940
|
+
<tr class="doc-section-item">
|
|
10941
|
+
<td><code>icon_class</code></td>
|
|
10942
|
+
<td>
|
|
10943
|
+
<code>str</code>
|
|
10944
|
+
</td>
|
|
10945
|
+
<td>
|
|
10946
|
+
<div class="doc-md-description">
|
|
10947
|
+
<p>The icon class to be used as the icon for the start of the button.</p>
|
|
10948
|
+
</div>
|
|
10949
|
+
</td>
|
|
10950
|
+
<td>
|
|
10951
|
+
<em>required</em>
|
|
10952
|
+
</td>
|
|
10953
|
+
</tr>
|
|
10954
|
+
<tr class="doc-section-item">
|
|
10955
|
+
<td><code>button_class</code></td>
|
|
10956
|
+
<td>
|
|
10957
|
+
<code>str</code>
|
|
10958
|
+
</td>
|
|
10959
|
+
<td>
|
|
10960
|
+
<div class="doc-md-description">
|
|
10961
|
+
<p>The button class defines to be used to define the style of the button.</p>
|
|
10962
|
+
</div>
|
|
10963
|
+
</td>
|
|
10964
|
+
<td>
|
|
10965
|
+
<code><span title="nautobot.core.choices.ButtonActionColorChoices.DEFAULT">DEFAULT</span></code>
|
|
10966
|
+
</td>
|
|
10967
|
+
</tr>
|
|
10968
|
+
<tr class="doc-section-item">
|
|
10969
|
+
<td><code>permissions</code></td>
|
|
10970
|
+
<td>
|
|
10971
|
+
<code>list</code>
|
|
10972
|
+
</td>
|
|
10973
|
+
<td>
|
|
10974
|
+
<div class="doc-md-description">
|
|
10975
|
+
<p>The permissions required to view this button.</p>
|
|
10976
|
+
</div>
|
|
10977
|
+
</td>
|
|
10978
|
+
<td>
|
|
10979
|
+
<code>None</code>
|
|
10980
|
+
</td>
|
|
10981
|
+
</tr>
|
|
10982
|
+
<tr class="doc-section-item">
|
|
10983
|
+
<td><code>weight</code></td>
|
|
10984
|
+
<td>
|
|
10985
|
+
<code>int</code>
|
|
10986
|
+
</td>
|
|
10987
|
+
<td>
|
|
10988
|
+
<div class="doc-md-description">
|
|
10989
|
+
<p>The weight of this button.</p>
|
|
10990
|
+
</div>
|
|
10991
|
+
</td>
|
|
10992
|
+
<td>
|
|
10993
|
+
<code>1000</code>
|
|
10994
|
+
</td>
|
|
10995
|
+
</tr>
|
|
10996
|
+
</tbody>
|
|
10997
|
+
</table>
|
|
10220
10998
|
|
|
10221
|
-
|
|
10999
|
+
</div>
|
|
10222
11000
|
|
|
10223
11001
|
</div>
|
|
10224
11002
|
|
|
@@ -10226,8 +11004,7 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10226
11004
|
|
|
10227
11005
|
</div>
|
|
10228
11006
|
|
|
10229
|
-
|
|
10230
|
-
|
|
11007
|
+
</div>
|
|
10231
11008
|
|
|
10232
11009
|
</div>
|
|
10233
11010
|
|
|
@@ -10236,23 +11013,23 @@ the display text and the weight defines its position in the navigation sidebar.<
|
|
|
10236
11013
|
|
|
10237
11014
|
|
|
10238
11015
|
<h2 id="nautobot.apps.ui.NavMenuGroup" class="doc doc-heading">
|
|
10239
|
-
|
|
11016
|
+
<code>nautobot.apps.ui.NavMenuGroup</code>
|
|
10240
11017
|
|
|
10241
11018
|
|
|
10242
11019
|
<a href="#nautobot.apps.ui.NavMenuGroup" class="headerlink" title="Permanent link">¶</a></h2>
|
|
10243
11020
|
|
|
10244
11021
|
|
|
10245
|
-
|
|
10246
|
-
|
|
10247
|
-
|
|
11022
|
+
<div class="doc doc-contents ">
|
|
11023
|
+
<p class="doc doc-class-bases">
|
|
11024
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
11025
|
+
|
|
10248
11026
|
|
|
10249
|
-
|
|
10250
11027
|
<p>Ths class represents a navigation menu group. This is built up from a name and a weight value. The name is
|
|
10251
11028
|
the display text and the weight defines its position in the navbar.</p>
|
|
10252
11029
|
<p>Items are each specified as a list of NavMenuItem instances.</p>
|
|
10253
11030
|
|
|
10254
11031
|
|
|
10255
|
-
|
|
11032
|
+
|
|
10256
11033
|
|
|
10257
11034
|
<div class="doc doc-children">
|
|
10258
11035
|
|
|
@@ -10267,8 +11044,8 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10267
11044
|
|
|
10268
11045
|
|
|
10269
11046
|
<h3 id="nautobot.apps.ui.NavMenuGroup.fixed_fields" class="doc doc-heading">
|
|
10270
|
-
|
|
10271
|
-
|
|
11047
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
|
|
11048
|
+
|
|
10272
11049
|
<span class="doc doc-labels">
|
|
10273
11050
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
10274
11051
|
</span>
|
|
@@ -10276,10 +11053,10 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10276
11053
|
<a href="#nautobot.apps.ui.NavMenuGroup.fixed_fields" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10277
11054
|
|
|
10278
11055
|
|
|
10279
|
-
|
|
10280
|
-
|
|
11056
|
+
<div class="doc doc-contents ">
|
|
11057
|
+
|
|
10281
11058
|
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
10282
|
-
|
|
11059
|
+
</div>
|
|
10283
11060
|
|
|
10284
11061
|
</div>
|
|
10285
11062
|
|
|
@@ -10288,8 +11065,8 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10288
11065
|
|
|
10289
11066
|
|
|
10290
11067
|
<h3 id="nautobot.apps.ui.NavMenuGroup.initial_dict" class="doc doc-heading">
|
|
10291
|
-
|
|
10292
|
-
|
|
11068
|
+
<code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
|
|
11069
|
+
|
|
10293
11070
|
<span class="doc doc-labels">
|
|
10294
11071
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
10295
11072
|
</span>
|
|
@@ -10297,89 +11074,86 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10297
11074
|
<a href="#nautobot.apps.ui.NavMenuGroup.initial_dict" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10298
11075
|
|
|
10299
11076
|
|
|
10300
|
-
|
|
10301
|
-
|
|
11077
|
+
<div class="doc doc-contents ">
|
|
11078
|
+
|
|
10302
11079
|
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
10303
|
-
|
|
11080
|
+
</div>
|
|
10304
11081
|
|
|
10305
11082
|
</div>
|
|
10306
11083
|
|
|
10307
11084
|
|
|
10308
11085
|
|
|
10309
|
-
|
|
10310
11086
|
<div class="doc doc-object doc-function">
|
|
10311
11087
|
|
|
10312
11088
|
|
|
10313
|
-
|
|
10314
11089
|
<h3 id="nautobot.apps.ui.NavMenuGroup.__init__" class="doc doc-heading">
|
|
10315
|
-
|
|
11090
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
|
|
10316
11091
|
|
|
10317
11092
|
<a href="#nautobot.apps.ui.NavMenuGroup.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10318
11093
|
|
|
10319
11094
|
|
|
10320
|
-
|
|
10321
|
-
|
|
10322
|
-
<p>Ensure group properties.</p>
|
|
11095
|
+
<div class="doc doc-contents ">
|
|
10323
11096
|
|
|
11097
|
+
<p>Ensure group properties.</p>
|
|
10324
11098
|
|
|
10325
11099
|
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
|
|
10329
|
-
<tr>
|
|
10330
|
-
<th>Name</th>
|
|
10331
|
-
<th>Type</th>
|
|
10332
|
-
<th>Description</th>
|
|
10333
|
-
<th>Default</th>
|
|
10334
|
-
</tr>
|
|
10335
|
-
</thead>
|
|
10336
|
-
<tbody>
|
|
11100
|
+
<p><span class="doc-section-title">Parameters:</span></p>
|
|
11101
|
+
<table>
|
|
11102
|
+
<thead>
|
|
10337
11103
|
<tr>
|
|
10338
|
-
<
|
|
10339
|
-
<
|
|
10340
|
-
|
|
10341
|
-
</
|
|
10342
|
-
<td>
|
|
10343
|
-
<div class="doc-md-description">
|
|
10344
|
-
<p>The name of the group.</p>
|
|
10345
|
-
</div>
|
|
10346
|
-
</td>
|
|
10347
|
-
<td>
|
|
10348
|
-
<em>required</em>
|
|
10349
|
-
</td>
|
|
10350
|
-
</tr>
|
|
10351
|
-
<tr>
|
|
10352
|
-
<td><code>items</code></td>
|
|
10353
|
-
<td>
|
|
10354
|
-
<code>list</code>
|
|
10355
|
-
</td>
|
|
10356
|
-
<td>
|
|
10357
|
-
<div class="doc-md-description">
|
|
10358
|
-
<p>List of items to be rendered in this group.</p>
|
|
10359
|
-
</div>
|
|
10360
|
-
</td>
|
|
10361
|
-
<td>
|
|
10362
|
-
<code>None</code>
|
|
10363
|
-
</td>
|
|
11104
|
+
<th>Name</th>
|
|
11105
|
+
<th>Type</th>
|
|
11106
|
+
<th>Description</th>
|
|
11107
|
+
<th>Default</th>
|
|
10364
11108
|
</tr>
|
|
10365
|
-
|
|
10366
|
-
|
|
10367
|
-
<
|
|
10368
|
-
|
|
10369
|
-
|
|
10370
|
-
|
|
10371
|
-
|
|
10372
|
-
|
|
10373
|
-
|
|
10374
|
-
|
|
10375
|
-
|
|
10376
|
-
|
|
10377
|
-
|
|
10378
|
-
|
|
10379
|
-
|
|
10380
|
-
|
|
11109
|
+
</thead>
|
|
11110
|
+
<tbody>
|
|
11111
|
+
<tr class="doc-section-item">
|
|
11112
|
+
<td><code>name</code></td>
|
|
11113
|
+
<td>
|
|
11114
|
+
<code>str</code>
|
|
11115
|
+
</td>
|
|
11116
|
+
<td>
|
|
11117
|
+
<div class="doc-md-description">
|
|
11118
|
+
<p>The name of the group.</p>
|
|
11119
|
+
</div>
|
|
11120
|
+
</td>
|
|
11121
|
+
<td>
|
|
11122
|
+
<em>required</em>
|
|
11123
|
+
</td>
|
|
11124
|
+
</tr>
|
|
11125
|
+
<tr class="doc-section-item">
|
|
11126
|
+
<td><code>items</code></td>
|
|
11127
|
+
<td>
|
|
11128
|
+
<code>list</code>
|
|
11129
|
+
</td>
|
|
11130
|
+
<td>
|
|
11131
|
+
<div class="doc-md-description">
|
|
11132
|
+
<p>List of items to be rendered in this group.</p>
|
|
11133
|
+
</div>
|
|
11134
|
+
</td>
|
|
11135
|
+
<td>
|
|
11136
|
+
<code>None</code>
|
|
11137
|
+
</td>
|
|
11138
|
+
</tr>
|
|
11139
|
+
<tr class="doc-section-item">
|
|
11140
|
+
<td><code>weight</code></td>
|
|
11141
|
+
<td>
|
|
11142
|
+
<code>int</code>
|
|
11143
|
+
</td>
|
|
11144
|
+
<td>
|
|
11145
|
+
<div class="doc-md-description">
|
|
11146
|
+
<p>The weight of this group.</p>
|
|
11147
|
+
</div>
|
|
11148
|
+
</td>
|
|
11149
|
+
<td>
|
|
11150
|
+
<code>1000</code>
|
|
11151
|
+
</td>
|
|
11152
|
+
</tr>
|
|
11153
|
+
</tbody>
|
|
11154
|
+
</table>
|
|
10381
11155
|
|
|
10382
|
-
|
|
11156
|
+
</div>
|
|
10383
11157
|
|
|
10384
11158
|
</div>
|
|
10385
11159
|
|
|
@@ -10387,8 +11161,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10387
11161
|
|
|
10388
11162
|
</div>
|
|
10389
11163
|
|
|
10390
|
-
|
|
10391
|
-
|
|
11164
|
+
</div>
|
|
10392
11165
|
|
|
10393
11166
|
</div>
|
|
10394
11167
|
|
|
@@ -10397,24 +11170,23 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10397
11170
|
|
|
10398
11171
|
|
|
10399
11172
|
<h2 id="nautobot.apps.ui.NavMenuImportButton" class="doc doc-heading">
|
|
10400
|
-
|
|
11173
|
+
<code>nautobot.apps.ui.NavMenuImportButton</code>
|
|
10401
11174
|
|
|
10402
11175
|
|
|
10403
11176
|
<a href="#nautobot.apps.ui.NavMenuImportButton" class="headerlink" title="Permanent link">¶</a></h2>
|
|
10404
11177
|
|
|
10405
11178
|
|
|
10406
|
-
|
|
10407
|
-
|
|
10408
|
-
|
|
11179
|
+
<div class="doc doc-contents ">
|
|
11180
|
+
<p class="doc doc-class-bases">
|
|
11181
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuButton" href="#nautobot.apps.ui.NavMenuButton">NavMenuButton</a></code></p>
|
|
11182
|
+
|
|
10409
11183
|
|
|
10410
|
-
|
|
10411
11184
|
<p>Import button subclass.</p>
|
|
10412
11185
|
|
|
10413
11186
|
|
|
10414
|
-
|
|
10415
11187
|
|
|
10416
|
-
<div class="doc doc-children">
|
|
10417
11188
|
|
|
11189
|
+
<div class="doc doc-children">
|
|
10418
11190
|
|
|
10419
11191
|
|
|
10420
11192
|
|
|
@@ -10427,18 +11199,17 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10427
11199
|
<div class="doc doc-object doc-function">
|
|
10428
11200
|
|
|
10429
11201
|
|
|
10430
|
-
|
|
10431
11202
|
<h3 id="nautobot.apps.ui.NavMenuImportButton.__init__" class="doc doc-heading">
|
|
10432
|
-
|
|
11203
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span></code>
|
|
10433
11204
|
|
|
10434
11205
|
<a href="#nautobot.apps.ui.NavMenuImportButton.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10435
11206
|
|
|
10436
11207
|
|
|
10437
|
-
|
|
10438
|
-
|
|
11208
|
+
<div class="doc doc-contents ">
|
|
11209
|
+
|
|
10439
11210
|
<p>Ensure button properties.</p>
|
|
10440
11211
|
|
|
10441
|
-
|
|
11212
|
+
</div>
|
|
10442
11213
|
|
|
10443
11214
|
</div>
|
|
10444
11215
|
|
|
@@ -10446,8 +11217,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10446
11217
|
|
|
10447
11218
|
</div>
|
|
10448
11219
|
|
|
10449
|
-
|
|
10450
|
-
|
|
11220
|
+
</div>
|
|
10451
11221
|
|
|
10452
11222
|
</div>
|
|
10453
11223
|
|
|
@@ -10456,24 +11226,24 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10456
11226
|
|
|
10457
11227
|
|
|
10458
11228
|
<h2 id="nautobot.apps.ui.NavMenuItem" class="doc doc-heading">
|
|
10459
|
-
|
|
11229
|
+
<code>nautobot.apps.ui.NavMenuItem</code>
|
|
10460
11230
|
|
|
10461
11231
|
|
|
10462
11232
|
<a href="#nautobot.apps.ui.NavMenuItem" class="headerlink" title="Permanent link">¶</a></h2>
|
|
10463
11233
|
|
|
10464
11234
|
|
|
10465
|
-
|
|
10466
|
-
|
|
10467
|
-
|
|
11235
|
+
<div class="doc doc-contents ">
|
|
11236
|
+
<p class="doc doc-class-bases">
|
|
11237
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
11238
|
+
|
|
10468
11239
|
|
|
10469
|
-
|
|
10470
11240
|
<p>This class represents a navigation menu item. This constitutes primary link and its text, but also allows for
|
|
10471
11241
|
specifying additional link buttons that appear to the right of the item in the nav menu.</p>
|
|
10472
11242
|
<p>Links are specified as Django reverse URL strings.
|
|
10473
11243
|
Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
10474
11244
|
|
|
10475
11245
|
|
|
10476
|
-
|
|
11246
|
+
|
|
10477
11247
|
|
|
10478
11248
|
<div class="doc doc-children">
|
|
10479
11249
|
|
|
@@ -10488,8 +11258,8 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
10488
11258
|
|
|
10489
11259
|
|
|
10490
11260
|
<h3 id="nautobot.apps.ui.NavMenuItem.fixed_fields" class="doc doc-heading">
|
|
10491
|
-
|
|
10492
|
-
|
|
11261
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
|
|
11262
|
+
|
|
10493
11263
|
<span class="doc doc-labels">
|
|
10494
11264
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
10495
11265
|
</span>
|
|
@@ -10497,10 +11267,10 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
10497
11267
|
<a href="#nautobot.apps.ui.NavMenuItem.fixed_fields" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10498
11268
|
|
|
10499
11269
|
|
|
10500
|
-
|
|
10501
|
-
|
|
11270
|
+
<div class="doc doc-contents ">
|
|
11271
|
+
|
|
10502
11272
|
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
10503
|
-
|
|
11273
|
+
</div>
|
|
10504
11274
|
|
|
10505
11275
|
</div>
|
|
10506
11276
|
|
|
@@ -10509,8 +11279,8 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
10509
11279
|
|
|
10510
11280
|
|
|
10511
11281
|
<h3 id="nautobot.apps.ui.NavMenuItem.initial_dict" class="doc doc-heading">
|
|
10512
|
-
|
|
10513
|
-
|
|
11282
|
+
<code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
|
|
11283
|
+
|
|
10514
11284
|
<span class="doc doc-labels">
|
|
10515
11285
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
10516
11286
|
</span>
|
|
@@ -10518,145 +11288,142 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
10518
11288
|
<a href="#nautobot.apps.ui.NavMenuItem.initial_dict" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10519
11289
|
|
|
10520
11290
|
|
|
10521
|
-
|
|
10522
|
-
|
|
11291
|
+
<div class="doc doc-contents ">
|
|
11292
|
+
|
|
10523
11293
|
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
10524
|
-
|
|
11294
|
+
</div>
|
|
10525
11295
|
|
|
10526
11296
|
</div>
|
|
10527
11297
|
|
|
10528
11298
|
|
|
10529
11299
|
|
|
10530
|
-
|
|
10531
11300
|
<div class="doc doc-object doc-function">
|
|
10532
11301
|
|
|
10533
11302
|
|
|
10534
|
-
|
|
10535
11303
|
<h3 id="nautobot.apps.ui.NavMenuItem.__init__" class="doc doc-heading">
|
|
10536
|
-
|
|
11304
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">link</span><span class="p">,</span> <span class="n">name</span><span class="p">,</span> <span class="n">args</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">kwargs</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">buttons</span><span class="o">=</span><span class="p">(),</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
|
|
10537
11305
|
|
|
10538
11306
|
<a href="#nautobot.apps.ui.NavMenuItem.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10539
11307
|
|
|
10540
11308
|
|
|
10541
|
-
|
|
10542
|
-
|
|
10543
|
-
<p>Ensure item properties.</p>
|
|
11309
|
+
<div class="doc doc-contents ">
|
|
10544
11310
|
|
|
11311
|
+
<p>Ensure item properties.</p>
|
|
10545
11312
|
|
|
10546
11313
|
|
|
10547
|
-
|
|
10548
|
-
|
|
10549
|
-
|
|
10550
|
-
<tr>
|
|
10551
|
-
<th>Name</th>
|
|
10552
|
-
<th>Type</th>
|
|
10553
|
-
<th>Description</th>
|
|
10554
|
-
<th>Default</th>
|
|
10555
|
-
</tr>
|
|
10556
|
-
</thead>
|
|
10557
|
-
<tbody>
|
|
10558
|
-
<tr>
|
|
10559
|
-
<td><code>link</code></td>
|
|
10560
|
-
<td>
|
|
10561
|
-
<code>str</code>
|
|
10562
|
-
</td>
|
|
10563
|
-
<td>
|
|
10564
|
-
<div class="doc-md-description">
|
|
10565
|
-
<p>The link to be used for this item.</p>
|
|
10566
|
-
</div>
|
|
10567
|
-
</td>
|
|
10568
|
-
<td>
|
|
10569
|
-
<em>required</em>
|
|
10570
|
-
</td>
|
|
10571
|
-
</tr>
|
|
10572
|
-
<tr>
|
|
10573
|
-
<td><code>name</code></td>
|
|
10574
|
-
<td>
|
|
10575
|
-
<code>str</code>
|
|
10576
|
-
</td>
|
|
10577
|
-
<td>
|
|
10578
|
-
<div class="doc-md-description">
|
|
10579
|
-
<p>The name of the item.</p>
|
|
10580
|
-
</div>
|
|
10581
|
-
</td>
|
|
10582
|
-
<td>
|
|
10583
|
-
<em>required</em>
|
|
10584
|
-
</td>
|
|
10585
|
-
</tr>
|
|
10586
|
-
<tr>
|
|
10587
|
-
<td><code>args</code></td>
|
|
10588
|
-
<td>
|
|
10589
|
-
<code>list</code>
|
|
10590
|
-
</td>
|
|
10591
|
-
<td>
|
|
10592
|
-
<div class="doc-md-description">
|
|
10593
|
-
<p>Arguments that are being passed to the url with reverse() method</p>
|
|
10594
|
-
</div>
|
|
10595
|
-
</td>
|
|
10596
|
-
<td>
|
|
10597
|
-
<code>None</code>
|
|
10598
|
-
</td>
|
|
10599
|
-
</tr>
|
|
10600
|
-
<tr>
|
|
10601
|
-
<td><code>kwargs</code></td>
|
|
10602
|
-
<td>
|
|
10603
|
-
<code>dict</code>
|
|
10604
|
-
</td>
|
|
10605
|
-
<td>
|
|
10606
|
-
<div class="doc-md-description">
|
|
10607
|
-
<p>Keyword arguments are are being passed to the url with reverse() method</p>
|
|
10608
|
-
</div>
|
|
10609
|
-
</td>
|
|
10610
|
-
<td>
|
|
10611
|
-
<code>None</code>
|
|
10612
|
-
</td>
|
|
10613
|
-
</tr>
|
|
10614
|
-
<tr>
|
|
10615
|
-
<td><code>permissions</code></td>
|
|
10616
|
-
<td>
|
|
10617
|
-
<code>list</code>
|
|
10618
|
-
</td>
|
|
10619
|
-
<td>
|
|
10620
|
-
<div class="doc-md-description">
|
|
10621
|
-
<p>The permissions required to view this item.</p>
|
|
10622
|
-
</div>
|
|
10623
|
-
</td>
|
|
10624
|
-
<td>
|
|
10625
|
-
<code>None</code>
|
|
10626
|
-
</td>
|
|
10627
|
-
</tr>
|
|
11314
|
+
<p><span class="doc-section-title">Parameters:</span></p>
|
|
11315
|
+
<table>
|
|
11316
|
+
<thead>
|
|
10628
11317
|
<tr>
|
|
10629
|
-
<
|
|
10630
|
-
<
|
|
10631
|
-
|
|
10632
|
-
</
|
|
10633
|
-
<td>
|
|
10634
|
-
<div class="doc-md-description">
|
|
10635
|
-
<p>List of buttons to be rendered in this item.</p>
|
|
10636
|
-
</div>
|
|
10637
|
-
</td>
|
|
10638
|
-
<td>
|
|
10639
|
-
<code>()</code>
|
|
10640
|
-
</td>
|
|
10641
|
-
</tr>
|
|
10642
|
-
<tr>
|
|
10643
|
-
<td><code>weight</code></td>
|
|
10644
|
-
<td>
|
|
10645
|
-
<code>int</code>
|
|
10646
|
-
</td>
|
|
10647
|
-
<td>
|
|
10648
|
-
<div class="doc-md-description">
|
|
10649
|
-
<p>The weight of this item.</p>
|
|
10650
|
-
</div>
|
|
10651
|
-
</td>
|
|
10652
|
-
<td>
|
|
10653
|
-
<code>1000</code>
|
|
10654
|
-
</td>
|
|
11318
|
+
<th>Name</th>
|
|
11319
|
+
<th>Type</th>
|
|
11320
|
+
<th>Description</th>
|
|
11321
|
+
<th>Default</th>
|
|
10655
11322
|
</tr>
|
|
10656
|
-
|
|
10657
|
-
|
|
11323
|
+
</thead>
|
|
11324
|
+
<tbody>
|
|
11325
|
+
<tr class="doc-section-item">
|
|
11326
|
+
<td><code>link</code></td>
|
|
11327
|
+
<td>
|
|
11328
|
+
<code>str</code>
|
|
11329
|
+
</td>
|
|
11330
|
+
<td>
|
|
11331
|
+
<div class="doc-md-description">
|
|
11332
|
+
<p>The link to be used for this item.</p>
|
|
11333
|
+
</div>
|
|
11334
|
+
</td>
|
|
11335
|
+
<td>
|
|
11336
|
+
<em>required</em>
|
|
11337
|
+
</td>
|
|
11338
|
+
</tr>
|
|
11339
|
+
<tr class="doc-section-item">
|
|
11340
|
+
<td><code>name</code></td>
|
|
11341
|
+
<td>
|
|
11342
|
+
<code>str</code>
|
|
11343
|
+
</td>
|
|
11344
|
+
<td>
|
|
11345
|
+
<div class="doc-md-description">
|
|
11346
|
+
<p>The name of the item.</p>
|
|
11347
|
+
</div>
|
|
11348
|
+
</td>
|
|
11349
|
+
<td>
|
|
11350
|
+
<em>required</em>
|
|
11351
|
+
</td>
|
|
11352
|
+
</tr>
|
|
11353
|
+
<tr class="doc-section-item">
|
|
11354
|
+
<td><code>args</code></td>
|
|
11355
|
+
<td>
|
|
11356
|
+
<code>list</code>
|
|
11357
|
+
</td>
|
|
11358
|
+
<td>
|
|
11359
|
+
<div class="doc-md-description">
|
|
11360
|
+
<p>Arguments that are being passed to the url with reverse() method</p>
|
|
11361
|
+
</div>
|
|
11362
|
+
</td>
|
|
11363
|
+
<td>
|
|
11364
|
+
<code>None</code>
|
|
11365
|
+
</td>
|
|
11366
|
+
</tr>
|
|
11367
|
+
<tr class="doc-section-item">
|
|
11368
|
+
<td><code>kwargs</code></td>
|
|
11369
|
+
<td>
|
|
11370
|
+
<code>dict</code>
|
|
11371
|
+
</td>
|
|
11372
|
+
<td>
|
|
11373
|
+
<div class="doc-md-description">
|
|
11374
|
+
<p>Keyword arguments are are being passed to the url with reverse() method</p>
|
|
11375
|
+
</div>
|
|
11376
|
+
</td>
|
|
11377
|
+
<td>
|
|
11378
|
+
<code>None</code>
|
|
11379
|
+
</td>
|
|
11380
|
+
</tr>
|
|
11381
|
+
<tr class="doc-section-item">
|
|
11382
|
+
<td><code>permissions</code></td>
|
|
11383
|
+
<td>
|
|
11384
|
+
<code>list</code>
|
|
11385
|
+
</td>
|
|
11386
|
+
<td>
|
|
11387
|
+
<div class="doc-md-description">
|
|
11388
|
+
<p>The permissions required to view this item.</p>
|
|
11389
|
+
</div>
|
|
11390
|
+
</td>
|
|
11391
|
+
<td>
|
|
11392
|
+
<code>None</code>
|
|
11393
|
+
</td>
|
|
11394
|
+
</tr>
|
|
11395
|
+
<tr class="doc-section-item">
|
|
11396
|
+
<td><code>buttons</code></td>
|
|
11397
|
+
<td>
|
|
11398
|
+
<code>list</code>
|
|
11399
|
+
</td>
|
|
11400
|
+
<td>
|
|
11401
|
+
<div class="doc-md-description">
|
|
11402
|
+
<p>List of buttons to be rendered in this item.</p>
|
|
11403
|
+
</div>
|
|
11404
|
+
</td>
|
|
11405
|
+
<td>
|
|
11406
|
+
<code>()</code>
|
|
11407
|
+
</td>
|
|
11408
|
+
</tr>
|
|
11409
|
+
<tr class="doc-section-item">
|
|
11410
|
+
<td><code>weight</code></td>
|
|
11411
|
+
<td>
|
|
11412
|
+
<code>int</code>
|
|
11413
|
+
</td>
|
|
11414
|
+
<td>
|
|
11415
|
+
<div class="doc-md-description">
|
|
11416
|
+
<p>The weight of this item.</p>
|
|
11417
|
+
</div>
|
|
11418
|
+
</td>
|
|
11419
|
+
<td>
|
|
11420
|
+
<code>1000</code>
|
|
11421
|
+
</td>
|
|
11422
|
+
</tr>
|
|
11423
|
+
</tbody>
|
|
11424
|
+
</table>
|
|
10658
11425
|
|
|
10659
|
-
|
|
11426
|
+
</div>
|
|
10660
11427
|
|
|
10661
11428
|
</div>
|
|
10662
11429
|
|
|
@@ -10664,8 +11431,7 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
10664
11431
|
|
|
10665
11432
|
</div>
|
|
10666
11433
|
|
|
10667
|
-
|
|
10668
|
-
|
|
11434
|
+
</div>
|
|
10669
11435
|
|
|
10670
11436
|
</div>
|
|
10671
11437
|
|
|
@@ -10674,23 +11440,23 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
10674
11440
|
|
|
10675
11441
|
|
|
10676
11442
|
<h2 id="nautobot.apps.ui.NavMenuTab" class="doc doc-heading">
|
|
10677
|
-
|
|
11443
|
+
<code>nautobot.apps.ui.NavMenuTab</code>
|
|
10678
11444
|
|
|
10679
11445
|
|
|
10680
11446
|
<a href="#nautobot.apps.ui.NavMenuTab" class="headerlink" title="Permanent link">¶</a></h2>
|
|
10681
11447
|
|
|
10682
11448
|
|
|
10683
|
-
|
|
10684
|
-
|
|
10685
|
-
|
|
11449
|
+
<div class="doc doc-contents ">
|
|
11450
|
+
<p class="doc doc-class-bases">
|
|
11451
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
11452
|
+
|
|
10686
11453
|
|
|
10687
|
-
|
|
10688
11454
|
<p>Ths class represents a navigation menu tab. This is built up from a name and a weight value. The name is
|
|
10689
11455
|
the display text and the weight defines its position in the navbar.</p>
|
|
10690
11456
|
<p>Groups are each specified as a list of NavMenuGroup instances.</p>
|
|
10691
11457
|
|
|
10692
11458
|
|
|
10693
|
-
|
|
11459
|
+
|
|
10694
11460
|
|
|
10695
11461
|
<div class="doc doc-children">
|
|
10696
11462
|
|
|
@@ -10705,8 +11471,8 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10705
11471
|
|
|
10706
11472
|
|
|
10707
11473
|
<h3 id="nautobot.apps.ui.NavMenuTab.fixed_fields" class="doc doc-heading">
|
|
10708
|
-
|
|
10709
|
-
|
|
11474
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
|
|
11475
|
+
|
|
10710
11476
|
<span class="doc doc-labels">
|
|
10711
11477
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
10712
11478
|
</span>
|
|
@@ -10714,10 +11480,10 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10714
11480
|
<a href="#nautobot.apps.ui.NavMenuTab.fixed_fields" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10715
11481
|
|
|
10716
11482
|
|
|
10717
|
-
|
|
10718
|
-
|
|
11483
|
+
<div class="doc doc-contents ">
|
|
11484
|
+
|
|
10719
11485
|
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
10720
|
-
|
|
11486
|
+
</div>
|
|
10721
11487
|
|
|
10722
11488
|
</div>
|
|
10723
11489
|
|
|
@@ -10726,8 +11492,8 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10726
11492
|
|
|
10727
11493
|
|
|
10728
11494
|
<h3 id="nautobot.apps.ui.NavMenuTab.initial_dict" class="doc doc-heading">
|
|
10729
|
-
|
|
10730
|
-
|
|
11495
|
+
<code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
|
|
11496
|
+
|
|
10731
11497
|
<span class="doc doc-labels">
|
|
10732
11498
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
10733
11499
|
</span>
|
|
@@ -10735,103 +11501,100 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10735
11501
|
<a href="#nautobot.apps.ui.NavMenuTab.initial_dict" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10736
11502
|
|
|
10737
11503
|
|
|
10738
|
-
|
|
10739
|
-
|
|
11504
|
+
<div class="doc doc-contents ">
|
|
11505
|
+
|
|
10740
11506
|
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
10741
|
-
|
|
11507
|
+
</div>
|
|
10742
11508
|
|
|
10743
11509
|
</div>
|
|
10744
11510
|
|
|
10745
11511
|
|
|
10746
11512
|
|
|
10747
|
-
|
|
10748
11513
|
<div class="doc doc-object doc-function">
|
|
10749
11514
|
|
|
10750
11515
|
|
|
10751
|
-
|
|
10752
11516
|
<h3 id="nautobot.apps.ui.NavMenuTab.__init__" class="doc doc-heading">
|
|
10753
|
-
|
|
11517
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">groups</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
|
|
10754
11518
|
|
|
10755
11519
|
<a href="#nautobot.apps.ui.NavMenuTab.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10756
11520
|
|
|
10757
11521
|
|
|
10758
|
-
|
|
10759
|
-
|
|
10760
|
-
<p>Ensure tab properties.</p>
|
|
11522
|
+
<div class="doc doc-contents ">
|
|
10761
11523
|
|
|
11524
|
+
<p>Ensure tab properties.</p>
|
|
10762
11525
|
|
|
10763
11526
|
|
|
10764
|
-
|
|
10765
|
-
|
|
10766
|
-
|
|
10767
|
-
<tr>
|
|
10768
|
-
<th>Name</th>
|
|
10769
|
-
<th>Type</th>
|
|
10770
|
-
<th>Description</th>
|
|
10771
|
-
<th>Default</th>
|
|
10772
|
-
</tr>
|
|
10773
|
-
</thead>
|
|
10774
|
-
<tbody>
|
|
10775
|
-
<tr>
|
|
10776
|
-
<td><code>name</code></td>
|
|
10777
|
-
<td>
|
|
10778
|
-
<code>str</code>
|
|
10779
|
-
</td>
|
|
10780
|
-
<td>
|
|
10781
|
-
<div class="doc-md-description">
|
|
10782
|
-
<p>The name of the tab.</p>
|
|
10783
|
-
</div>
|
|
10784
|
-
</td>
|
|
10785
|
-
<td>
|
|
10786
|
-
<em>required</em>
|
|
10787
|
-
</td>
|
|
10788
|
-
</tr>
|
|
11527
|
+
<p><span class="doc-section-title">Parameters:</span></p>
|
|
11528
|
+
<table>
|
|
11529
|
+
<thead>
|
|
10789
11530
|
<tr>
|
|
10790
|
-
<
|
|
10791
|
-
<
|
|
10792
|
-
|
|
10793
|
-
</
|
|
10794
|
-
<td>
|
|
10795
|
-
<div class="doc-md-description">
|
|
10796
|
-
<p>The permissions required to view this tab.</p>
|
|
10797
|
-
</div>
|
|
10798
|
-
</td>
|
|
10799
|
-
<td>
|
|
10800
|
-
<code>None</code>
|
|
10801
|
-
</td>
|
|
10802
|
-
</tr>
|
|
10803
|
-
<tr>
|
|
10804
|
-
<td><code>groups</code></td>
|
|
10805
|
-
<td>
|
|
10806
|
-
<code>list</code>
|
|
10807
|
-
</td>
|
|
10808
|
-
<td>
|
|
10809
|
-
<div class="doc-md-description">
|
|
10810
|
-
<p>List of groups to be rendered in this tab.</p>
|
|
10811
|
-
</div>
|
|
10812
|
-
</td>
|
|
10813
|
-
<td>
|
|
10814
|
-
<code>None</code>
|
|
10815
|
-
</td>
|
|
11531
|
+
<th>Name</th>
|
|
11532
|
+
<th>Type</th>
|
|
11533
|
+
<th>Description</th>
|
|
11534
|
+
<th>Default</th>
|
|
10816
11535
|
</tr>
|
|
10817
|
-
|
|
10818
|
-
|
|
10819
|
-
<
|
|
10820
|
-
|
|
10821
|
-
|
|
10822
|
-
|
|
10823
|
-
|
|
10824
|
-
|
|
10825
|
-
|
|
10826
|
-
|
|
10827
|
-
|
|
10828
|
-
|
|
10829
|
-
|
|
10830
|
-
|
|
10831
|
-
|
|
10832
|
-
|
|
11536
|
+
</thead>
|
|
11537
|
+
<tbody>
|
|
11538
|
+
<tr class="doc-section-item">
|
|
11539
|
+
<td><code>name</code></td>
|
|
11540
|
+
<td>
|
|
11541
|
+
<code>str</code>
|
|
11542
|
+
</td>
|
|
11543
|
+
<td>
|
|
11544
|
+
<div class="doc-md-description">
|
|
11545
|
+
<p>The name of the tab.</p>
|
|
11546
|
+
</div>
|
|
11547
|
+
</td>
|
|
11548
|
+
<td>
|
|
11549
|
+
<em>required</em>
|
|
11550
|
+
</td>
|
|
11551
|
+
</tr>
|
|
11552
|
+
<tr class="doc-section-item">
|
|
11553
|
+
<td><code>permissions</code></td>
|
|
11554
|
+
<td>
|
|
11555
|
+
<code>list</code>
|
|
11556
|
+
</td>
|
|
11557
|
+
<td>
|
|
11558
|
+
<div class="doc-md-description">
|
|
11559
|
+
<p>The permissions required to view this tab.</p>
|
|
11560
|
+
</div>
|
|
11561
|
+
</td>
|
|
11562
|
+
<td>
|
|
11563
|
+
<code>None</code>
|
|
11564
|
+
</td>
|
|
11565
|
+
</tr>
|
|
11566
|
+
<tr class="doc-section-item">
|
|
11567
|
+
<td><code>groups</code></td>
|
|
11568
|
+
<td>
|
|
11569
|
+
<code>list</code>
|
|
11570
|
+
</td>
|
|
11571
|
+
<td>
|
|
11572
|
+
<div class="doc-md-description">
|
|
11573
|
+
<p>List of groups to be rendered in this tab.</p>
|
|
11574
|
+
</div>
|
|
11575
|
+
</td>
|
|
11576
|
+
<td>
|
|
11577
|
+
<code>None</code>
|
|
11578
|
+
</td>
|
|
11579
|
+
</tr>
|
|
11580
|
+
<tr class="doc-section-item">
|
|
11581
|
+
<td><code>weight</code></td>
|
|
11582
|
+
<td>
|
|
11583
|
+
<code>int</code>
|
|
11584
|
+
</td>
|
|
11585
|
+
<td>
|
|
11586
|
+
<div class="doc-md-description">
|
|
11587
|
+
<p>The weight of this tab.</p>
|
|
11588
|
+
</div>
|
|
11589
|
+
</td>
|
|
11590
|
+
<td>
|
|
11591
|
+
<code>1000</code>
|
|
11592
|
+
</td>
|
|
11593
|
+
</tr>
|
|
11594
|
+
</tbody>
|
|
11595
|
+
</table>
|
|
10833
11596
|
|
|
10834
|
-
|
|
11597
|
+
</div>
|
|
10835
11598
|
|
|
10836
11599
|
</div>
|
|
10837
11600
|
|
|
@@ -10839,8 +11602,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10839
11602
|
|
|
10840
11603
|
</div>
|
|
10841
11604
|
|
|
10842
|
-
|
|
10843
|
-
|
|
11605
|
+
</div>
|
|
10844
11606
|
|
|
10845
11607
|
</div>
|
|
10846
11608
|
|
|
@@ -10849,22 +11611,21 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10849
11611
|
|
|
10850
11612
|
|
|
10851
11613
|
<h2 id="nautobot.apps.ui.PermissionsMixin" class="doc doc-heading">
|
|
10852
|
-
|
|
11614
|
+
<code>nautobot.apps.ui.PermissionsMixin</code>
|
|
10853
11615
|
|
|
10854
11616
|
|
|
10855
11617
|
<a href="#nautobot.apps.ui.PermissionsMixin" class="headerlink" title="Permanent link">¶</a></h2>
|
|
10856
11618
|
|
|
10857
11619
|
|
|
10858
|
-
|
|
11620
|
+
<div class="doc doc-contents ">
|
|
11621
|
+
|
|
10859
11622
|
|
|
10860
|
-
|
|
10861
11623
|
<p>Ensure permissions through init.</p>
|
|
10862
11624
|
|
|
10863
11625
|
|
|
10864
|
-
|
|
10865
11626
|
|
|
10866
|
-
<div class="doc doc-children">
|
|
10867
11627
|
|
|
11628
|
+
<div class="doc doc-children">
|
|
10868
11629
|
|
|
10869
11630
|
|
|
10870
11631
|
|
|
@@ -10877,18 +11638,17 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10877
11638
|
<div class="doc doc-object doc-function">
|
|
10878
11639
|
|
|
10879
11640
|
|
|
10880
|
-
|
|
10881
11641
|
<h3 id="nautobot.apps.ui.PermissionsMixin.__init__" class="doc doc-heading">
|
|
10882
|
-
|
|
11642
|
+
<code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">)</span></code>
|
|
10883
11643
|
|
|
10884
11644
|
<a href="#nautobot.apps.ui.PermissionsMixin.__init__" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10885
11645
|
|
|
10886
11646
|
|
|
10887
|
-
|
|
10888
|
-
|
|
11647
|
+
<div class="doc doc-contents ">
|
|
11648
|
+
|
|
10889
11649
|
<p>Ensure permissions.</p>
|
|
10890
11650
|
|
|
10891
|
-
|
|
11651
|
+
</div>
|
|
10892
11652
|
|
|
10893
11653
|
</div>
|
|
10894
11654
|
|
|
@@ -10896,8 +11656,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10896
11656
|
|
|
10897
11657
|
</div>
|
|
10898
11658
|
|
|
10899
|
-
|
|
10900
|
-
|
|
11659
|
+
</div>
|
|
10901
11660
|
|
|
10902
11661
|
</div>
|
|
10903
11662
|
|
|
@@ -10906,15 +11665,15 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
10906
11665
|
|
|
10907
11666
|
|
|
10908
11667
|
<h2 id="nautobot.apps.ui.TemplateExtension" class="doc doc-heading">
|
|
10909
|
-
|
|
11668
|
+
<code>nautobot.apps.ui.TemplateExtension</code>
|
|
10910
11669
|
|
|
10911
11670
|
|
|
10912
11671
|
<a href="#nautobot.apps.ui.TemplateExtension" class="headerlink" title="Permanent link">¶</a></h2>
|
|
10913
11672
|
|
|
10914
11673
|
|
|
10915
|
-
|
|
11674
|
+
<div class="doc doc-contents ">
|
|
11675
|
+
|
|
10916
11676
|
|
|
10917
|
-
|
|
10918
11677
|
<p>This class is used to register plugin content to be injected into core Nautobot templates. It contains methods
|
|
10919
11678
|
that are overridden by plugin authors to return template content.</p>
|
|
10920
11679
|
<p>The <code>model</code> attribute on the class defines the which model detail page this class renders content for. It
|
|
@@ -10927,10 +11686,9 @@ should be set as a string in the form <code><app_label>.<model_name>
|
|
|
10927
11686
|
</ul>
|
|
10928
11687
|
|
|
10929
11688
|
|
|
10930
|
-
|
|
10931
11689
|
|
|
10932
|
-
<div class="doc doc-children">
|
|
10933
11690
|
|
|
11691
|
+
<div class="doc doc-children">
|
|
10934
11692
|
|
|
10935
11693
|
|
|
10936
11694
|
|
|
@@ -10943,36 +11701,33 @@ should be set as a string in the form <code><app_label>.<model_name>
|
|
|
10943
11701
|
<div class="doc doc-object doc-function">
|
|
10944
11702
|
|
|
10945
11703
|
|
|
10946
|
-
|
|
10947
11704
|
<h3 id="nautobot.apps.ui.TemplateExtension.buttons" class="doc doc-heading">
|
|
10948
|
-
|
|
11705
|
+
<code class="highlight language-python"><span class="n">buttons</span><span class="p">()</span></code>
|
|
10949
11706
|
|
|
10950
11707
|
<a href="#nautobot.apps.ui.TemplateExtension.buttons" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10951
11708
|
|
|
10952
11709
|
|
|
10953
|
-
|
|
10954
|
-
|
|
11710
|
+
<div class="doc doc-contents ">
|
|
11711
|
+
|
|
10955
11712
|
<p>Buttons that will be rendered and added to the existing list of buttons on the detail page view. Content
|
|
10956
11713
|
should be returned as an HTML string. Note that content does not need to be marked as safe because this is
|
|
10957
11714
|
automatically handled.</p>
|
|
10958
11715
|
|
|
10959
|
-
|
|
11716
|
+
</div>
|
|
10960
11717
|
|
|
10961
11718
|
</div>
|
|
10962
11719
|
|
|
10963
|
-
|
|
10964
11720
|
<div class="doc doc-object doc-function">
|
|
10965
11721
|
|
|
10966
11722
|
|
|
10967
|
-
|
|
10968
11723
|
<h3 id="nautobot.apps.ui.TemplateExtension.detail_tabs" class="doc doc-heading">
|
|
10969
|
-
|
|
11724
|
+
<code class="highlight language-python"><span class="n">detail_tabs</span><span class="p">()</span></code>
|
|
10970
11725
|
|
|
10971
11726
|
<a href="#nautobot.apps.ui.TemplateExtension.detail_tabs" class="headerlink" title="Permanent link">¶</a></h3>
|
|
10972
11727
|
|
|
10973
11728
|
|
|
10974
|
-
|
|
10975
|
-
|
|
11729
|
+
<div class="doc doc-contents ">
|
|
11730
|
+
|
|
10976
11731
|
<p>Tabs that will be rendered and added to the existing list of tabs on the detail page view.
|
|
10977
11732
|
Tabs will be ordered by their position in the list.</p>
|
|
10978
11733
|
<p>Content should be returned as a list of dicts in the following format:
|
|
@@ -10988,108 +11743,98 @@ Tabs will be ordered by their position in the list.</p>
|
|
|
10988
11743
|
<a id="__codelineno-0-10" name="__codelineno-0-10" href="#__codelineno-0-10"></a>]
|
|
10989
11744
|
</code></pre></div></p>
|
|
10990
11745
|
|
|
10991
|
-
|
|
11746
|
+
</div>
|
|
10992
11747
|
|
|
10993
11748
|
</div>
|
|
10994
11749
|
|
|
10995
|
-
|
|
10996
11750
|
<div class="doc doc-object doc-function">
|
|
10997
11751
|
|
|
10998
11752
|
|
|
10999
|
-
|
|
11000
11753
|
<h3 id="nautobot.apps.ui.TemplateExtension.full_width_page" class="doc doc-heading">
|
|
11001
|
-
|
|
11754
|
+
<code class="highlight language-python"><span class="n">full_width_page</span><span class="p">()</span></code>
|
|
11002
11755
|
|
|
11003
11756
|
<a href="#nautobot.apps.ui.TemplateExtension.full_width_page" class="headerlink" title="Permanent link">¶</a></h3>
|
|
11004
11757
|
|
|
11005
11758
|
|
|
11006
|
-
|
|
11007
|
-
|
|
11759
|
+
<div class="doc doc-contents ">
|
|
11760
|
+
|
|
11008
11761
|
<p>Content that will be rendered within the full width of the detail page view. Content should be returned as an
|
|
11009
11762
|
HTML string. Note that content does not need to be marked as safe because this is automatically handled.</p>
|
|
11010
11763
|
|
|
11011
|
-
|
|
11764
|
+
</div>
|
|
11012
11765
|
|
|
11013
11766
|
</div>
|
|
11014
11767
|
|
|
11015
|
-
|
|
11016
11768
|
<div class="doc doc-object doc-function">
|
|
11017
11769
|
|
|
11018
11770
|
|
|
11019
|
-
|
|
11020
11771
|
<h3 id="nautobot.apps.ui.TemplateExtension.left_page" class="doc doc-heading">
|
|
11021
|
-
|
|
11772
|
+
<code class="highlight language-python"><span class="n">left_page</span><span class="p">()</span></code>
|
|
11022
11773
|
|
|
11023
11774
|
<a href="#nautobot.apps.ui.TemplateExtension.left_page" class="headerlink" title="Permanent link">¶</a></h3>
|
|
11024
11775
|
|
|
11025
11776
|
|
|
11026
|
-
|
|
11027
|
-
|
|
11777
|
+
<div class="doc doc-contents ">
|
|
11778
|
+
|
|
11028
11779
|
<p>Content that will be rendered on the left of the detail page view. Content should be returned as an
|
|
11029
11780
|
HTML string. Note that content does not need to be marked as safe because this is automatically handled.</p>
|
|
11030
11781
|
|
|
11031
|
-
|
|
11782
|
+
</div>
|
|
11032
11783
|
|
|
11033
11784
|
</div>
|
|
11034
11785
|
|
|
11035
|
-
|
|
11036
11786
|
<div class="doc doc-object doc-function">
|
|
11037
11787
|
|
|
11038
11788
|
|
|
11039
|
-
|
|
11040
11789
|
<h3 id="nautobot.apps.ui.TemplateExtension.list_buttons" class="doc doc-heading">
|
|
11041
|
-
|
|
11790
|
+
<code class="highlight language-python"><span class="n">list_buttons</span><span class="p">()</span></code>
|
|
11042
11791
|
|
|
11043
11792
|
<a href="#nautobot.apps.ui.TemplateExtension.list_buttons" class="headerlink" title="Permanent link">¶</a></h3>
|
|
11044
11793
|
|
|
11045
11794
|
|
|
11046
|
-
|
|
11047
|
-
|
|
11795
|
+
<div class="doc doc-contents ">
|
|
11796
|
+
|
|
11048
11797
|
<p>Buttons that will be rendered and added to the existing list of buttons on the list page view. Content
|
|
11049
11798
|
should be returned as an HTML string. Note that content does not need to be marked as safe because this is
|
|
11050
11799
|
automatically handled.</p>
|
|
11051
11800
|
|
|
11052
|
-
|
|
11801
|
+
</div>
|
|
11053
11802
|
|
|
11054
11803
|
</div>
|
|
11055
11804
|
|
|
11056
|
-
|
|
11057
11805
|
<div class="doc doc-object doc-function">
|
|
11058
11806
|
|
|
11059
11807
|
|
|
11060
|
-
|
|
11061
11808
|
<h3 id="nautobot.apps.ui.TemplateExtension.render" class="doc doc-heading">
|
|
11062
|
-
|
|
11809
|
+
<code class="highlight language-python"><span class="n">render</span><span class="p">(</span><span class="n">template_name</span><span class="p">,</span> <span class="n">extra_context</span><span class="o">=</span><span class="kc">None</span><span class="p">)</span></code>
|
|
11063
11810
|
|
|
11064
11811
|
<a href="#nautobot.apps.ui.TemplateExtension.render" class="headerlink" title="Permanent link">¶</a></h3>
|
|
11065
11812
|
|
|
11066
11813
|
|
|
11067
|
-
|
|
11068
|
-
|
|
11814
|
+
<div class="doc doc-contents ">
|
|
11815
|
+
|
|
11069
11816
|
<p>Convenience method for rendering the specified Django template using the default context data. An additional
|
|
11070
11817
|
context dictionary may be passed as <code>extra_context</code>.</p>
|
|
11071
11818
|
|
|
11072
|
-
|
|
11819
|
+
</div>
|
|
11073
11820
|
|
|
11074
11821
|
</div>
|
|
11075
11822
|
|
|
11076
|
-
|
|
11077
11823
|
<div class="doc doc-object doc-function">
|
|
11078
11824
|
|
|
11079
11825
|
|
|
11080
|
-
|
|
11081
11826
|
<h3 id="nautobot.apps.ui.TemplateExtension.right_page" class="doc doc-heading">
|
|
11082
|
-
|
|
11827
|
+
<code class="highlight language-python"><span class="n">right_page</span><span class="p">()</span></code>
|
|
11083
11828
|
|
|
11084
11829
|
<a href="#nautobot.apps.ui.TemplateExtension.right_page" class="headerlink" title="Permanent link">¶</a></h3>
|
|
11085
11830
|
|
|
11086
11831
|
|
|
11087
|
-
|
|
11088
|
-
|
|
11832
|
+
<div class="doc doc-contents ">
|
|
11833
|
+
|
|
11089
11834
|
<p>Content that will be rendered on the right of the detail page view. Content should be returned as an
|
|
11090
11835
|
HTML string. Note that content does not need to be marked as safe because this is automatically handled.</p>
|
|
11091
11836
|
|
|
11092
|
-
|
|
11837
|
+
</div>
|
|
11093
11838
|
|
|
11094
11839
|
</div>
|
|
11095
11840
|
|
|
@@ -11097,8 +11842,7 @@ HTML string. Note that content does not need to be marked as safe because this i
|
|
|
11097
11842
|
|
|
11098
11843
|
</div>
|
|
11099
11844
|
|
|
11100
|
-
|
|
11101
|
-
|
|
11845
|
+
</div>
|
|
11102
11846
|
|
|
11103
11847
|
</div>
|
|
11104
11848
|
|
|
@@ -11107,7 +11851,7 @@ HTML string. Note that content does not need to be marked as safe because this i
|
|
|
11107
11851
|
|
|
11108
11852
|
</div>
|
|
11109
11853
|
|
|
11110
|
-
|
|
11854
|
+
</div>
|
|
11111
11855
|
|
|
11112
11856
|
</div>
|
|
11113
11857
|
|
|
@@ -11206,7 +11950,7 @@ HTML string. Note that content does not need to be marked as safe because this i
|
|
|
11206
11950
|
|
|
11207
11951
|
|
|
11208
11952
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
11209
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
11953
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64zm0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0zm32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>
|
|
11210
11954
|
</a>
|
|
11211
11955
|
|
|
11212
11956
|
|
|
@@ -11214,7 +11958,7 @@ HTML string. Note that content does not need to be marked as safe because this i
|
|
|
11214
11958
|
|
|
11215
11959
|
|
|
11216
11960
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
11217
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.
|
|
11961
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
|
|
11218
11962
|
</a>
|
|
11219
11963
|
|
|
11220
11964
|
|
|
@@ -11222,7 +11966,7 @@ HTML string. Note that content does not need to be marked as safe because this i
|
|
|
11222
11966
|
|
|
11223
11967
|
|
|
11224
11968
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
11225
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.
|
|
11969
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z"/></svg>
|
|
11226
11970
|
</a>
|
|
11227
11971
|
|
|
11228
11972
|
|
|
@@ -11230,7 +11974,7 @@ HTML string. Note that content does not need to be marked as safe because this i
|
|
|
11230
11974
|
|
|
11231
11975
|
|
|
11232
11976
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
11233
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.
|
|
11977
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
|
|
11234
11978
|
</a>
|
|
11235
11979
|
|
|
11236
11980
|
|
|
@@ -11238,7 +11982,7 @@ HTML string. Note that content does not need to be marked as safe because this i
|
|
|
11238
11982
|
|
|
11239
11983
|
|
|
11240
11984
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
11241
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.
|
|
11985
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
|
|
11242
11986
|
</a>
|
|
11243
11987
|
|
|
11244
11988
|
</div>
|