nautobot 2.4.0b1__py3-none-any.whl → 2.4.2__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/__init__.py +1 -1
- nautobot/apps/api.py +8 -8
- nautobot/apps/change_logging.py +2 -2
- nautobot/apps/choices.py +4 -4
- nautobot/apps/events.py +3 -3
- nautobot/apps/factory.py +2 -2
- nautobot/apps/filters.py +1 -1
- nautobot/apps/forms.py +20 -20
- nautobot/apps/graphql.py +2 -2
- nautobot/apps/jobs.py +8 -8
- nautobot/apps/models.py +19 -19
- nautobot/apps/tables.py +1 -1
- nautobot/apps/testing.py +10 -10
- nautobot/apps/ui.py +2 -2
- nautobot/apps/utils.py +7 -7
- nautobot/apps/views.py +7 -7
- nautobot/circuits/api/serializers.py +1 -0
- nautobot/circuits/api/views.py +4 -8
- nautobot/circuits/tables.py +2 -1
- nautobot/circuits/templates/circuits/circuit_create.html +1 -7
- nautobot/circuits/tests/integration/test_circuits_bulk_operations.py +43 -0
- nautobot/circuits/tests/integration/test_relationships.py +1 -1
- nautobot/circuits/views.py +3 -3
- nautobot/cloud/api/views.py +6 -10
- nautobot/cloud/models.py +1 -1
- nautobot/cloud/views.py +0 -16
- nautobot/core/api/constants.py +11 -0
- nautobot/core/api/fields.py +5 -5
- nautobot/core/api/filter_backends.py +3 -9
- nautobot/core/api/schema.py +13 -2
- nautobot/core/api/serializers.py +40 -34
- nautobot/core/api/views.py +56 -4
- nautobot/core/apps/__init__.py +0 -5
- nautobot/core/celery/log.py +4 -4
- nautobot/core/celery/schedulers.py +2 -2
- nautobot/core/choices.py +2 -2
- nautobot/core/events/__init__.py +3 -3
- nautobot/core/filters.py +67 -35
- nautobot/core/forms/__init__.py +19 -19
- nautobot/core/forms/fields.py +14 -11
- nautobot/core/forms/forms.py +33 -2
- nautobot/core/graphql/types.py +1 -1
- nautobot/core/jobs/__init__.py +28 -7
- nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot/core/jobs/cleanup.py +48 -12
- nautobot/core/jobs/groups.py +1 -1
- nautobot/core/management/commands/validate_models.py +1 -1
- nautobot/core/models/__init__.py +3 -1
- nautobot/core/models/query_functions.py +2 -2
- nautobot/core/models/tree_queries.py +6 -3
- nautobot/core/settings.py +29 -2
- nautobot/core/settings.yaml +21 -0
- nautobot/core/tables.py +79 -61
- nautobot/core/templates/about.html +67 -0
- nautobot/core/templates/generic/object_bulk_destroy.html +1 -1
- nautobot/core/templates/inc/media.html +3 -0
- nautobot/core/templates/inc/nav_menu.html +1 -0
- nautobot/core/templates/inc/tenancy_form_panel.html +9 -0
- nautobot/core/templates/inc/tenant_table_row.html +11 -0
- nautobot/core/templates/nautobot_config.py.j2 +13 -0
- nautobot/core/templates/search.html +7 -0
- nautobot/core/templates/utilities/render_jinja2.html +1 -1
- nautobot/core/templates/utilities/templatetags/tag.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +7 -0
- nautobot/core/templatetags/helpers.py +11 -2
- nautobot/core/testing/__init__.py +8 -8
- nautobot/core/testing/api.py +170 -15
- nautobot/core/testing/filters.py +45 -10
- nautobot/core/testing/forms.py +2 -0
- nautobot/core/testing/integration.py +514 -5
- nautobot/core/testing/mixins.py +7 -2
- nautobot/core/testing/views.py +44 -29
- nautobot/core/tests/integration/test_app_home.py +0 -1
- nautobot/core/tests/integration/test_app_navbar.py +0 -1
- nautobot/core/tests/integration/test_filters.py +0 -2
- nautobot/core/tests/integration/test_home.py +0 -1
- nautobot/core/tests/integration/test_navbar.py +0 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/runner.py +1 -1
- nautobot/core/tests/test_api.py +98 -1
- nautobot/core/tests/test_csv.py +25 -3
- nautobot/core/tests/test_filters.py +209 -246
- nautobot/core/tests/test_forms.py +1 -0
- nautobot/core/tests/test_jobs.py +492 -1
- nautobot/core/tests/test_models.py +9 -0
- nautobot/core/tests/test_settings_schema.py +7 -0
- nautobot/core/tests/test_tables.py +100 -0
- nautobot/core/tests/test_utils.py +63 -1
- nautobot/core/tests/test_views.py +30 -3
- nautobot/core/ui/nav.py +1 -0
- nautobot/core/ui/object_detail.py +15 -1
- nautobot/core/urls.py +11 -0
- nautobot/core/utils/git.py +7 -2
- nautobot/core/utils/lookup.py +11 -8
- nautobot/core/utils/querysets.py +64 -0
- nautobot/core/utils/requests.py +24 -9
- nautobot/core/views/__init__.py +42 -0
- nautobot/core/views/generic.py +131 -197
- nautobot/core/views/mixins.py +136 -41
- nautobot/core/views/renderers.py +6 -6
- nautobot/core/views/utils.py +2 -2
- nautobot/dcim/api/serializers.py +56 -64
- nautobot/dcim/api/views.py +47 -113
- nautobot/dcim/constants.py +6 -13
- nautobot/dcim/factory.py +6 -1
- nautobot/dcim/filters/__init__.py +31 -2
- nautobot/dcim/forms.py +48 -17
- nautobot/dcim/graphql/types.py +2 -2
- nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +25 -0
- nautobot/dcim/models/__init__.py +1 -1
- nautobot/dcim/models/device_component_templates.py +2 -2
- nautobot/dcim/models/device_components.py +22 -20
- nautobot/dcim/models/devices.py +10 -1
- nautobot/dcim/models/locations.py +3 -3
- nautobot/dcim/models/power.py +6 -5
- nautobot/dcim/models/racks.py +4 -4
- nautobot/dcim/tables/__init__.py +3 -3
- nautobot/dcim/tables/devices.py +9 -6
- nautobot/dcim/tables/devicetypes.py +2 -2
- nautobot/dcim/tables/racks.py +1 -1
- nautobot/dcim/templates/dcim/cable.html +1 -1
- nautobot/dcim/templates/dcim/controller_create.html +1 -7
- nautobot/dcim/templates/dcim/controller_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +2 -0
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +5 -0
- nautobot/dcim/templates/dcim/device/base.html +1 -1
- nautobot/dcim/templates/dcim/device.html +3 -11
- nautobot/dcim/templates/dcim/device_component.html +1 -1
- nautobot/dcim/templates/dcim/device_edit.html +36 -37
- nautobot/dcim/templates/dcim/devicetype.html +1 -1
- nautobot/dcim/templates/dcim/location.html +2 -10
- nautobot/dcim/templates/dcim/location_edit.html +1 -7
- nautobot/dcim/templates/dcim/locationtype.html +1 -1
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +1 -1
- nautobot/dcim/templates/dcim/manufacturer.html +1 -1
- nautobot/dcim/templates/dcim/platform.html +1 -1
- nautobot/dcim/templates/dcim/powerfeed.html +1 -1
- nautobot/dcim/templates/dcim/powerpanel.html +1 -1
- nautobot/dcim/templates/dcim/rack.html +2 -10
- nautobot/dcim/templates/dcim/rack_edit.html +1 -7
- nautobot/dcim/templates/dcim/rackgroup.html +1 -1
- nautobot/dcim/templates/dcim/rackreservation.html +3 -11
- nautobot/dcim/templates/dcim/virtualchassis.html +1 -1
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -9
- nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +1 -7
- nautobot/dcim/tests/integration/test_controller.py +62 -0
- nautobot/dcim/tests/integration/test_controller_managed_device_group.py +71 -0
- nautobot/dcim/tests/integration/test_device_bulk_operations.py +30 -0
- nautobot/dcim/tests/integration/test_location_bulk_operations.py +43 -0
- nautobot/dcim/tests/test_api.py +16 -5
- nautobot/dcim/tests/test_filters.py +33 -0
- nautobot/dcim/tests/test_forms.py +51 -2
- nautobot/dcim/tests/test_graphql.py +52 -0
- nautobot/dcim/tests/test_jobs.py +118 -0
- nautobot/dcim/tests/test_models.py +52 -9
- nautobot/dcim/tests/test_views.py +30 -84
- nautobot/dcim/views.py +13 -28
- nautobot/extras/api/customfields.py +2 -2
- nautobot/extras/api/serializers.py +123 -85
- nautobot/extras/api/views.py +33 -30
- nautobot/extras/constants.py +3 -0
- nautobot/extras/datasources/git.py +125 -0
- nautobot/extras/filters/__init__.py +8 -6
- nautobot/extras/forms/base.py +2 -2
- nautobot/extras/forms/forms.py +139 -31
- nautobot/extras/forms/mixins.py +14 -6
- nautobot/extras/group_sync.py +3 -3
- nautobot/extras/health_checks.py +1 -2
- nautobot/extras/jobs.py +85 -18
- nautobot/extras/managers.py +3 -1
- nautobot/extras/migrations/0018_joblog_data_migration.py +7 -9
- nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +22 -0
- nautobot/extras/migrations/0121_alter_team_contacts.py +17 -0
- nautobot/extras/migrations/0122_add_graphqlquery_owner_content_type.py +34 -0
- nautobot/extras/models/__init__.py +1 -1
- nautobot/extras/models/contacts.py +1 -1
- nautobot/extras/models/customfields.py +41 -23
- nautobot/extras/models/datasources.py +85 -0
- nautobot/extras/models/groups.py +11 -9
- nautobot/extras/models/jobs.py +23 -4
- nautobot/extras/models/models.py +17 -2
- nautobot/extras/models/relationships.py +17 -5
- nautobot/extras/plugins/__init__.py +13 -2
- nautobot/extras/plugins/marketplace_manifest.yml +84 -79
- nautobot/extras/plugins/tables.py +16 -14
- nautobot/extras/plugins/views.py +65 -69
- nautobot/extras/registry.py +1 -1
- nautobot/extras/secrets/__init__.py +2 -2
- nautobot/extras/signals.py +15 -1
- nautobot/extras/tables.py +7 -5
- nautobot/extras/templates/extras/computedfield.html +1 -1
- nautobot/extras/templates/extras/configcontext.html +1 -1
- nautobot/extras/templates/extras/configcontextschema.html +1 -1
- nautobot/extras/templates/extras/customfield.html +1 -1
- nautobot/extras/templates/extras/customlink.html +1 -1
- nautobot/extras/templates/extras/dynamicgroup.html +2 -10
- nautobot/extras/templates/extras/exporttemplate.html +1 -1
- nautobot/extras/templates/extras/gitrepository.html +1 -1
- nautobot/extras/templates/extras/graphqlquery.html +1 -1
- nautobot/extras/templates/extras/job_detail.html +17 -1
- nautobot/extras/templates/extras/job_edit.html +1 -0
- nautobot/extras/templates/extras/jobbutton_retrieve.html +1 -1
- nautobot/extras/templates/extras/jobhook.html +1 -1
- nautobot/extras/templates/extras/jobqueue_retrieve.html +1 -9
- nautobot/extras/templates/extras/jobresult.html +1 -1
- nautobot/extras/templates/extras/marketplace.html +29 -11
- nautobot/extras/templates/extras/objectchange.html +1 -1
- nautobot/extras/templates/extras/plugin_detail.html +33 -16
- nautobot/extras/templates/extras/plugins_tiles.html +21 -10
- nautobot/extras/templates/extras/relationship.html +1 -63
- nautobot/extras/templates/extras/role_retrieve.html +1 -1
- nautobot/extras/templates/extras/scheduledjob.html +1 -1
- nautobot/extras/templates/extras/secret.html +1 -1
- nautobot/extras/templates/extras/secretsgroup.html +1 -1
- nautobot/extras/templates/extras/status.html +1 -1
- nautobot/extras/templates/extras/tag.html +1 -1
- nautobot/extras/templates/extras/webhook.html +1 -1
- nautobot/extras/templatetags/job_buttons.py +4 -4
- nautobot/extras/test_jobs/api_test_job.py +1 -1
- nautobot/extras/test_jobs/atomic_transaction.py +2 -2
- nautobot/extras/test_jobs/dry_run.py +1 -1
- nautobot/extras/test_jobs/fail.py +5 -5
- nautobot/extras/test_jobs/file_output.py +1 -1
- nautobot/extras/test_jobs/file_upload_fail.py +1 -1
- nautobot/extras/test_jobs/file_upload_pass.py +1 -1
- nautobot/extras/test_jobs/ipaddress_vars.py +3 -1
- nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +1 -1
- nautobot/extras/test_jobs/location_with_custom_field.py +1 -1
- nautobot/extras/test_jobs/log_redaction.py +1 -1
- nautobot/extras/test_jobs/log_skip_db_logging.py +1 -1
- nautobot/extras/test_jobs/modify_db.py +1 -1
- nautobot/extras/test_jobs/object_var_optional.py +1 -1
- nautobot/extras/test_jobs/object_var_required.py +1 -1
- nautobot/extras/test_jobs/object_vars.py +1 -1
- nautobot/extras/test_jobs/pass.py +3 -3
- nautobot/extras/test_jobs/profiling.py +1 -1
- nautobot/extras/test_jobs/relative_import.py +3 -3
- nautobot/extras/test_jobs/singleton.py +16 -0
- nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +1 -1
- nautobot/extras/test_jobs/task_queues.py +1 -1
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_interfaces.gql +8 -0
- nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_names.gql +5 -0
- nautobot/extras/tests/git_data/02-invalid-files/graphql_queries/bad_device_names.gql +5 -0
- nautobot/extras/tests/git_helper.py +9 -1
- nautobot/extras/tests/integration/__init__.py +29 -16
- nautobot/extras/tests/integration/test_plugin_banner.py +0 -2
- nautobot/extras/tests/test_api.py +19 -13
- nautobot/extras/tests/test_customfields.py +50 -52
- nautobot/extras/tests/test_datasources.py +29 -1
- nautobot/extras/tests/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/test_filters.py +6 -6
- nautobot/extras/tests/test_forms.py +33 -1
- nautobot/extras/tests/test_jobs.py +178 -32
- nautobot/extras/tests/test_models.py +299 -10
- nautobot/extras/tests/test_plugins.py +62 -9
- nautobot/extras/tests/test_relationships.py +120 -9
- nautobot/extras/tests/test_utils.py +22 -1
- nautobot/extras/tests/test_views.py +56 -194
- nautobot/extras/utils.py +20 -10
- nautobot/extras/views.py +85 -110
- nautobot/ipam/api/fields.py +3 -3
- nautobot/ipam/api/serializers.py +41 -33
- nautobot/ipam/api/views.py +68 -117
- nautobot/ipam/factory.py +1 -1
- nautobot/ipam/filters.py +3 -2
- nautobot/ipam/lookups.py +101 -62
- nautobot/ipam/models.py +74 -18
- nautobot/ipam/querysets.py +2 -2
- nautobot/ipam/tables.py +25 -9
- nautobot/ipam/templates/ipam/ipaddress.html +2 -10
- nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +1 -7
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -7
- nautobot/ipam/templates/ipam/prefix.html +2 -10
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -7
- nautobot/ipam/templates/ipam/rir.html +1 -1
- nautobot/ipam/templates/ipam/routetarget.html +1 -1
- nautobot/ipam/templates/ipam/service.html +1 -1
- nautobot/ipam/templates/ipam/vlan.html +2 -10
- nautobot/ipam/templates/ipam/vlan_edit.html +1 -7
- nautobot/ipam/templates/ipam/vlangroup.html +1 -1
- nautobot/ipam/templates/ipam/vrf.html +1 -1
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -7
- nautobot/ipam/tests/test_api.py +436 -3
- nautobot/ipam/tests/test_forms.py +49 -47
- nautobot/ipam/tests/test_migrations.py +30 -30
- nautobot/ipam/tests/test_models.py +119 -34
- nautobot/ipam/tests/test_querysets.py +63 -1
- nautobot/ipam/tests/test_utils.py +41 -2
- nautobot/ipam/tests/test_views.py +3 -0
- nautobot/ipam/utils/__init__.py +54 -17
- nautobot/ipam/views.py +61 -87
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +40 -2
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +1 -1
- nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +1 -1
- nautobot/project-static/docs/404.html +131 -14
- nautobot/project-static/docs/apps/index.html +131 -14
- nautobot/project-static/docs/apps/nautobot-apps.html +132 -16
- nautobot/project-static/docs/assets/_mkdocstrings.css +25 -1
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js → bundle.60a45f97.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.83f73b43.min.js.map → bundle.60a45f97.min.js.map} +2 -2
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js → search.f8cc74c7.min.js} +1 -1
- nautobot/project-static/docs/assets/javascripts/workers/{search.6ce7567c.min.js.map → search.f8cc74c7.min.js.map} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css → main.a40c8224.min.css} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +147 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +459 -132
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +175 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +180 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +138 -16
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +137 -15
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +164 -27
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +187 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +193 -31
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +216 -48
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +324 -75
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +666 -175
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +194 -46
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +538 -177
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +578 -221
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +145 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +156 -25
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +492 -65
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +705 -215
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +943 -422
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +144 -17
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +619 -200
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +474 -159
- nautobot/project-static/docs/development/apps/api/configuration-view.html +131 -14
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/global-search.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/graphql.html +131 -14
- nautobot/project-static/docs/development/apps/api/models/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +131 -14
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +153 -17
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +131 -14
- nautobot/project-static/docs/development/apps/api/prometheus.html +131 -14
- nautobot/project-static/docs/development/apps/api/setup.html +131 -14
- nautobot/project-static/docs/development/apps/api/testing.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +131 -14
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/base-template.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/index.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/notes.html +131 -14
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +137 -16
- nautobot/project-static/docs/development/apps/api/views/urls.html +131 -14
- nautobot/project-static/docs/development/apps/index.html +131 -14
- nautobot/project-static/docs/development/apps/migration/code-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +131 -14
- nautobot/project-static/docs/development/apps/migration/from-v1.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +131 -14
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +135 -18
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +131 -14
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +297 -25
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +131 -14
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +131 -14
- nautobot/project-static/docs/development/core/application-registry.html +131 -14
- nautobot/project-static/docs/development/core/best-practices.html +131 -14
- nautobot/project-static/docs/development/core/bootstrap-ui.html +131 -14
- nautobot/project-static/docs/development/core/caching.html +131 -14
- nautobot/project-static/docs/development/core/controllers.html +131 -14
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +158 -84
- nautobot/project-static/docs/development/core/generic-views.html +131 -14
- nautobot/project-static/docs/development/core/getting-started.html +334 -234
- nautobot/project-static/docs/development/core/homepage.html +134 -17
- nautobot/project-static/docs/development/core/index.html +131 -14
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +9829 -0
- nautobot/project-static/docs/development/core/model-checklist.html +141 -22
- nautobot/project-static/docs/development/core/model-features.html +131 -14
- nautobot/project-static/docs/development/core/natural-keys.html +131 -14
- nautobot/project-static/docs/development/core/navigation-menu.html +131 -14
- nautobot/project-static/docs/development/core/release-checklist.html +134 -17
- nautobot/project-static/docs/development/core/role-internals.html +131 -14
- nautobot/project-static/docs/development/core/settings.html +131 -14
- nautobot/project-static/docs/development/core/style-guide.html +134 -17
- nautobot/project-static/docs/development/core/templates.html +132 -15
- nautobot/project-static/docs/development/core/testing.html +131 -14
- nautobot/project-static/docs/development/core/ui-component-framework.html +454 -283
- nautobot/project-static/docs/development/core/user-preferences.html +131 -14
- nautobot/project-static/docs/development/index.html +131 -14
- nautobot/project-static/docs/development/jobs/index.html +301 -132
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +131 -14
- nautobot/project-static/docs/index.html +139 -33
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +132 -17
- nautobot/project-static/docs/overview/design_philosophy.html +131 -14
- nautobot/project-static/docs/release-notes/index.html +137 -22
- nautobot/project-static/docs/release-notes/version-1.0.html +319 -203
- nautobot/project-static/docs/release-notes/version-1.1.html +316 -200
- nautobot/project-static/docs/release-notes/version-1.2.html +391 -275
- nautobot/project-static/docs/release-notes/version-1.3.html +417 -301
- nautobot/project-static/docs/release-notes/version-1.4.html +502 -387
- nautobot/project-static/docs/release-notes/version-1.5.html +690 -576
- nautobot/project-static/docs/release-notes/version-1.6.html +989 -457
- nautobot/project-static/docs/release-notes/version-2.0.html +613 -499
- nautobot/project-static/docs/release-notes/version-2.1.html +448 -334
- nautobot/project-static/docs/release-notes/version-2.2.html +441 -327
- nautobot/project-static/docs/release-notes/version-2.3.html +1171 -451
- nautobot/project-static/docs/release-notes/version-2.4.html +800 -111
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +303 -287
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +133 -16
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +131 -14
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +195 -18
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +134 -17
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +131 -14
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +133 -16
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +151 -18
- nautobot/project-static/docs/user-guide/administration/installation/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +132 -15
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +131 -14
- nautobot/project-static/docs/user-guide/administration/installation/services.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +131 -14
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +131 -14
- nautobot/project-static/docs/user-guide/administration/security/index.html +9420 -0
- nautobot/project-static/docs/user-guide/administration/security/notices.html +9843 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +131 -14
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +134 -18
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +131 -14
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +135 -22
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +134 -17
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +131 -14
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +134 -17
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +236 -34
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +131 -14
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +134 -17
- nautobot/project-static/docs/{development/core/local-k8s.html → user-guide/feature-guides/wireless-networks-and-controllers.html} +632 -566
- nautobot/project-static/docs/user-guide/index.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +135 -18
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +451 -16
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +135 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +134 -17
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +9797 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +132 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +179 -35
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +159 -15
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +131 -14
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +131 -14
- nautobot/project-static/js/forms.js +1 -1
- nautobot/tenancy/api/views.py +9 -13
- nautobot/tenancy/templates/tenancy/tenant.html +1 -2
- nautobot/tenancy/templates/tenancy/tenantgroup.html +1 -1
- nautobot/tenancy/views.py +4 -2
- nautobot/users/admin.py +1 -1
- nautobot/users/api/serializers.py +5 -4
- nautobot/users/api/views.py +3 -3
- nautobot/virtualization/api/serializers.py +4 -4
- nautobot/virtualization/api/views.py +5 -24
- nautobot/virtualization/filters.py +20 -3
- nautobot/virtualization/models.py +1 -1
- nautobot/virtualization/tables.py +2 -2
- nautobot/virtualization/templates/virtualization/cluster.html +1 -1
- nautobot/virtualization/templates/virtualization/cluster_edit.html +1 -7
- nautobot/virtualization/templates/virtualization/clustergroup.html +1 -1
- nautobot/virtualization/templates/virtualization/clustertype.html +1 -1
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -10
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -8
- nautobot/virtualization/templates/virtualization/vminterface.html +1 -1
- nautobot/virtualization/tests/test_filters.py +17 -0
- nautobot/wireless/filters.py +2 -2
- nautobot/wireless/forms.py +1 -1
- nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +1 -9
- nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot/wireless/tests/integration/test_radio_profile.py +42 -0
- nautobot/wireless/tests/test_filters.py +29 -1
- nautobot/wireless/tests/test_views.py +22 -1
- nautobot/wireless/views.py +0 -10
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/METADATA +9 -9
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/RECORD +667 -610
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/WHEEL +1 -1
- nautobot/core/fixtures/user-data.json +0 -59
- /nautobot/project-static/docs/assets/stylesheets/{main.6f8fc17f.min.css.map → main.a40c8224.min.css.map} +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.dist-info}/NOTICE +0 -0
- {nautobot-2.4.0b1.dist-info → nautobot-2.4.2.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.1, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.5.50">
|
|
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.a40c8224.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.7.
|
|
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.7.2 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 0zm-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.1"/></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.7.
|
|
220
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 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.81"/></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.7.
|
|
380
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 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.81"/></svg>
|
|
381
381
|
</div>
|
|
382
382
|
<div class="md-source__repository">
|
|
383
383
|
GitHub
|
|
@@ -1697,6 +1697,81 @@
|
|
|
1697
1697
|
|
|
1698
1698
|
|
|
1699
1699
|
|
|
1700
|
+
|
|
1701
|
+
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
|
|
1717
|
+
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_7" >
|
|
1718
|
+
|
|
1719
|
+
|
|
1720
|
+
|
|
1721
|
+
<div class="md-nav__link md-nav__container">
|
|
1722
|
+
<a href="../../../user-guide/administration/security/index.html" class="md-nav__link ">
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
<span class="md-ellipsis">
|
|
1726
|
+
Security
|
|
1727
|
+
</span>
|
|
1728
|
+
|
|
1729
|
+
|
|
1730
|
+
</a>
|
|
1731
|
+
|
|
1732
|
+
|
|
1733
|
+
<label class="md-nav__link " for="__nav_2_1_7" id="__nav_2_1_7_label" tabindex="0">
|
|
1734
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1735
|
+
</label>
|
|
1736
|
+
|
|
1737
|
+
</div>
|
|
1738
|
+
|
|
1739
|
+
<nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_1_7_label" aria-expanded="false">
|
|
1740
|
+
<label class="md-nav__title" for="__nav_2_1_7">
|
|
1741
|
+
<span class="md-nav__icon md-icon"></span>
|
|
1742
|
+
Security
|
|
1743
|
+
</label>
|
|
1744
|
+
<ul class="md-nav__list" data-md-scrollfix>
|
|
1745
|
+
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
<li class="md-nav__item">
|
|
1753
|
+
<a href="../../../user-guide/administration/security/notices.html" class="md-nav__link">
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
<span class="md-ellipsis">
|
|
1757
|
+
Notices
|
|
1758
|
+
</span>
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
</a>
|
|
1762
|
+
</li>
|
|
1763
|
+
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
</ul>
|
|
1768
|
+
</nav>
|
|
1769
|
+
|
|
1770
|
+
</li>
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
|
|
1700
1775
|
</ul>
|
|
1701
1776
|
</nav>
|
|
1702
1777
|
|
|
@@ -2112,6 +2187,27 @@
|
|
|
2112
2187
|
|
|
2113
2188
|
|
|
2114
2189
|
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
<li class="md-nav__item">
|
|
2197
|
+
<a href="../../../user-guide/feature-guides/wireless-networks-and-controllers.html" class="md-nav__link">
|
|
2198
|
+
|
|
2199
|
+
|
|
2200
|
+
<span class="md-ellipsis">
|
|
2201
|
+
Wireless Networks and Controllers
|
|
2202
|
+
</span>
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
</a>
|
|
2206
|
+
</li>
|
|
2207
|
+
|
|
2208
|
+
|
|
2209
|
+
|
|
2210
|
+
|
|
2115
2211
|
</ul>
|
|
2116
2212
|
</nav>
|
|
2117
2213
|
|
|
@@ -5131,6 +5227,27 @@
|
|
|
5131
5227
|
|
|
5132
5228
|
|
|
5133
5229
|
|
|
5230
|
+
<li class="md-nav__item">
|
|
5231
|
+
<a href="../../../user-guide/platform-functionality/jobs/kubernetes-job-support.html" class="md-nav__link">
|
|
5232
|
+
|
|
5233
|
+
|
|
5234
|
+
<span class="md-ellipsis">
|
|
5235
|
+
Kubernetes Job Support
|
|
5236
|
+
</span>
|
|
5237
|
+
|
|
5238
|
+
|
|
5239
|
+
</a>
|
|
5240
|
+
</li>
|
|
5241
|
+
|
|
5242
|
+
|
|
5243
|
+
|
|
5244
|
+
|
|
5245
|
+
|
|
5246
|
+
|
|
5247
|
+
|
|
5248
|
+
|
|
5249
|
+
|
|
5250
|
+
|
|
5134
5251
|
<li class="md-nav__item">
|
|
5135
5252
|
<a href="../../../user-guide/platform-functionality/jobs/jobbutton.html" class="md-nav__link">
|
|
5136
5253
|
|
|
@@ -9271,11 +9388,11 @@
|
|
|
9271
9388
|
|
|
9272
9389
|
|
|
9273
9390
|
<li class="md-nav__item">
|
|
9274
|
-
<a href="../../../development/core/
|
|
9391
|
+
<a href="../../../development/core/minikube-dev-environment-for-k8s-jobs.html" class="md-nav__link">
|
|
9275
9392
|
|
|
9276
9393
|
|
|
9277
9394
|
<span class="md-ellipsis">
|
|
9278
|
-
|
|
9395
|
+
Minikube Dev Environment for K8s Jobs
|
|
9279
9396
|
</span>
|
|
9280
9397
|
|
|
9281
9398
|
|
|
@@ -11388,7 +11505,12 @@
|
|
|
11388
11505
|
|
|
11389
11506
|
<div class="doc doc-contents first">
|
|
11390
11507
|
|
|
11391
|
-
|
|
11508
|
+
<p>Utilities for apps to integrate with and extend the existing Nautobot UI.</p>
|
|
11509
|
+
|
|
11510
|
+
|
|
11511
|
+
|
|
11512
|
+
|
|
11513
|
+
|
|
11392
11514
|
|
|
11393
11515
|
|
|
11394
11516
|
|
|
@@ -11415,7 +11537,12 @@
|
|
|
11415
11537
|
<div class="doc doc-contents ">
|
|
11416
11538
|
|
|
11417
11539
|
|
|
11418
|
-
|
|
11540
|
+
<p>Class that may be returned by a registered plugin_banners function.</p>
|
|
11541
|
+
|
|
11542
|
+
|
|
11543
|
+
|
|
11544
|
+
|
|
11545
|
+
|
|
11419
11546
|
|
|
11420
11547
|
|
|
11421
11548
|
|
|
@@ -11451,10 +11578,15 @@
|
|
|
11451
11578
|
|
|
11452
11579
|
<div class="doc doc-contents ">
|
|
11453
11580
|
<p class="doc doc-class-bases">
|
|
11454
|
-
Bases: <code><
|
|
11581
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
|
|
11582
|
+
|
|
11583
|
+
|
|
11584
|
+
<p>Styling choices for custom banners.</p>
|
|
11585
|
+
|
|
11586
|
+
|
|
11587
|
+
|
|
11455
11588
|
|
|
11456
11589
|
|
|
11457
|
-
<p>Styling choices for custom banners.</p>
|
|
11458
11590
|
|
|
11459
11591
|
|
|
11460
11592
|
|
|
@@ -11490,10 +11622,15 @@
|
|
|
11490
11622
|
|
|
11491
11623
|
<div class="doc doc-contents ">
|
|
11492
11624
|
<p class="doc doc-class-bases">
|
|
11493
|
-
Bases: <code><
|
|
11625
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Panel" href="#nautobot.apps.ui.Panel">Panel</a></code></p>
|
|
11626
|
+
|
|
11627
|
+
|
|
11628
|
+
<p>A panel that renders a single value as text, Markdown, JSON, or YAML.</p>
|
|
11629
|
+
|
|
11630
|
+
|
|
11631
|
+
|
|
11494
11632
|
|
|
11495
11633
|
|
|
11496
|
-
<p>A panel that renders a single value as text, Markdown, JSON, or YAML.</p>
|
|
11497
11634
|
|
|
11498
11635
|
|
|
11499
11636
|
|
|
@@ -11520,10 +11657,10 @@
|
|
|
11520
11657
|
|
|
11521
11658
|
<div class="doc doc-contents ">
|
|
11522
11659
|
<p class="doc doc-class-bases">
|
|
11523
|
-
Bases: <code><
|
|
11660
|
+
Bases: <code><span title="enum.Enum">Enum</span></code></p>
|
|
11524
11661
|
|
|
11525
11662
|
|
|
11526
|
-
|
|
11663
|
+
<p>Options available for text panels for different type of rendering a given input.</p>
|
|
11527
11664
|
|
|
11528
11665
|
|
|
11529
11666
|
<p><span class="doc-section-title">Attributes:</span></p>
|
|
@@ -11537,9 +11674,9 @@
|
|
|
11537
11674
|
</thead>
|
|
11538
11675
|
<tbody>
|
|
11539
11676
|
<tr class="doc-section-item">
|
|
11540
|
-
<td><code><
|
|
11677
|
+
<td><code><span title="nautobot.apps.ui.BaseTextPanel.RenderOptions.PLAINTEXT">PLAINTEXT</span></code></td>
|
|
11541
11678
|
<td>
|
|
11542
|
-
<code
|
|
11679
|
+
<code>str</code>
|
|
11543
11680
|
</td>
|
|
11544
11681
|
<td>
|
|
11545
11682
|
<div class="doc-md-description">
|
|
@@ -11548,9 +11685,9 @@
|
|
|
11548
11685
|
</td>
|
|
11549
11686
|
</tr>
|
|
11550
11687
|
<tr class="doc-section-item">
|
|
11551
|
-
<td><code><
|
|
11688
|
+
<td><code><span title="nautobot.apps.ui.BaseTextPanel.RenderOptions.JSON">JSON</span></code></td>
|
|
11552
11689
|
<td>
|
|
11553
|
-
<code
|
|
11690
|
+
<code>str</code>
|
|
11554
11691
|
</td>
|
|
11555
11692
|
<td>
|
|
11556
11693
|
<div class="doc-md-description">
|
|
@@ -11559,9 +11696,9 @@
|
|
|
11559
11696
|
</td>
|
|
11560
11697
|
</tr>
|
|
11561
11698
|
<tr class="doc-section-item">
|
|
11562
|
-
<td><code><
|
|
11699
|
+
<td><code><span title="nautobot.apps.ui.BaseTextPanel.RenderOptions.YAML">YAML</span></code></td>
|
|
11563
11700
|
<td>
|
|
11564
|
-
<code
|
|
11701
|
+
<code>str</code>
|
|
11565
11702
|
</td>
|
|
11566
11703
|
<td>
|
|
11567
11704
|
<div class="doc-md-description">
|
|
@@ -11570,9 +11707,9 @@
|
|
|
11570
11707
|
</td>
|
|
11571
11708
|
</tr>
|
|
11572
11709
|
<tr class="doc-section-item">
|
|
11573
|
-
<td><code><
|
|
11710
|
+
<td><code><span title="nautobot.apps.ui.BaseTextPanel.RenderOptions.MARKDOWN">MARKDOWN</span></code></td>
|
|
11574
11711
|
<td>
|
|
11575
|
-
<code
|
|
11712
|
+
<code>str</code>
|
|
11576
11713
|
</td>
|
|
11577
11714
|
<td>
|
|
11578
11715
|
<div class="doc-md-description">
|
|
@@ -11581,9 +11718,9 @@
|
|
|
11581
11718
|
</td>
|
|
11582
11719
|
</tr>
|
|
11583
11720
|
<tr class="doc-section-item">
|
|
11584
|
-
<td><code><
|
|
11721
|
+
<td><code><span title="nautobot.apps.ui.BaseTextPanel.RenderOptions.CODE">CODE</span></code></td>
|
|
11585
11722
|
<td>
|
|
11586
|
-
<code
|
|
11723
|
+
<code>str</code>
|
|
11587
11724
|
</td>
|
|
11588
11725
|
<td>
|
|
11589
11726
|
<div class="doc-md-description">
|
|
@@ -11597,6 +11734,11 @@
|
|
|
11597
11734
|
|
|
11598
11735
|
|
|
11599
11736
|
|
|
11737
|
+
|
|
11738
|
+
|
|
11739
|
+
|
|
11740
|
+
|
|
11741
|
+
|
|
11600
11742
|
<div class="doc doc-children">
|
|
11601
11743
|
|
|
11602
11744
|
|
|
@@ -11627,7 +11769,7 @@
|
|
|
11627
11769
|
|
|
11628
11770
|
<div class="doc doc-contents ">
|
|
11629
11771
|
|
|
11630
|
-
|
|
11772
|
+
<p>Instantiate BaseTextPanel.</p>
|
|
11631
11773
|
|
|
11632
11774
|
|
|
11633
11775
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -11642,9 +11784,11 @@
|
|
|
11642
11784
|
</thead>
|
|
11643
11785
|
<tbody>
|
|
11644
11786
|
<tr class="doc-section-item">
|
|
11645
|
-
<td><code>render_as</code></td>
|
|
11646
11787
|
<td>
|
|
11647
|
-
|
|
11788
|
+
<code>render_as</code>
|
|
11789
|
+
</td>
|
|
11790
|
+
<td>
|
|
11791
|
+
<code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.BaseTextPanel.RenderOptions" href="#nautobot.apps.ui.BaseTextPanel.RenderOptions">RenderOptions</a></code>
|
|
11648
11792
|
</td>
|
|
11649
11793
|
<td>
|
|
11650
11794
|
<div class="doc-md-description">
|
|
@@ -11652,13 +11796,15 @@
|
|
|
11652
11796
|
</div>
|
|
11653
11797
|
</td>
|
|
11654
11798
|
<td>
|
|
11655
|
-
<code><
|
|
11799
|
+
<code><span title="nautobot.core.ui.object_detail.BaseTextPanel.RenderOptions.MARKDOWN">MARKDOWN</span></code>
|
|
11656
11800
|
</td>
|
|
11657
11801
|
</tr>
|
|
11658
11802
|
<tr class="doc-section-item">
|
|
11659
|
-
<td><code>render_placeholder</code></td>
|
|
11660
11803
|
<td>
|
|
11661
|
-
|
|
11804
|
+
<code>render_placeholder</code>
|
|
11805
|
+
</td>
|
|
11806
|
+
<td>
|
|
11807
|
+
<code>bool</code>
|
|
11662
11808
|
</td>
|
|
11663
11809
|
<td>
|
|
11664
11810
|
<div class="doc-md-description">
|
|
@@ -11670,9 +11816,11 @@
|
|
|
11670
11816
|
</td>
|
|
11671
11817
|
</tr>
|
|
11672
11818
|
<tr class="doc-section-item">
|
|
11673
|
-
<td><code>body_content_template_path</code></td>
|
|
11674
11819
|
<td>
|
|
11675
|
-
|
|
11820
|
+
<code>body_content_template_path</code>
|
|
11821
|
+
</td>
|
|
11822
|
+
<td>
|
|
11823
|
+
<code>str</code>
|
|
11676
11824
|
</td>
|
|
11677
11825
|
<td>
|
|
11678
11826
|
<div class="doc-md-description">
|
|
@@ -11685,9 +11833,11 @@ Can be overridden for custom use cases.</p>
|
|
|
11685
11833
|
</td>
|
|
11686
11834
|
</tr>
|
|
11687
11835
|
<tr class="doc-section-item">
|
|
11688
|
-
<td><code>kwargs</code></td>
|
|
11689
11836
|
<td>
|
|
11690
|
-
|
|
11837
|
+
<code>kwargs</code>
|
|
11838
|
+
</td>
|
|
11839
|
+
<td>
|
|
11840
|
+
<code>dict</code>
|
|
11691
11841
|
</td>
|
|
11692
11842
|
<td>
|
|
11693
11843
|
<div class="doc-md-description">
|
|
@@ -11726,10 +11876,15 @@ Can be overridden for custom use cases.</p>
|
|
|
11726
11876
|
|
|
11727
11877
|
<div class="doc doc-contents ">
|
|
11728
11878
|
<p class="doc doc-class-bases">
|
|
11729
|
-
Bases: <code><
|
|
11879
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Component" href="#nautobot.apps.ui.Component">Component</a></code></p>
|
|
11880
|
+
|
|
11881
|
+
|
|
11882
|
+
<p>Base class for UI framework definition of a single button within an Object Detail (Object Retrieve) page.</p>
|
|
11883
|
+
|
|
11884
|
+
|
|
11885
|
+
|
|
11730
11886
|
|
|
11731
11887
|
|
|
11732
|
-
<p>Base class for UI framework definition of a single button within an Object Detail (Object Retrieve) page.</p>
|
|
11733
11888
|
|
|
11734
11889
|
|
|
11735
11890
|
|
|
@@ -11755,7 +11910,7 @@ Can be overridden for custom use cases.</p>
|
|
|
11755
11910
|
|
|
11756
11911
|
<div class="doc doc-contents ">
|
|
11757
11912
|
|
|
11758
|
-
|
|
11913
|
+
<p>Initialize a Button component.</p>
|
|
11759
11914
|
|
|
11760
11915
|
|
|
11761
11916
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -11770,9 +11925,11 @@ Can be overridden for custom use cases.</p>
|
|
|
11770
11925
|
</thead>
|
|
11771
11926
|
<tbody>
|
|
11772
11927
|
<tr class="doc-section-item">
|
|
11773
|
-
<td><code>label</code></td>
|
|
11774
11928
|
<td>
|
|
11775
|
-
|
|
11929
|
+
<code>label</code>
|
|
11930
|
+
</td>
|
|
11931
|
+
<td>
|
|
11932
|
+
<code>str</code>
|
|
11776
11933
|
</td>
|
|
11777
11934
|
<td>
|
|
11778
11935
|
<div class="doc-md-description">
|
|
@@ -11784,9 +11941,11 @@ Can be overridden for custom use cases.</p>
|
|
|
11784
11941
|
</td>
|
|
11785
11942
|
</tr>
|
|
11786
11943
|
<tr class="doc-section-item">
|
|
11787
|
-
<td><code>color</code></td>
|
|
11788
11944
|
<td>
|
|
11789
|
-
|
|
11945
|
+
<code>color</code>
|
|
11946
|
+
</td>
|
|
11947
|
+
<td>
|
|
11948
|
+
<code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ButtonColorChoices" href="#nautobot.apps.ui.ButtonColorChoices">ButtonColorChoices</a></code>
|
|
11790
11949
|
</td>
|
|
11791
11950
|
<td>
|
|
11792
11951
|
<div class="doc-md-description">
|
|
@@ -11794,13 +11953,15 @@ Can be overridden for custom use cases.</p>
|
|
|
11794
11953
|
</div>
|
|
11795
11954
|
</td>
|
|
11796
11955
|
<td>
|
|
11797
|
-
<code><
|
|
11956
|
+
<code><span title="nautobot.core.choices.ButtonColorChoices.DEFAULT">DEFAULT</span></code>
|
|
11798
11957
|
</td>
|
|
11799
11958
|
</tr>
|
|
11800
11959
|
<tr class="doc-section-item">
|
|
11801
|
-
<td><code>link_name</code></td>
|
|
11802
11960
|
<td>
|
|
11803
|
-
|
|
11961
|
+
<code>link_name</code>
|
|
11962
|
+
</td>
|
|
11963
|
+
<td>
|
|
11964
|
+
<code>str</code>
|
|
11804
11965
|
</td>
|
|
11805
11966
|
<td>
|
|
11806
11967
|
<div class="doc-md-description">
|
|
@@ -11815,9 +11976,11 @@ and override the <code>get_link()</code> method.</p>
|
|
|
11815
11976
|
</td>
|
|
11816
11977
|
</tr>
|
|
11817
11978
|
<tr class="doc-section-item">
|
|
11818
|
-
<td><code>icon</code></td>
|
|
11819
11979
|
<td>
|
|
11820
|
-
|
|
11980
|
+
<code>icon</code>
|
|
11981
|
+
</td>
|
|
11982
|
+
<td>
|
|
11983
|
+
<code>str</code>
|
|
11821
11984
|
</td>
|
|
11822
11985
|
<td>
|
|
11823
11986
|
<div class="doc-md-description">
|
|
@@ -11829,9 +11992,11 @@ and override the <code>get_link()</code> method.</p>
|
|
|
11829
11992
|
</td>
|
|
11830
11993
|
</tr>
|
|
11831
11994
|
<tr class="doc-section-item">
|
|
11832
|
-
<td><code>template_path</code></td>
|
|
11833
11995
|
<td>
|
|
11834
|
-
|
|
11996
|
+
<code>template_path</code>
|
|
11997
|
+
</td>
|
|
11998
|
+
<td>
|
|
11999
|
+
<code>str</code>
|
|
11835
12000
|
</td>
|
|
11836
12001
|
<td>
|
|
11837
12002
|
<div class="doc-md-description">
|
|
@@ -11843,9 +12008,11 @@ and override the <code>get_link()</code> method.</p>
|
|
|
11843
12008
|
</td>
|
|
11844
12009
|
</tr>
|
|
11845
12010
|
<tr class="doc-section-item">
|
|
11846
|
-
<td><code>required_permissions</code></td>
|
|
11847
12011
|
<td>
|
|
11848
|
-
|
|
12012
|
+
<code>required_permissions</code>
|
|
12013
|
+
</td>
|
|
12014
|
+
<td>
|
|
12015
|
+
<code>list</code>
|
|
11849
12016
|
</td>
|
|
11850
12017
|
<td>
|
|
11851
12018
|
<div class="doc-md-description">
|
|
@@ -11858,9 +12025,11 @@ The button will only be rendered if the user has these permissions.</p>
|
|
|
11858
12025
|
</td>
|
|
11859
12026
|
</tr>
|
|
11860
12027
|
<tr class="doc-section-item">
|
|
11861
|
-
<td><code>javascript_template_path</code></td>
|
|
11862
12028
|
<td>
|
|
11863
|
-
|
|
12029
|
+
<code>javascript_template_path</code>
|
|
12030
|
+
</td>
|
|
12031
|
+
<td>
|
|
12032
|
+
<code>str</code>
|
|
11864
12033
|
</td>
|
|
11865
12034
|
<td>
|
|
11866
12035
|
<div class="doc-md-description">
|
|
@@ -11873,9 +12042,11 @@ Does not need to include the wrapping <code><script>...</script></co
|
|
|
11873
12042
|
</td>
|
|
11874
12043
|
</tr>
|
|
11875
12044
|
<tr class="doc-section-item">
|
|
11876
|
-
<td><code>attributes</code></td>
|
|
11877
12045
|
<td>
|
|
11878
|
-
|
|
12046
|
+
<code>attributes</code>
|
|
12047
|
+
</td>
|
|
12048
|
+
<td>
|
|
12049
|
+
<code>dict</code>
|
|
11879
12050
|
</td>
|
|
11880
12051
|
<td>
|
|
11881
12052
|
<div class="doc-md-description">
|
|
@@ -11904,7 +12075,7 @@ Does not need to include the wrapping <code><script>...</script></co
|
|
|
11904
12075
|
|
|
11905
12076
|
<div class="doc doc-contents ">
|
|
11906
12077
|
|
|
11907
|
-
|
|
12078
|
+
<p>Add the relevant attributes of this Button to the context.</p>
|
|
11908
12079
|
|
|
11909
12080
|
</div>
|
|
11910
12081
|
|
|
@@ -11921,7 +12092,7 @@ Does not need to include the wrapping <code><script>...</script></co
|
|
|
11921
12092
|
|
|
11922
12093
|
<div class="doc doc-contents ">
|
|
11923
12094
|
|
|
11924
|
-
|
|
12095
|
+
<p>Get the hyperlink URL (if any) for this button.</p>
|
|
11925
12096
|
<p>Defaults to reversing <code>self.link_name</code> with <code>pk: obj.pk</code> as a kwarg, but subclasses may override this for
|
|
11926
12097
|
more advanced link construction.</p>
|
|
11927
12098
|
|
|
@@ -11940,7 +12111,7 @@ more advanced link construction.</p>
|
|
|
11940
12111
|
|
|
11941
12112
|
<div class="doc doc-contents ">
|
|
11942
12113
|
|
|
11943
|
-
|
|
12114
|
+
<p>Render this button to HTML, possibly including any associated JavaScript.</p>
|
|
11944
12115
|
|
|
11945
12116
|
</div>
|
|
11946
12117
|
|
|
@@ -11957,7 +12128,7 @@ more advanced link construction.</p>
|
|
|
11957
12128
|
|
|
11958
12129
|
<div class="doc doc-contents ">
|
|
11959
12130
|
|
|
11960
|
-
|
|
12131
|
+
<p>Render if and only if the requesting user has appropriate permissions (if any).</p>
|
|
11961
12132
|
|
|
11962
12133
|
</div>
|
|
11963
12134
|
|
|
@@ -11984,10 +12155,15 @@ more advanced link construction.</p>
|
|
|
11984
12155
|
|
|
11985
12156
|
<div class="doc doc-contents ">
|
|
11986
12157
|
<p class="doc doc-class-bases">
|
|
11987
|
-
Bases: <code><
|
|
12158
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
|
|
12159
|
+
|
|
12160
|
+
|
|
12161
|
+
<p>Map standard button color choices to Bootstrap color classes</p>
|
|
12162
|
+
|
|
12163
|
+
|
|
12164
|
+
|
|
11988
12165
|
|
|
11989
12166
|
|
|
11990
|
-
<p>Map standard button color choices to Bootstrap color classes</p>
|
|
11991
12167
|
|
|
11992
12168
|
|
|
11993
12169
|
|
|
@@ -12024,7 +12200,12 @@ more advanced link construction.</p>
|
|
|
12024
12200
|
<div class="doc doc-contents ">
|
|
12025
12201
|
|
|
12026
12202
|
|
|
12027
|
-
|
|
12203
|
+
<p>Common base class for renderable components (tabs, panels, etc.).</p>
|
|
12204
|
+
|
|
12205
|
+
|
|
12206
|
+
|
|
12207
|
+
|
|
12208
|
+
|
|
12028
12209
|
|
|
12029
12210
|
|
|
12030
12211
|
|
|
@@ -12050,7 +12231,7 @@ more advanced link construction.</p>
|
|
|
12050
12231
|
|
|
12051
12232
|
<div class="doc doc-contents ">
|
|
12052
12233
|
|
|
12053
|
-
|
|
12234
|
+
<p>Initialize common Component properties.</p>
|
|
12054
12235
|
|
|
12055
12236
|
|
|
12056
12237
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -12065,9 +12246,11 @@ more advanced link construction.</p>
|
|
|
12065
12246
|
</thead>
|
|
12066
12247
|
<tbody>
|
|
12067
12248
|
<tr class="doc-section-item">
|
|
12068
|
-
<td><code>weight</code></td>
|
|
12069
12249
|
<td>
|
|
12070
|
-
|
|
12250
|
+
<code>weight</code>
|
|
12251
|
+
</td>
|
|
12252
|
+
<td>
|
|
12253
|
+
<code>int</code>
|
|
12071
12254
|
</td>
|
|
12072
12255
|
<td>
|
|
12073
12256
|
<div class="doc-md-description">
|
|
@@ -12097,7 +12280,7 @@ rendered "first", usually towards the top left of the page.</p>
|
|
|
12097
12280
|
|
|
12098
12281
|
<div class="doc doc-contents ">
|
|
12099
12282
|
|
|
12100
|
-
|
|
12283
|
+
<p>Provide additional data to include in the rendering context, based on the configuration of this component.</p>
|
|
12101
12284
|
|
|
12102
12285
|
|
|
12103
12286
|
<p><span class="doc-section-title">Returns:</span></p>
|
|
@@ -12111,7 +12294,7 @@ rendered "first", usually towards the top left of the page.</p>
|
|
|
12111
12294
|
<tbody>
|
|
12112
12295
|
<tr class="doc-section-item">
|
|
12113
12296
|
<td>
|
|
12114
|
-
<code
|
|
12297
|
+
<code>dict</code>
|
|
12115
12298
|
</td>
|
|
12116
12299
|
<td>
|
|
12117
12300
|
<div class="doc-md-description">
|
|
@@ -12137,7 +12320,7 @@ rendered "first", usually towards the top left of the page.</p>
|
|
|
12137
12320
|
|
|
12138
12321
|
<div class="doc doc-contents ">
|
|
12139
12322
|
|
|
12140
|
-
|
|
12323
|
+
<p>Render this component to HTML.</p>
|
|
12141
12324
|
<p>Note that not all Components are fully or solely rendered by their <code>render()</code> method alone, for example,
|
|
12142
12325
|
a Tab has a separate "label" that must be rendered by calling its <code>render_label_wrapper()</code> API instead.</p>
|
|
12143
12326
|
|
|
@@ -12153,7 +12336,7 @@ a Tab has a separate "label" that must be rendered by calling its <code>render_l
|
|
|
12153
12336
|
<tbody>
|
|
12154
12337
|
<tr class="doc-section-item">
|
|
12155
12338
|
<td>
|
|
12156
|
-
<code
|
|
12339
|
+
<code>str</code>
|
|
12157
12340
|
</td>
|
|
12158
12341
|
<td>
|
|
12159
12342
|
<div class="doc-md-description">
|
|
@@ -12179,7 +12362,7 @@ a Tab has a separate "label" that must be rendered by calling its <code>render_l
|
|
|
12179
12362
|
|
|
12180
12363
|
<div class="doc doc-contents ">
|
|
12181
12364
|
|
|
12182
|
-
|
|
12365
|
+
<p>Check whether this component should be rendered at all.</p>
|
|
12183
12366
|
<p>This API is designed to provide "short-circuit" logic for skipping what otherwise might be expensive rendering.
|
|
12184
12367
|
In general most Components may also return an empty string when actually rendered, which is typically also a
|
|
12185
12368
|
means to specify that they do not need to be rendered, but may be more expensive to derive.</p>
|
|
@@ -12196,7 +12379,7 @@ means to specify that they do not need to be rendered, but may be more expensive
|
|
|
12196
12379
|
<tbody>
|
|
12197
12380
|
<tr class="doc-section-item">
|
|
12198
12381
|
<td>
|
|
12199
|
-
<code
|
|
12382
|
+
<code>bool</code>
|
|
12200
12383
|
</td>
|
|
12201
12384
|
<td>
|
|
12202
12385
|
<div class="doc-md-description">
|
|
@@ -12232,10 +12415,15 @@ means to specify that they do not need to be rendered, but may be more expensive
|
|
|
12232
12415
|
|
|
12233
12416
|
<div class="doc doc-contents ">
|
|
12234
12417
|
<p class="doc doc-class-bases">
|
|
12235
|
-
Bases: <code><
|
|
12418
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Panel" href="#nautobot.apps.ui.Panel">Panel</a></code></p>
|
|
12419
|
+
|
|
12420
|
+
|
|
12421
|
+
<p>A panel that renders a table generated directly from a list of dicts, without using a django_tables2 Table class.</p>
|
|
12422
|
+
|
|
12423
|
+
|
|
12424
|
+
|
|
12236
12425
|
|
|
12237
12426
|
|
|
12238
|
-
<p>A panel that renders a table generated directly from a list of dicts, without using a django_tables2 Table class.</p>
|
|
12239
12427
|
|
|
12240
12428
|
|
|
12241
12429
|
|
|
@@ -12261,7 +12449,7 @@ means to specify that they do not need to be rendered, but may be more expensive
|
|
|
12261
12449
|
|
|
12262
12450
|
<div class="doc doc-contents ">
|
|
12263
12451
|
|
|
12264
|
-
|
|
12452
|
+
<p>Instantiate a DataDictTablePanel.</p>
|
|
12265
12453
|
|
|
12266
12454
|
|
|
12267
12455
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -12276,9 +12464,11 @@ means to specify that they do not need to be rendered, but may be more expensive
|
|
|
12276
12464
|
</thead>
|
|
12277
12465
|
<tbody>
|
|
12278
12466
|
<tr class="doc-section-item">
|
|
12279
|
-
<td><code>context_data_key</code></td>
|
|
12280
12467
|
<td>
|
|
12281
|
-
|
|
12468
|
+
<code>context_data_key</code>
|
|
12469
|
+
</td>
|
|
12470
|
+
<td>
|
|
12471
|
+
<code>str</code>
|
|
12282
12472
|
</td>
|
|
12283
12473
|
<td>
|
|
12284
12474
|
<div class="doc-md-description">
|
|
@@ -12290,9 +12480,11 @@ means to specify that they do not need to be rendered, but may be more expensive
|
|
|
12290
12480
|
</td>
|
|
12291
12481
|
</tr>
|
|
12292
12482
|
<tr class="doc-section-item">
|
|
12293
|
-
<td><code>columns</code></td>
|
|
12294
12483
|
<td>
|
|
12295
|
-
|
|
12484
|
+
<code>columns</code>
|
|
12485
|
+
</td>
|
|
12486
|
+
<td>
|
|
12487
|
+
<code>list</code>
|
|
12296
12488
|
</td>
|
|
12297
12489
|
<td>
|
|
12298
12490
|
<div class="doc-md-description">
|
|
@@ -12306,9 +12498,11 @@ If neither are specified, the keys of the first dict in the data will be used.</
|
|
|
12306
12498
|
</td>
|
|
12307
12499
|
</tr>
|
|
12308
12500
|
<tr class="doc-section-item">
|
|
12309
|
-
<td><code>context_columns_key</code></td>
|
|
12310
12501
|
<td>
|
|
12311
|
-
|
|
12502
|
+
<code>context_columns_key</code>
|
|
12503
|
+
</td>
|
|
12504
|
+
<td>
|
|
12505
|
+
<code>str</code>
|
|
12312
12506
|
</td>
|
|
12313
12507
|
<td>
|
|
12314
12508
|
<div class="doc-md-description">
|
|
@@ -12322,9 +12516,11 @@ If neither are specified, the keys of the first dict in the data will be used.</
|
|
|
12322
12516
|
</td>
|
|
12323
12517
|
</tr>
|
|
12324
12518
|
<tr class="doc-section-item">
|
|
12325
|
-
<td><code>column_headers</code></td>
|
|
12326
12519
|
<td>
|
|
12327
|
-
|
|
12520
|
+
<code>column_headers</code>
|
|
12521
|
+
</td>
|
|
12522
|
+
<td>
|
|
12523
|
+
<code>list</code>
|
|
12328
12524
|
</td>
|
|
12329
12525
|
<td>
|
|
12330
12526
|
<div class="doc-md-description">
|
|
@@ -12337,9 +12533,11 @@ Mutually exclusive with <code>context_column_headers_key</code>.</p>
|
|
|
12337
12533
|
</td>
|
|
12338
12534
|
</tr>
|
|
12339
12535
|
<tr class="doc-section-item">
|
|
12340
|
-
<td><code>context_column_headers_key</code></td>
|
|
12341
12536
|
<td>
|
|
12342
|
-
|
|
12537
|
+
<code>context_column_headers_key</code>
|
|
12538
|
+
</td>
|
|
12539
|
+
<td>
|
|
12540
|
+
<code>str</code>
|
|
12343
12541
|
</td>
|
|
12344
12542
|
<td>
|
|
12345
12543
|
<div class="doc-md-description">
|
|
@@ -12379,10 +12577,15 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12379
12577
|
|
|
12380
12578
|
<div class="doc doc-contents ">
|
|
12381
12579
|
<p class="doc doc-class-bases">
|
|
12382
|
-
Bases: <code><
|
|
12580
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Tab" href="#nautobot.apps.ui.Tab">Tab</a></code></p>
|
|
12581
|
+
|
|
12582
|
+
|
|
12583
|
+
<p>A Tab that doesn't render inline on the same page, but instead links to a distinct view of its own when clicked.</p>
|
|
12584
|
+
|
|
12585
|
+
|
|
12586
|
+
|
|
12383
12587
|
|
|
12384
12588
|
|
|
12385
|
-
<p>A Tab that doesn't render inline on the same page, but instead links to a distinct view of its own when clicked.</p>
|
|
12386
12589
|
|
|
12387
12590
|
|
|
12388
12591
|
|
|
@@ -12418,10 +12621,15 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12418
12621
|
|
|
12419
12622
|
<div class="doc doc-contents ">
|
|
12420
12623
|
<p class="doc doc-class-bases">
|
|
12421
|
-
Bases: <code><
|
|
12624
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Button" href="#nautobot.apps.ui.Button">Button</a></code></p>
|
|
12625
|
+
|
|
12626
|
+
|
|
12627
|
+
<p>A Button that has one or more other buttons as <code>children</code>, which it renders into a dropdown menu.</p>
|
|
12628
|
+
|
|
12629
|
+
|
|
12630
|
+
|
|
12422
12631
|
|
|
12423
12632
|
|
|
12424
|
-
<p>A Button that has one or more other buttons as <code>children</code>, which it renders into a dropdown menu.</p>
|
|
12425
12633
|
|
|
12426
12634
|
|
|
12427
12635
|
|
|
@@ -12447,7 +12655,7 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12447
12655
|
|
|
12448
12656
|
<div class="doc doc-contents ">
|
|
12449
12657
|
|
|
12450
|
-
|
|
12658
|
+
<p>Initialize a DropdownButton component.</p>
|
|
12451
12659
|
|
|
12452
12660
|
|
|
12453
12661
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -12462,9 +12670,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12462
12670
|
</thead>
|
|
12463
12671
|
<tbody>
|
|
12464
12672
|
<tr class="doc-section-item">
|
|
12465
|
-
<td><code>children</code></td>
|
|
12466
12673
|
<td>
|
|
12467
|
-
|
|
12674
|
+
<code>children</code>
|
|
12675
|
+
</td>
|
|
12676
|
+
<td>
|
|
12677
|
+
<code>list[<a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Button" href="#nautobot.apps.ui.Button">Button</a>]</code>
|
|
12468
12678
|
</td>
|
|
12469
12679
|
<td>
|
|
12470
12680
|
<div class="doc-md-description">
|
|
@@ -12476,9 +12686,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12476
12686
|
</td>
|
|
12477
12687
|
</tr>
|
|
12478
12688
|
<tr class="doc-section-item">
|
|
12479
|
-
<td><code>template_path</code></td>
|
|
12480
12689
|
<td>
|
|
12481
|
-
|
|
12690
|
+
<code>template_path</code>
|
|
12691
|
+
</td>
|
|
12692
|
+
<td>
|
|
12693
|
+
<code>str</code>
|
|
12482
12694
|
</td>
|
|
12483
12695
|
<td>
|
|
12484
12696
|
<div class="doc-md-description">
|
|
@@ -12507,7 +12719,7 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12507
12719
|
|
|
12508
12720
|
<div class="doc doc-contents ">
|
|
12509
12721
|
|
|
12510
|
-
|
|
12722
|
+
<p>Add the children of this DropdownButton to the other Button context.</p>
|
|
12511
12723
|
|
|
12512
12724
|
</div>
|
|
12513
12725
|
|
|
@@ -12534,16 +12746,21 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12534
12746
|
|
|
12535
12747
|
<div class="doc doc-contents ">
|
|
12536
12748
|
<p class="doc doc-class-bases">
|
|
12537
|
-
Bases: <code><
|
|
12749
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.KeyValueTablePanel" href="#nautobot.apps.ui.KeyValueTablePanel">KeyValueTablePanel</a></code></p>
|
|
12538
12750
|
|
|
12539
12751
|
|
|
12540
|
-
|
|
12752
|
+
<p>A KeyValueTablePanel that displays its data within collapsible accordion groupings, such as object custom fields.</p>
|
|
12541
12753
|
<p>Expects data in the form <code>{grouping1: {key1: value1, key2: value2, ...}, grouping2: {...}, ...}</code>.</p>
|
|
12542
12754
|
<p>The special grouping <code>""</code> may be used to indicate top-level key/value pairs that don't belong to a group.</p>
|
|
12543
12755
|
|
|
12544
12756
|
|
|
12545
12757
|
|
|
12546
12758
|
|
|
12759
|
+
|
|
12760
|
+
|
|
12761
|
+
|
|
12762
|
+
|
|
12763
|
+
|
|
12547
12764
|
<div class="doc doc-children">
|
|
12548
12765
|
|
|
12549
12766
|
|
|
@@ -12565,7 +12782,7 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12565
12782
|
|
|
12566
12783
|
<div class="doc doc-contents ">
|
|
12567
12784
|
|
|
12568
|
-
|
|
12785
|
+
<p>Render groups of key-value pairs to HTML.</p>
|
|
12569
12786
|
|
|
12570
12787
|
</div>
|
|
12571
12788
|
|
|
@@ -12582,7 +12799,7 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12582
12799
|
|
|
12583
12800
|
<div class="doc doc-contents ">
|
|
12584
12801
|
|
|
12585
|
-
|
|
12802
|
+
<p>Add a "Collapse All" button to the header.</p>
|
|
12586
12803
|
|
|
12587
12804
|
</div>
|
|
12588
12805
|
|
|
@@ -12609,10 +12826,15 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12609
12826
|
|
|
12610
12827
|
<div class="doc doc-contents ">
|
|
12611
12828
|
<p class="doc doc-class-bases">
|
|
12612
|
-
Bases: <code><
|
|
12829
|
+
Bases: <code><span title="abc.ABC">ABC</span></code></p>
|
|
12830
|
+
|
|
12831
|
+
|
|
12832
|
+
<p>Base class for homepage layout classes.</p>
|
|
12833
|
+
|
|
12834
|
+
|
|
12835
|
+
|
|
12613
12836
|
|
|
12614
12837
|
|
|
12615
|
-
<p>Base class for homepage layout classes.</p>
|
|
12616
12838
|
|
|
12617
12839
|
|
|
12618
12840
|
|
|
@@ -12648,10 +12870,15 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12648
12870
|
|
|
12649
12871
|
<div class="doc doc-contents ">
|
|
12650
12872
|
<p class="doc doc-class-bases">
|
|
12651
|
-
Bases: <code><
|
|
12873
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.homepage.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.base.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
12874
|
+
|
|
12875
|
+
|
|
12876
|
+
<p>Defines properties that can be used for a panel group.</p>
|
|
12877
|
+
|
|
12878
|
+
|
|
12879
|
+
|
|
12652
12880
|
|
|
12653
12881
|
|
|
12654
|
-
<p>Defines properties that can be used for a panel group.</p>
|
|
12655
12882
|
|
|
12656
12883
|
|
|
12657
12884
|
|
|
@@ -12677,7 +12904,7 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12677
12904
|
|
|
12678
12905
|
<div class="doc doc-contents ">
|
|
12679
12906
|
|
|
12680
|
-
|
|
12907
|
+
<p>Ensure group properties.</p>
|
|
12681
12908
|
|
|
12682
12909
|
|
|
12683
12910
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -12692,9 +12919,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12692
12919
|
</thead>
|
|
12693
12920
|
<tbody>
|
|
12694
12921
|
<tr class="doc-section-item">
|
|
12695
|
-
<td><code>name</code></td>
|
|
12696
12922
|
<td>
|
|
12697
|
-
|
|
12923
|
+
<code>name</code>
|
|
12924
|
+
</td>
|
|
12925
|
+
<td>
|
|
12926
|
+
<code>str</code>
|
|
12698
12927
|
</td>
|
|
12699
12928
|
<td>
|
|
12700
12929
|
<div class="doc-md-description">
|
|
@@ -12706,9 +12935,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12706
12935
|
</td>
|
|
12707
12936
|
</tr>
|
|
12708
12937
|
<tr class="doc-section-item">
|
|
12709
|
-
<td><code>permissions</code></td>
|
|
12710
12938
|
<td>
|
|
12711
|
-
|
|
12939
|
+
<code>permissions</code>
|
|
12940
|
+
</td>
|
|
12941
|
+
<td>
|
|
12942
|
+
<code>list</code>
|
|
12712
12943
|
</td>
|
|
12713
12944
|
<td>
|
|
12714
12945
|
<div class="doc-md-description">
|
|
@@ -12720,9 +12951,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12720
12951
|
</td>
|
|
12721
12952
|
</tr>
|
|
12722
12953
|
<tr class="doc-section-item">
|
|
12723
|
-
<td><code>items</code></td>
|
|
12724
12954
|
<td>
|
|
12725
|
-
|
|
12955
|
+
<code>items</code>
|
|
12956
|
+
</td>
|
|
12957
|
+
<td>
|
|
12958
|
+
<code>list</code>
|
|
12726
12959
|
</td>
|
|
12727
12960
|
<td>
|
|
12728
12961
|
<div class="doc-md-description">
|
|
@@ -12734,9 +12967,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12734
12967
|
</td>
|
|
12735
12968
|
</tr>
|
|
12736
12969
|
<tr class="doc-section-item">
|
|
12737
|
-
<td><code>weight</code></td>
|
|
12738
12970
|
<td>
|
|
12739
|
-
|
|
12971
|
+
<code>weight</code>
|
|
12972
|
+
</td>
|
|
12973
|
+
<td>
|
|
12974
|
+
<code>int</code>
|
|
12740
12975
|
</td>
|
|
12741
12976
|
<td>
|
|
12742
12977
|
<div class="doc-md-description">
|
|
@@ -12775,10 +13010,15 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12775
13010
|
|
|
12776
13011
|
<div class="doc doc-contents ">
|
|
12777
13012
|
<p class="doc doc-class-bases">
|
|
12778
|
-
Bases: <code><
|
|
13013
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.homepage.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.base.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
13014
|
+
|
|
13015
|
+
|
|
13016
|
+
<p>Defines properties that can be used for a panel item.</p>
|
|
13017
|
+
|
|
13018
|
+
|
|
13019
|
+
|
|
12779
13020
|
|
|
12780
13021
|
|
|
12781
|
-
<p>Defines properties that can be used for a panel item.</p>
|
|
12782
13022
|
|
|
12783
13023
|
|
|
12784
13024
|
|
|
@@ -12804,7 +13044,7 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12804
13044
|
|
|
12805
13045
|
<div class="doc doc-contents ">
|
|
12806
13046
|
|
|
12807
|
-
|
|
13047
|
+
<p>Ensure item properties.</p>
|
|
12808
13048
|
|
|
12809
13049
|
|
|
12810
13050
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -12819,9 +13059,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12819
13059
|
</thead>
|
|
12820
13060
|
<tbody>
|
|
12821
13061
|
<tr class="doc-section-item">
|
|
12822
|
-
<td><code>name</code></td>
|
|
12823
13062
|
<td>
|
|
12824
|
-
|
|
13063
|
+
<code>name</code>
|
|
13064
|
+
</td>
|
|
13065
|
+
<td>
|
|
13066
|
+
<code>str</code>
|
|
12825
13067
|
</td>
|
|
12826
13068
|
<td>
|
|
12827
13069
|
<div class="doc-md-description">
|
|
@@ -12833,9 +13075,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12833
13075
|
</td>
|
|
12834
13076
|
</tr>
|
|
12835
13077
|
<tr class="doc-section-item">
|
|
12836
|
-
<td><code>link</code></td>
|
|
12837
13078
|
<td>
|
|
12838
|
-
|
|
13079
|
+
<code>link</code>
|
|
13080
|
+
</td>
|
|
13081
|
+
<td>
|
|
13082
|
+
<code>str</code>
|
|
12839
13083
|
</td>
|
|
12840
13084
|
<td>
|
|
12841
13085
|
<div class="doc-md-description">
|
|
@@ -12847,9 +13091,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12847
13091
|
</td>
|
|
12848
13092
|
</tr>
|
|
12849
13093
|
<tr class="doc-section-item">
|
|
12850
|
-
<td><code>model</code></td>
|
|
12851
13094
|
<td>
|
|
12852
|
-
|
|
13095
|
+
<code>model</code>
|
|
13096
|
+
</td>
|
|
13097
|
+
<td>
|
|
13098
|
+
<code>str</code>
|
|
12853
13099
|
</td>
|
|
12854
13100
|
<td>
|
|
12855
13101
|
<div class="doc-md-description">
|
|
@@ -12861,9 +13107,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12861
13107
|
</td>
|
|
12862
13108
|
</tr>
|
|
12863
13109
|
<tr class="doc-section-item">
|
|
12864
|
-
<td><code>custom_template</code></td>
|
|
12865
13110
|
<td>
|
|
12866
|
-
|
|
13111
|
+
<code>custom_template</code>
|
|
13112
|
+
</td>
|
|
13113
|
+
<td>
|
|
13114
|
+
<code>str</code>
|
|
12867
13115
|
</td>
|
|
12868
13116
|
<td>
|
|
12869
13117
|
<div class="doc-md-description">
|
|
@@ -12875,9 +13123,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12875
13123
|
</td>
|
|
12876
13124
|
</tr>
|
|
12877
13125
|
<tr class="doc-section-item">
|
|
12878
|
-
<td><code>custom_data</code></td>
|
|
12879
13126
|
<td>
|
|
12880
|
-
|
|
13127
|
+
<code>custom_data</code>
|
|
13128
|
+
</td>
|
|
13129
|
+
<td>
|
|
13130
|
+
<code>dict</code>
|
|
12881
13131
|
</td>
|
|
12882
13132
|
<td>
|
|
12883
13133
|
<div class="doc-md-description">
|
|
@@ -12916,10 +13166,15 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12916
13166
|
|
|
12917
13167
|
<div class="doc doc-contents ">
|
|
12918
13168
|
<p class="doc doc-class-bases">
|
|
12919
|
-
Bases: <code><
|
|
13169
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.homepage.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.base.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
13170
|
+
|
|
13171
|
+
|
|
13172
|
+
<p>Defines properties that can be used for a panel.</p>
|
|
13173
|
+
|
|
13174
|
+
|
|
13175
|
+
|
|
12920
13176
|
|
|
12921
13177
|
|
|
12922
|
-
<p>Defines properties that can be used for a panel.</p>
|
|
12923
13178
|
|
|
12924
13179
|
|
|
12925
13180
|
|
|
@@ -12945,7 +13200,7 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12945
13200
|
|
|
12946
13201
|
<div class="doc doc-contents ">
|
|
12947
13202
|
|
|
12948
|
-
|
|
13203
|
+
<p>Ensure panel properties.</p>
|
|
12949
13204
|
|
|
12950
13205
|
|
|
12951
13206
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -12960,9 +13215,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12960
13215
|
</thead>
|
|
12961
13216
|
<tbody>
|
|
12962
13217
|
<tr class="doc-section-item">
|
|
12963
|
-
<td><code>name</code></td>
|
|
12964
13218
|
<td>
|
|
12965
|
-
|
|
13219
|
+
<code>name</code>
|
|
13220
|
+
</td>
|
|
13221
|
+
<td>
|
|
13222
|
+
<code>str</code>
|
|
12966
13223
|
</td>
|
|
12967
13224
|
<td>
|
|
12968
13225
|
<div class="doc-md-description">
|
|
@@ -12974,9 +13231,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12974
13231
|
</td>
|
|
12975
13232
|
</tr>
|
|
12976
13233
|
<tr class="doc-section-item">
|
|
12977
|
-
<td><code>permissions</code></td>
|
|
12978
13234
|
<td>
|
|
12979
|
-
|
|
13235
|
+
<code>permissions</code>
|
|
13236
|
+
</td>
|
|
13237
|
+
<td>
|
|
13238
|
+
<code>list</code>
|
|
12980
13239
|
</td>
|
|
12981
13240
|
<td>
|
|
12982
13241
|
<div class="doc-md-description">
|
|
@@ -12988,9 +13247,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
12988
13247
|
</td>
|
|
12989
13248
|
</tr>
|
|
12990
13249
|
<tr class="doc-section-item">
|
|
12991
|
-
<td><code>custom_data</code></td>
|
|
12992
13250
|
<td>
|
|
12993
|
-
|
|
13251
|
+
<code>custom_data</code>
|
|
13252
|
+
</td>
|
|
13253
|
+
<td>
|
|
13254
|
+
<code>dict</code>
|
|
12994
13255
|
</td>
|
|
12995
13256
|
<td>
|
|
12996
13257
|
<div class="doc-md-description">
|
|
@@ -13002,9 +13263,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
13002
13263
|
</td>
|
|
13003
13264
|
</tr>
|
|
13004
13265
|
<tr class="doc-section-item">
|
|
13005
|
-
<td><code>custom_template</code></td>
|
|
13006
13266
|
<td>
|
|
13007
|
-
|
|
13267
|
+
<code>custom_template</code>
|
|
13268
|
+
</td>
|
|
13269
|
+
<td>
|
|
13270
|
+
<code>str</code>
|
|
13008
13271
|
</td>
|
|
13009
13272
|
<td>
|
|
13010
13273
|
<div class="doc-md-description">
|
|
@@ -13016,9 +13279,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
13016
13279
|
</td>
|
|
13017
13280
|
</tr>
|
|
13018
13281
|
<tr class="doc-section-item">
|
|
13019
|
-
<td><code>items</code></td>
|
|
13020
13282
|
<td>
|
|
13021
|
-
|
|
13283
|
+
<code>items</code>
|
|
13284
|
+
</td>
|
|
13285
|
+
<td>
|
|
13286
|
+
<code>list</code>
|
|
13022
13287
|
</td>
|
|
13023
13288
|
<td>
|
|
13024
13289
|
<div class="doc-md-description">
|
|
@@ -13030,9 +13295,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
13030
13295
|
</td>
|
|
13031
13296
|
</tr>
|
|
13032
13297
|
<tr class="doc-section-item">
|
|
13033
|
-
<td><code>weight</code></td>
|
|
13034
13298
|
<td>
|
|
13035
|
-
|
|
13299
|
+
<code>weight</code>
|
|
13300
|
+
</td>
|
|
13301
|
+
<td>
|
|
13302
|
+
<code>int</code>
|
|
13036
13303
|
</td>
|
|
13037
13304
|
<td>
|
|
13038
13305
|
<div class="doc-md-description">
|
|
@@ -13071,10 +13338,15 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
13071
13338
|
|
|
13072
13339
|
<div class="doc doc-contents ">
|
|
13073
13340
|
<p class="doc doc-class-bases">
|
|
13074
|
-
Bases: <code><
|
|
13341
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Panel" href="#nautobot.apps.ui.Panel">Panel</a></code></p>
|
|
13342
|
+
|
|
13343
|
+
|
|
13344
|
+
<p>A panel that displays a two-column table of keys and values, as seen in most object detail views.</p>
|
|
13345
|
+
|
|
13346
|
+
|
|
13347
|
+
|
|
13075
13348
|
|
|
13076
13349
|
|
|
13077
|
-
<p>A panel that displays a two-column table of keys and values, as seen in most object detail views.</p>
|
|
13078
13350
|
|
|
13079
13351
|
|
|
13080
13352
|
|
|
@@ -13100,7 +13372,7 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
13100
13372
|
|
|
13101
13373
|
<div class="doc doc-contents ">
|
|
13102
13374
|
|
|
13103
|
-
|
|
13375
|
+
<p>Instantiate a KeyValueTablePanel.</p>
|
|
13104
13376
|
|
|
13105
13377
|
|
|
13106
13378
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -13115,9 +13387,11 @@ Mutually exclusive with <code>column_headers</code>.</p>
|
|
|
13115
13387
|
</thead>
|
|
13116
13388
|
<tbody>
|
|
13117
13389
|
<tr class="doc-section-item">
|
|
13118
|
-
<td><code>data</code></td>
|
|
13119
13390
|
<td>
|
|
13120
|
-
|
|
13391
|
+
<code>data</code>
|
|
13392
|
+
</td>
|
|
13393
|
+
<td>
|
|
13394
|
+
<code>dict</code>
|
|
13121
13395
|
</td>
|
|
13122
13396
|
<td>
|
|
13123
13397
|
<div class="doc-md-description">
|
|
@@ -13130,9 +13404,11 @@ May be <code>None</code> if it will be derived dynamically by <code>get_data()</
|
|
|
13130
13404
|
</td>
|
|
13131
13405
|
</tr>
|
|
13132
13406
|
<tr class="doc-section-item">
|
|
13133
|
-
<td><code>context_data_key</code></td>
|
|
13134
13407
|
<td>
|
|
13135
|
-
|
|
13408
|
+
<code>context_data_key</code>
|
|
13409
|
+
</td>
|
|
13410
|
+
<td>
|
|
13411
|
+
<code>str</code>
|
|
13136
13412
|
</td>
|
|
13137
13413
|
<td>
|
|
13138
13414
|
<div class="doc-md-description">
|
|
@@ -13144,9 +13420,11 @@ May be <code>None</code> if it will be derived dynamically by <code>get_data()</
|
|
|
13144
13420
|
</td>
|
|
13145
13421
|
</tr>
|
|
13146
13422
|
<tr class="doc-section-item">
|
|
13147
|
-
<td><code>hide_if_unset</code></td>
|
|
13148
13423
|
<td>
|
|
13149
|
-
|
|
13424
|
+
<code>hide_if_unset</code>
|
|
13425
|
+
</td>
|
|
13426
|
+
<td>
|
|
13427
|
+
<code>list</code>
|
|
13150
13428
|
</td>
|
|
13151
13429
|
<td>
|
|
13152
13430
|
<div class="doc-md-description">
|
|
@@ -13159,9 +13437,11 @@ instead of displaying the usual em-dash placeholder text.</p>
|
|
|
13159
13437
|
</td>
|
|
13160
13438
|
</tr>
|
|
13161
13439
|
<tr class="doc-section-item">
|
|
13162
|
-
<td><code>value_transforms</code></td>
|
|
13163
13440
|
<td>
|
|
13164
|
-
|
|
13441
|
+
<code>value_transforms</code>
|
|
13442
|
+
</td>
|
|
13443
|
+
<td>
|
|
13444
|
+
<code>dict</code>
|
|
13165
13445
|
</td>
|
|
13166
13446
|
<td>
|
|
13167
13447
|
<div class="doc-md-description">
|
|
@@ -13196,7 +13476,7 @@ Many of the <code>templatetags.helpers</code> functions are suitable for this pu
|
|
|
13196
13476
|
|
|
13197
13477
|
<div class="doc doc-contents ">
|
|
13198
13478
|
|
|
13199
|
-
|
|
13479
|
+
<p>Get the data for this panel, by default from <code>self.data</code> or the key <code>"data"</code> in the provided context.</p>
|
|
13200
13480
|
<p>Subclasses may need to override this method if the derivation of the data is more involved.</p>
|
|
13201
13481
|
|
|
13202
13482
|
|
|
@@ -13211,7 +13491,7 @@ Many of the <code>templatetags.helpers</code> functions are suitable for this pu
|
|
|
13211
13491
|
<tbody>
|
|
13212
13492
|
<tr class="doc-section-item">
|
|
13213
13493
|
<td>
|
|
13214
|
-
<code
|
|
13494
|
+
<code>dict</code>
|
|
13215
13495
|
</td>
|
|
13216
13496
|
<td>
|
|
13217
13497
|
<div class="doc-md-description">
|
|
@@ -13237,7 +13517,7 @@ Many of the <code>templatetags.helpers</code> functions are suitable for this pu
|
|
|
13237
13517
|
|
|
13238
13518
|
<div class="doc doc-contents ">
|
|
13239
13519
|
|
|
13240
|
-
|
|
13520
|
+
<p>Get a filter parameter to use when hyperlinking queryset data to an object list URL to provide filtering.</p>
|
|
13241
13521
|
|
|
13242
13522
|
|
|
13243
13523
|
<p><span class="doc-section-title">Returns:</span></p>
|
|
@@ -13251,7 +13531,7 @@ Many of the <code>templatetags.helpers</code> functions are suitable for this pu
|
|
|
13251
13531
|
<tbody>
|
|
13252
13532
|
<tr class="doc-section-item">
|
|
13253
13533
|
<td>
|
|
13254
|
-
<code
|
|
13534
|
+
<code>str</code>
|
|
13255
13535
|
</td>
|
|
13256
13536
|
<td>
|
|
13257
13537
|
<div class="doc-md-description">
|
|
@@ -13261,7 +13541,7 @@ Many of the <code>templatetags.helpers</code> functions are suitable for this pu
|
|
|
13261
13541
|
</tr>
|
|
13262
13542
|
</tbody>
|
|
13263
13543
|
</table>
|
|
13264
|
-
|
|
13544
|
+
<p>The default implementation returns <code>""</code>, which means "no appropriate filter parameter is known,
|
|
13265
13545
|
do not hyperlink the queryset text." Subclasses may wish to override this to provide appropriate intelligence.</p>
|
|
13266
13546
|
|
|
13267
13547
|
|
|
@@ -13291,7 +13571,7 @@ do not hyperlink the queryset text." Subclasses may wish to override this to pro
|
|
|
13291
13571
|
|
|
13292
13572
|
<div class="doc doc-contents ">
|
|
13293
13573
|
|
|
13294
|
-
|
|
13574
|
+
<p>Render key-value pairs as table rows, using <code>render_key()</code> and <code>render_value()</code> methods as applicable.</p>
|
|
13295
13575
|
|
|
13296
13576
|
</div>
|
|
13297
13577
|
|
|
@@ -13308,7 +13588,7 @@ do not hyperlink the queryset text." Subclasses may wish to override this to pro
|
|
|
13308
13588
|
|
|
13309
13589
|
<div class="doc doc-contents ">
|
|
13310
13590
|
|
|
13311
|
-
|
|
13591
|
+
<p>Render the provided key in human-readable form.</p>
|
|
13312
13592
|
<p>The default implementation simply replaces underscores with spaces and title-cases it with <code>bettertitle()</code>.</p>
|
|
13313
13593
|
|
|
13314
13594
|
</div>
|
|
@@ -13326,7 +13606,7 @@ do not hyperlink the queryset text." Subclasses may wish to override this to pro
|
|
|
13326
13606
|
|
|
13327
13607
|
<div class="doc doc-contents ">
|
|
13328
13608
|
|
|
13329
|
-
|
|
13609
|
+
<p>Render the provided value in human-readable form.</p>
|
|
13330
13610
|
|
|
13331
13611
|
|
|
13332
13612
|
<p><span class="doc-section-title">Returns:</span></p>
|
|
@@ -13340,7 +13620,7 @@ do not hyperlink the queryset text." Subclasses may wish to override this to pro
|
|
|
13340
13620
|
<tbody>
|
|
13341
13621
|
<tr class="doc-section-item">
|
|
13342
13622
|
<td>
|
|
13343
|
-
<code
|
|
13623
|
+
<code>str</code>
|
|
13344
13624
|
</td>
|
|
13345
13625
|
<td>
|
|
13346
13626
|
<div class="doc-md-description">
|
|
@@ -13352,7 +13632,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13352
13632
|
</tr>
|
|
13353
13633
|
</tbody>
|
|
13354
13634
|
</table>
|
|
13355
|
-
|
|
13635
|
+
<p>Behavior is influenced by:</p>
|
|
13356
13636
|
<ul>
|
|
13357
13637
|
<li><code>self.value_transforms</code> - if it has an entry for the given <code>key</code>, then the given functions provided there
|
|
13358
13638
|
will be used to render the <code>value</code>, in place of any default processing and rendering for this data type.</li>
|
|
@@ -13396,10 +13676,10 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13396
13676
|
|
|
13397
13677
|
<div class="doc doc-contents ">
|
|
13398
13678
|
<p class="doc doc-class-bases">
|
|
13399
|
-
Bases: <code><
|
|
13679
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
|
|
13400
13680
|
|
|
13401
13681
|
|
|
13402
|
-
|
|
13682
|
+
<p>Page (or more properly tab) column layout choices.</p>
|
|
13403
13683
|
|
|
13404
13684
|
|
|
13405
13685
|
<p><span class="doc-section-title">Attributes:</span></p>
|
|
@@ -13413,9 +13693,9 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13413
13693
|
</thead>
|
|
13414
13694
|
<tbody>
|
|
13415
13695
|
<tr class="doc-section-item">
|
|
13416
|
-
<td><code><
|
|
13696
|
+
<td><code><span title="nautobot.apps.ui.LayoutChoices.TWO_OVER_ONE">TWO_OVER_ONE</span></code></td>
|
|
13417
13697
|
<td>
|
|
13418
|
-
<code
|
|
13698
|
+
<code>str</code>
|
|
13419
13699
|
</td>
|
|
13420
13700
|
<td>
|
|
13421
13701
|
<div class="doc-md-description">
|
|
@@ -13424,9 +13704,9 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13424
13704
|
</td>
|
|
13425
13705
|
</tr>
|
|
13426
13706
|
<tr class="doc-section-item">
|
|
13427
|
-
<td><code><
|
|
13707
|
+
<td><code><span title="nautobot.apps.ui.LayoutChoices.ONE_OVER_TWO">ONE_OVER_TWO</span></code></td>
|
|
13428
13708
|
<td>
|
|
13429
|
-
<code
|
|
13709
|
+
<code>str</code>
|
|
13430
13710
|
</td>
|
|
13431
13711
|
<td>
|
|
13432
13712
|
<div class="doc-md-description">
|
|
@@ -13435,9 +13715,9 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13435
13715
|
</td>
|
|
13436
13716
|
</tr>
|
|
13437
13717
|
<tr class="doc-section-item">
|
|
13438
|
-
<td><code><
|
|
13718
|
+
<td><code><span title="nautobot.apps.ui.LayoutChoices.DEFAULT">DEFAULT</span></code></td>
|
|
13439
13719
|
<td>
|
|
13440
|
-
<code
|
|
13720
|
+
<code>str</code>
|
|
13441
13721
|
</td>
|
|
13442
13722
|
<td>
|
|
13443
13723
|
<div class="doc-md-description">
|
|
@@ -13451,6 +13731,11 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13451
13731
|
|
|
13452
13732
|
|
|
13453
13733
|
|
|
13734
|
+
|
|
13735
|
+
|
|
13736
|
+
|
|
13737
|
+
|
|
13738
|
+
|
|
13454
13739
|
<div class="doc doc-children">
|
|
13455
13740
|
|
|
13456
13741
|
|
|
@@ -13482,10 +13767,15 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13482
13767
|
|
|
13483
13768
|
<div class="doc doc-contents ">
|
|
13484
13769
|
<p class="doc doc-class-bases">
|
|
13485
|
-
Bases: <code><
|
|
13770
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.nav.NavMenuButton" href="#nautobot.apps.ui.NavMenuButton">NavMenuButton</a></code></p>
|
|
13771
|
+
|
|
13772
|
+
|
|
13773
|
+
<p>Add button subclass.</p>
|
|
13774
|
+
|
|
13775
|
+
|
|
13776
|
+
|
|
13486
13777
|
|
|
13487
13778
|
|
|
13488
|
-
<p>Add button subclass.</p>
|
|
13489
13779
|
|
|
13490
13780
|
|
|
13491
13781
|
|
|
@@ -13511,7 +13801,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13511
13801
|
|
|
13512
13802
|
<div class="doc doc-contents ">
|
|
13513
13803
|
|
|
13514
|
-
|
|
13804
|
+
<p>Ensure button properties.</p>
|
|
13515
13805
|
|
|
13516
13806
|
</div>
|
|
13517
13807
|
|
|
@@ -13538,10 +13828,15 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13538
13828
|
|
|
13539
13829
|
<div class="doc doc-contents ">
|
|
13540
13830
|
<p class="doc doc-class-bases">
|
|
13541
|
-
Bases: <code><
|
|
13831
|
+
Bases: <code><span title="abc.ABC">ABC</span></code></p>
|
|
13832
|
+
|
|
13833
|
+
|
|
13834
|
+
<p>Base class for navigation classes.</p>
|
|
13835
|
+
|
|
13836
|
+
|
|
13837
|
+
|
|
13542
13838
|
|
|
13543
13839
|
|
|
13544
|
-
<p>Base class for navigation classes.</p>
|
|
13545
13840
|
|
|
13546
13841
|
|
|
13547
13842
|
|
|
@@ -13559,7 +13854,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13559
13854
|
|
|
13560
13855
|
|
|
13561
13856
|
<h3 id="nautobot.apps.ui.NavMenuBase.fixed_fields" class="doc doc-heading">
|
|
13562
|
-
<code class="highlight language-python"><span class="n">fixed_fields</span
|
|
13857
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span></code>
|
|
13563
13858
|
|
|
13564
13859
|
<span class="doc doc-labels">
|
|
13565
13860
|
<small class="doc doc-label doc-label-abstractmethod"><code>abstractmethod</code></small>
|
|
@@ -13571,7 +13866,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13571
13866
|
|
|
13572
13867
|
<div class="doc doc-contents ">
|
|
13573
13868
|
|
|
13574
|
-
|
|
13869
|
+
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
13575
13870
|
</div>
|
|
13576
13871
|
|
|
13577
13872
|
</div>
|
|
@@ -13581,7 +13876,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13581
13876
|
|
|
13582
13877
|
|
|
13583
13878
|
<h3 id="nautobot.apps.ui.NavMenuBase.initial_dict" class="doc doc-heading">
|
|
13584
|
-
<code class="highlight language-python"><span class="n">initial_dict</span
|
|
13879
|
+
<code class="highlight language-python"><span class="n">initial_dict</span></code>
|
|
13585
13880
|
|
|
13586
13881
|
<span class="doc doc-labels">
|
|
13587
13882
|
<small class="doc doc-label doc-label-abstractmethod"><code>abstractmethod</code></small>
|
|
@@ -13593,7 +13888,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13593
13888
|
|
|
13594
13889
|
<div class="doc doc-contents ">
|
|
13595
13890
|
|
|
13596
|
-
|
|
13891
|
+
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
13597
13892
|
</div>
|
|
13598
13893
|
|
|
13599
13894
|
</div>
|
|
@@ -13621,10 +13916,15 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13621
13916
|
|
|
13622
13917
|
<div class="doc doc-contents ">
|
|
13623
13918
|
<p class="doc doc-class-bases">
|
|
13624
|
-
Bases: <code><
|
|
13919
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.nav.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.base.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
13920
|
+
|
|
13921
|
+
|
|
13922
|
+
<p>This class represents a button within a NavMenuItem.</p>
|
|
13923
|
+
|
|
13924
|
+
|
|
13925
|
+
|
|
13625
13926
|
|
|
13626
13927
|
|
|
13627
|
-
<p>This class represents a button within a NavMenuItem.</p>
|
|
13628
13928
|
|
|
13629
13929
|
|
|
13630
13930
|
|
|
@@ -13642,7 +13942,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13642
13942
|
|
|
13643
13943
|
|
|
13644
13944
|
<h3 id="nautobot.apps.ui.NavMenuButton.fixed_fields" class="doc doc-heading">
|
|
13645
|
-
<code class="highlight language-python"><span class="n">fixed_fields</span
|
|
13945
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span></code>
|
|
13646
13946
|
|
|
13647
13947
|
<span class="doc doc-labels">
|
|
13648
13948
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -13653,7 +13953,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13653
13953
|
|
|
13654
13954
|
<div class="doc doc-contents ">
|
|
13655
13955
|
|
|
13656
|
-
|
|
13956
|
+
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
13657
13957
|
</div>
|
|
13658
13958
|
|
|
13659
13959
|
</div>
|
|
@@ -13663,7 +13963,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13663
13963
|
|
|
13664
13964
|
|
|
13665
13965
|
<h3 id="nautobot.apps.ui.NavMenuButton.initial_dict" class="doc doc-heading">
|
|
13666
|
-
<code class="highlight language-python"><span class="n">initial_dict</span
|
|
13966
|
+
<code class="highlight language-python"><span class="n">initial_dict</span></code>
|
|
13667
13967
|
|
|
13668
13968
|
<span class="doc doc-labels">
|
|
13669
13969
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -13674,7 +13974,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13674
13974
|
|
|
13675
13975
|
<div class="doc doc-contents ">
|
|
13676
13976
|
|
|
13677
|
-
|
|
13977
|
+
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
13678
13978
|
</div>
|
|
13679
13979
|
|
|
13680
13980
|
</div>
|
|
@@ -13692,7 +13992,7 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13692
13992
|
|
|
13693
13993
|
<div class="doc doc-contents ">
|
|
13694
13994
|
|
|
13695
|
-
|
|
13995
|
+
<p>Ensure button properties.</p>
|
|
13696
13996
|
|
|
13697
13997
|
|
|
13698
13998
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -13707,9 +14007,11 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13707
14007
|
</thead>
|
|
13708
14008
|
<tbody>
|
|
13709
14009
|
<tr class="doc-section-item">
|
|
13710
|
-
<td><code>link</code></td>
|
|
13711
14010
|
<td>
|
|
13712
|
-
|
|
14011
|
+
<code>link</code>
|
|
14012
|
+
</td>
|
|
14013
|
+
<td>
|
|
14014
|
+
<code>str</code>
|
|
13713
14015
|
</td>
|
|
13714
14016
|
<td>
|
|
13715
14017
|
<div class="doc-md-description">
|
|
@@ -13721,9 +14023,11 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13721
14023
|
</td>
|
|
13722
14024
|
</tr>
|
|
13723
14025
|
<tr class="doc-section-item">
|
|
13724
|
-
<td><code>title</code></td>
|
|
13725
14026
|
<td>
|
|
13726
|
-
|
|
14027
|
+
<code>title</code>
|
|
14028
|
+
</td>
|
|
14029
|
+
<td>
|
|
14030
|
+
<code>str</code>
|
|
13727
14031
|
</td>
|
|
13728
14032
|
<td>
|
|
13729
14033
|
<div class="doc-md-description">
|
|
@@ -13735,9 +14039,11 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13735
14039
|
</td>
|
|
13736
14040
|
</tr>
|
|
13737
14041
|
<tr class="doc-section-item">
|
|
13738
|
-
<td><code>icon_class</code></td>
|
|
13739
14042
|
<td>
|
|
13740
|
-
|
|
14043
|
+
<code>icon_class</code>
|
|
14044
|
+
</td>
|
|
14045
|
+
<td>
|
|
14046
|
+
<code>str</code>
|
|
13741
14047
|
</td>
|
|
13742
14048
|
<td>
|
|
13743
14049
|
<div class="doc-md-description">
|
|
@@ -13749,9 +14055,11 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13749
14055
|
</td>
|
|
13750
14056
|
</tr>
|
|
13751
14057
|
<tr class="doc-section-item">
|
|
13752
|
-
<td><code>button_class</code></td>
|
|
13753
14058
|
<td>
|
|
13754
|
-
|
|
14059
|
+
<code>button_class</code>
|
|
14060
|
+
</td>
|
|
14061
|
+
<td>
|
|
14062
|
+
<code>str</code>
|
|
13755
14063
|
</td>
|
|
13756
14064
|
<td>
|
|
13757
14065
|
<div class="doc-md-description">
|
|
@@ -13759,13 +14067,15 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13759
14067
|
</div>
|
|
13760
14068
|
</td>
|
|
13761
14069
|
<td>
|
|
13762
|
-
<code><
|
|
14070
|
+
<code><span title="nautobot.core.choices.ButtonActionColorChoices.DEFAULT">DEFAULT</span></code>
|
|
13763
14071
|
</td>
|
|
13764
14072
|
</tr>
|
|
13765
14073
|
<tr class="doc-section-item">
|
|
13766
|
-
<td><code>permissions</code></td>
|
|
13767
14074
|
<td>
|
|
13768
|
-
|
|
14075
|
+
<code>permissions</code>
|
|
14076
|
+
</td>
|
|
14077
|
+
<td>
|
|
14078
|
+
<code>list</code>
|
|
13769
14079
|
</td>
|
|
13770
14080
|
<td>
|
|
13771
14081
|
<div class="doc-md-description">
|
|
@@ -13777,9 +14087,11 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13777
14087
|
</td>
|
|
13778
14088
|
</tr>
|
|
13779
14089
|
<tr class="doc-section-item">
|
|
13780
|
-
<td><code>weight</code></td>
|
|
13781
14090
|
<td>
|
|
13782
|
-
|
|
14091
|
+
<code>weight</code>
|
|
14092
|
+
</td>
|
|
14093
|
+
<td>
|
|
14094
|
+
<code>int</code>
|
|
13783
14095
|
</td>
|
|
13784
14096
|
<td>
|
|
13785
14097
|
<div class="doc-md-description">
|
|
@@ -13791,9 +14103,11 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13791
14103
|
</td>
|
|
13792
14104
|
</tr>
|
|
13793
14105
|
<tr class="doc-section-item">
|
|
13794
|
-
<td><code>query_params</code></td>
|
|
13795
14106
|
<td>
|
|
13796
|
-
|
|
14107
|
+
<code>query_params</code>
|
|
14108
|
+
</td>
|
|
14109
|
+
<td>
|
|
14110
|
+
<code>dict</code>
|
|
13797
14111
|
</td>
|
|
13798
14112
|
<td>
|
|
13799
14113
|
<div class="doc-md-description">
|
|
@@ -13832,16 +14146,21 @@ May return <code>placeholder(value)</code> to display a consistent placeholder r
|
|
|
13832
14146
|
|
|
13833
14147
|
<div class="doc doc-contents ">
|
|
13834
14148
|
<p class="doc doc-class-bases">
|
|
13835
|
-
Bases: <code><
|
|
14149
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.nav.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.base.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
13836
14150
|
|
|
13837
14151
|
|
|
13838
|
-
|
|
14152
|
+
<p>Ths class represents a navigation menu group. This is built up from a name and a weight value. The name is
|
|
13839
14153
|
the display text and the weight defines its position in the navbar.</p>
|
|
13840
14154
|
<p>Items are each specified as a list of NavMenuItem instances.</p>
|
|
13841
14155
|
|
|
13842
14156
|
|
|
13843
14157
|
|
|
13844
14158
|
|
|
14159
|
+
|
|
14160
|
+
|
|
14161
|
+
|
|
14162
|
+
|
|
14163
|
+
|
|
13845
14164
|
<div class="doc doc-children">
|
|
13846
14165
|
|
|
13847
14166
|
|
|
@@ -13855,7 +14174,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13855
14174
|
|
|
13856
14175
|
|
|
13857
14176
|
<h3 id="nautobot.apps.ui.NavMenuGroup.fixed_fields" class="doc doc-heading">
|
|
13858
|
-
<code class="highlight language-python"><span class="n">fixed_fields</span
|
|
14177
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span></code>
|
|
13859
14178
|
|
|
13860
14179
|
<span class="doc doc-labels">
|
|
13861
14180
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -13866,7 +14185,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13866
14185
|
|
|
13867
14186
|
<div class="doc doc-contents ">
|
|
13868
14187
|
|
|
13869
|
-
|
|
14188
|
+
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
13870
14189
|
</div>
|
|
13871
14190
|
|
|
13872
14191
|
</div>
|
|
@@ -13876,7 +14195,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13876
14195
|
|
|
13877
14196
|
|
|
13878
14197
|
<h3 id="nautobot.apps.ui.NavMenuGroup.initial_dict" class="doc doc-heading">
|
|
13879
|
-
<code class="highlight language-python"><span class="n">initial_dict</span
|
|
14198
|
+
<code class="highlight language-python"><span class="n">initial_dict</span></code>
|
|
13880
14199
|
|
|
13881
14200
|
<span class="doc doc-labels">
|
|
13882
14201
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -13887,7 +14206,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13887
14206
|
|
|
13888
14207
|
<div class="doc doc-contents ">
|
|
13889
14208
|
|
|
13890
|
-
|
|
14209
|
+
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
13891
14210
|
</div>
|
|
13892
14211
|
|
|
13893
14212
|
</div>
|
|
@@ -13905,7 +14224,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13905
14224
|
|
|
13906
14225
|
<div class="doc doc-contents ">
|
|
13907
14226
|
|
|
13908
|
-
|
|
14227
|
+
<p>Ensure group properties.</p>
|
|
13909
14228
|
|
|
13910
14229
|
|
|
13911
14230
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -13920,9 +14239,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13920
14239
|
</thead>
|
|
13921
14240
|
<tbody>
|
|
13922
14241
|
<tr class="doc-section-item">
|
|
13923
|
-
<td><code>name</code></td>
|
|
13924
14242
|
<td>
|
|
13925
|
-
|
|
14243
|
+
<code>name</code>
|
|
14244
|
+
</td>
|
|
14245
|
+
<td>
|
|
14246
|
+
<code>str</code>
|
|
13926
14247
|
</td>
|
|
13927
14248
|
<td>
|
|
13928
14249
|
<div class="doc-md-description">
|
|
@@ -13934,9 +14255,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13934
14255
|
</td>
|
|
13935
14256
|
</tr>
|
|
13936
14257
|
<tr class="doc-section-item">
|
|
13937
|
-
<td><code>items</code></td>
|
|
13938
14258
|
<td>
|
|
13939
|
-
|
|
14259
|
+
<code>items</code>
|
|
14260
|
+
</td>
|
|
14261
|
+
<td>
|
|
14262
|
+
<code>list</code>
|
|
13940
14263
|
</td>
|
|
13941
14264
|
<td>
|
|
13942
14265
|
<div class="doc-md-description">
|
|
@@ -13948,9 +14271,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13948
14271
|
</td>
|
|
13949
14272
|
</tr>
|
|
13950
14273
|
<tr class="doc-section-item">
|
|
13951
|
-
<td><code>weight</code></td>
|
|
13952
14274
|
<td>
|
|
13953
|
-
|
|
14275
|
+
<code>weight</code>
|
|
14276
|
+
</td>
|
|
14277
|
+
<td>
|
|
14278
|
+
<code>int</code>
|
|
13954
14279
|
</td>
|
|
13955
14280
|
<td>
|
|
13956
14281
|
<div class="doc-md-description">
|
|
@@ -13989,10 +14314,15 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
13989
14314
|
|
|
13990
14315
|
<div class="doc doc-contents ">
|
|
13991
14316
|
<p class="doc doc-class-bases">
|
|
13992
|
-
Bases: <code><
|
|
14317
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.nav.NavMenuButton" href="#nautobot.apps.ui.NavMenuButton">NavMenuButton</a></code></p>
|
|
14318
|
+
|
|
14319
|
+
|
|
14320
|
+
<p>Import button subclass.</p>
|
|
14321
|
+
|
|
14322
|
+
|
|
14323
|
+
|
|
13993
14324
|
|
|
13994
14325
|
|
|
13995
|
-
<p>Import button subclass.</p>
|
|
13996
14326
|
|
|
13997
14327
|
|
|
13998
14328
|
|
|
@@ -14018,7 +14348,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14018
14348
|
|
|
14019
14349
|
<div class="doc doc-contents ">
|
|
14020
14350
|
|
|
14021
|
-
|
|
14351
|
+
<p>Ensure button properties.</p>
|
|
14022
14352
|
|
|
14023
14353
|
</div>
|
|
14024
14354
|
|
|
@@ -14045,10 +14375,10 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14045
14375
|
|
|
14046
14376
|
<div class="doc doc-contents ">
|
|
14047
14377
|
<p class="doc doc-class-bases">
|
|
14048
|
-
Bases: <code><
|
|
14378
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.nav.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.base.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
14049
14379
|
|
|
14050
14380
|
|
|
14051
|
-
|
|
14381
|
+
<p>This class represents a navigation menu item. This constitutes primary link and its text, but also allows for
|
|
14052
14382
|
specifying additional link buttons that appear to the right of the item in the nav menu.</p>
|
|
14053
14383
|
<p>Links are specified as Django reverse URL strings.
|
|
14054
14384
|
Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
@@ -14056,6 +14386,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14056
14386
|
|
|
14057
14387
|
|
|
14058
14388
|
|
|
14389
|
+
|
|
14390
|
+
|
|
14391
|
+
|
|
14392
|
+
|
|
14393
|
+
|
|
14059
14394
|
<div class="doc doc-children">
|
|
14060
14395
|
|
|
14061
14396
|
|
|
@@ -14069,7 +14404,7 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14069
14404
|
|
|
14070
14405
|
|
|
14071
14406
|
<h3 id="nautobot.apps.ui.NavMenuItem.fixed_fields" class="doc doc-heading">
|
|
14072
|
-
<code class="highlight language-python"><span class="n">fixed_fields</span
|
|
14407
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span></code>
|
|
14073
14408
|
|
|
14074
14409
|
<span class="doc doc-labels">
|
|
14075
14410
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -14080,7 +14415,7 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14080
14415
|
|
|
14081
14416
|
<div class="doc doc-contents ">
|
|
14082
14417
|
|
|
14083
|
-
|
|
14418
|
+
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
14084
14419
|
</div>
|
|
14085
14420
|
|
|
14086
14421
|
</div>
|
|
@@ -14090,7 +14425,7 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14090
14425
|
|
|
14091
14426
|
|
|
14092
14427
|
<h3 id="nautobot.apps.ui.NavMenuItem.initial_dict" class="doc doc-heading">
|
|
14093
|
-
<code class="highlight language-python"><span class="n">initial_dict</span
|
|
14428
|
+
<code class="highlight language-python"><span class="n">initial_dict</span></code>
|
|
14094
14429
|
|
|
14095
14430
|
<span class="doc doc-labels">
|
|
14096
14431
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -14101,7 +14436,7 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14101
14436
|
|
|
14102
14437
|
<div class="doc doc-contents ">
|
|
14103
14438
|
|
|
14104
|
-
|
|
14439
|
+
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
14105
14440
|
</div>
|
|
14106
14441
|
|
|
14107
14442
|
</div>
|
|
@@ -14119,7 +14454,7 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14119
14454
|
|
|
14120
14455
|
<div class="doc doc-contents ">
|
|
14121
14456
|
|
|
14122
|
-
|
|
14457
|
+
<p>Ensure item properties.</p>
|
|
14123
14458
|
|
|
14124
14459
|
|
|
14125
14460
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -14134,9 +14469,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14134
14469
|
</thead>
|
|
14135
14470
|
<tbody>
|
|
14136
14471
|
<tr class="doc-section-item">
|
|
14137
|
-
<td><code>link</code></td>
|
|
14138
14472
|
<td>
|
|
14139
|
-
|
|
14473
|
+
<code>link</code>
|
|
14474
|
+
</td>
|
|
14475
|
+
<td>
|
|
14476
|
+
<code>str</code>
|
|
14140
14477
|
</td>
|
|
14141
14478
|
<td>
|
|
14142
14479
|
<div class="doc-md-description">
|
|
@@ -14148,9 +14485,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14148
14485
|
</td>
|
|
14149
14486
|
</tr>
|
|
14150
14487
|
<tr class="doc-section-item">
|
|
14151
|
-
<td><code>name</code></td>
|
|
14152
14488
|
<td>
|
|
14153
|
-
|
|
14489
|
+
<code>name</code>
|
|
14490
|
+
</td>
|
|
14491
|
+
<td>
|
|
14492
|
+
<code>str</code>
|
|
14154
14493
|
</td>
|
|
14155
14494
|
<td>
|
|
14156
14495
|
<div class="doc-md-description">
|
|
@@ -14162,9 +14501,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14162
14501
|
</td>
|
|
14163
14502
|
</tr>
|
|
14164
14503
|
<tr class="doc-section-item">
|
|
14165
|
-
<td><code>args</code></td>
|
|
14166
14504
|
<td>
|
|
14167
|
-
|
|
14505
|
+
<code>args</code>
|
|
14506
|
+
</td>
|
|
14507
|
+
<td>
|
|
14508
|
+
<code>list</code>
|
|
14168
14509
|
</td>
|
|
14169
14510
|
<td>
|
|
14170
14511
|
<div class="doc-md-description">
|
|
@@ -14176,9 +14517,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14176
14517
|
</td>
|
|
14177
14518
|
</tr>
|
|
14178
14519
|
<tr class="doc-section-item">
|
|
14179
|
-
<td><code>kwargs</code></td>
|
|
14180
14520
|
<td>
|
|
14181
|
-
|
|
14521
|
+
<code>kwargs</code>
|
|
14522
|
+
</td>
|
|
14523
|
+
<td>
|
|
14524
|
+
<code>dict</code>
|
|
14182
14525
|
</td>
|
|
14183
14526
|
<td>
|
|
14184
14527
|
<div class="doc-md-description">
|
|
@@ -14190,9 +14533,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14190
14533
|
</td>
|
|
14191
14534
|
</tr>
|
|
14192
14535
|
<tr class="doc-section-item">
|
|
14193
|
-
<td><code>query_params</code></td>
|
|
14194
14536
|
<td>
|
|
14195
|
-
|
|
14537
|
+
<code>query_params</code>
|
|
14538
|
+
</td>
|
|
14539
|
+
<td>
|
|
14540
|
+
<code>dict</code>
|
|
14196
14541
|
</td>
|
|
14197
14542
|
<td>
|
|
14198
14543
|
<div class="doc-md-description">
|
|
@@ -14204,9 +14549,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14204
14549
|
</td>
|
|
14205
14550
|
</tr>
|
|
14206
14551
|
<tr class="doc-section-item">
|
|
14207
|
-
<td><code>permissions</code></td>
|
|
14208
14552
|
<td>
|
|
14209
|
-
|
|
14553
|
+
<code>permissions</code>
|
|
14554
|
+
</td>
|
|
14555
|
+
<td>
|
|
14556
|
+
<code>list</code>
|
|
14210
14557
|
</td>
|
|
14211
14558
|
<td>
|
|
14212
14559
|
<div class="doc-md-description">
|
|
@@ -14218,9 +14565,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14218
14565
|
</td>
|
|
14219
14566
|
</tr>
|
|
14220
14567
|
<tr class="doc-section-item">
|
|
14221
|
-
<td><code>buttons</code></td>
|
|
14222
14568
|
<td>
|
|
14223
|
-
|
|
14569
|
+
<code>buttons</code>
|
|
14570
|
+
</td>
|
|
14571
|
+
<td>
|
|
14572
|
+
<code>list</code>
|
|
14224
14573
|
</td>
|
|
14225
14574
|
<td>
|
|
14226
14575
|
<div class="doc-md-description">
|
|
@@ -14232,9 +14581,11 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14232
14581
|
</td>
|
|
14233
14582
|
</tr>
|
|
14234
14583
|
<tr class="doc-section-item">
|
|
14235
|
-
<td><code>weight</code></td>
|
|
14236
14584
|
<td>
|
|
14237
|
-
|
|
14585
|
+
<code>weight</code>
|
|
14586
|
+
</td>
|
|
14587
|
+
<td>
|
|
14588
|
+
<code>int</code>
|
|
14238
14589
|
</td>
|
|
14239
14590
|
<td>
|
|
14240
14591
|
<div class="doc-md-description">
|
|
@@ -14273,16 +14624,21 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
|
|
|
14273
14624
|
|
|
14274
14625
|
<div class="doc doc-contents ">
|
|
14275
14626
|
<p class="doc doc-class-bases">
|
|
14276
|
-
Bases: <code><
|
|
14627
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.nav.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.base.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
|
|
14277
14628
|
|
|
14278
14629
|
|
|
14279
|
-
|
|
14630
|
+
<p>Ths class represents a navigation menu tab. This is built up from a name and a weight value. The name is
|
|
14280
14631
|
the display text and the weight defines its position in the navbar.</p>
|
|
14281
14632
|
<p>Groups are each specified as a list of NavMenuGroup instances.</p>
|
|
14282
14633
|
|
|
14283
14634
|
|
|
14284
14635
|
|
|
14285
14636
|
|
|
14637
|
+
|
|
14638
|
+
|
|
14639
|
+
|
|
14640
|
+
|
|
14641
|
+
|
|
14286
14642
|
<div class="doc doc-children">
|
|
14287
14643
|
|
|
14288
14644
|
|
|
@@ -14296,7 +14652,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14296
14652
|
|
|
14297
14653
|
|
|
14298
14654
|
<h3 id="nautobot.apps.ui.NavMenuTab.fixed_fields" class="doc doc-heading">
|
|
14299
|
-
<code class="highlight language-python"><span class="n">fixed_fields</span
|
|
14655
|
+
<code class="highlight language-python"><span class="n">fixed_fields</span></code>
|
|
14300
14656
|
|
|
14301
14657
|
<span class="doc doc-labels">
|
|
14302
14658
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -14307,7 +14663,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14307
14663
|
|
|
14308
14664
|
<div class="doc doc-contents ">
|
|
14309
14665
|
|
|
14310
|
-
|
|
14666
|
+
<p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
|
|
14311
14667
|
</div>
|
|
14312
14668
|
|
|
14313
14669
|
</div>
|
|
@@ -14317,7 +14673,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14317
14673
|
|
|
14318
14674
|
|
|
14319
14675
|
<h3 id="nautobot.apps.ui.NavMenuTab.initial_dict" class="doc doc-heading">
|
|
14320
|
-
<code class="highlight language-python"><span class="n">initial_dict</span
|
|
14676
|
+
<code class="highlight language-python"><span class="n">initial_dict</span></code>
|
|
14321
14677
|
|
|
14322
14678
|
<span class="doc doc-labels">
|
|
14323
14679
|
<small class="doc doc-label doc-label-property"><code>property</code></small>
|
|
@@ -14328,7 +14684,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14328
14684
|
|
|
14329
14685
|
<div class="doc doc-contents ">
|
|
14330
14686
|
|
|
14331
|
-
|
|
14687
|
+
<p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
|
|
14332
14688
|
</div>
|
|
14333
14689
|
|
|
14334
14690
|
</div>
|
|
@@ -14346,7 +14702,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14346
14702
|
|
|
14347
14703
|
<div class="doc doc-contents ">
|
|
14348
14704
|
|
|
14349
|
-
|
|
14705
|
+
<p>Ensure tab properties.</p>
|
|
14350
14706
|
|
|
14351
14707
|
|
|
14352
14708
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -14361,9 +14717,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14361
14717
|
</thead>
|
|
14362
14718
|
<tbody>
|
|
14363
14719
|
<tr class="doc-section-item">
|
|
14364
|
-
<td><code>name</code></td>
|
|
14365
14720
|
<td>
|
|
14366
|
-
|
|
14721
|
+
<code>name</code>
|
|
14722
|
+
</td>
|
|
14723
|
+
<td>
|
|
14724
|
+
<code>str</code>
|
|
14367
14725
|
</td>
|
|
14368
14726
|
<td>
|
|
14369
14727
|
<div class="doc-md-description">
|
|
@@ -14375,9 +14733,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14375
14733
|
</td>
|
|
14376
14734
|
</tr>
|
|
14377
14735
|
<tr class="doc-section-item">
|
|
14378
|
-
<td><code>permissions</code></td>
|
|
14379
14736
|
<td>
|
|
14380
|
-
|
|
14737
|
+
<code>permissions</code>
|
|
14738
|
+
</td>
|
|
14739
|
+
<td>
|
|
14740
|
+
<code>list</code>
|
|
14381
14741
|
</td>
|
|
14382
14742
|
<td>
|
|
14383
14743
|
<div class="doc-md-description">
|
|
@@ -14389,9 +14749,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14389
14749
|
</td>
|
|
14390
14750
|
</tr>
|
|
14391
14751
|
<tr class="doc-section-item">
|
|
14392
|
-
<td><code>groups</code></td>
|
|
14393
14752
|
<td>
|
|
14394
|
-
|
|
14753
|
+
<code>groups</code>
|
|
14754
|
+
</td>
|
|
14755
|
+
<td>
|
|
14756
|
+
<code>list</code>
|
|
14395
14757
|
</td>
|
|
14396
14758
|
<td>
|
|
14397
14759
|
<div class="doc-md-description">
|
|
@@ -14403,9 +14765,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14403
14765
|
</td>
|
|
14404
14766
|
</tr>
|
|
14405
14767
|
<tr class="doc-section-item">
|
|
14406
|
-
<td><code>weight</code></td>
|
|
14407
14768
|
<td>
|
|
14408
|
-
|
|
14769
|
+
<code>weight</code>
|
|
14770
|
+
</td>
|
|
14771
|
+
<td>
|
|
14772
|
+
<code>int</code>
|
|
14409
14773
|
</td>
|
|
14410
14774
|
<td>
|
|
14411
14775
|
<div class="doc-md-description">
|
|
@@ -14445,7 +14809,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14445
14809
|
<div class="doc doc-contents ">
|
|
14446
14810
|
|
|
14447
14811
|
|
|
14448
|
-
|
|
14812
|
+
<p>Base class for UI framework definition of the contents of an Object Detail (Object Retrieve) page.</p>
|
|
14449
14813
|
<p>This currently defines the tabs and their panel contents, but does NOT describe the page title, breadcrumbs, etc.</p>
|
|
14450
14814
|
<p>Basic usage for a <code>NautobotUIViewSet</code> looks like:</p>
|
|
14451
14815
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="kn">from</span> <span class="nn">nautobot.apps.ui</span> <span class="kn">import</span> <span class="n">ObjectDetailContent</span><span class="p">,</span> <span class="n">ObjectFieldsPanel</span><span class="p">,</span> <span class="n">SectionChoices</span>
|
|
@@ -14462,6 +14826,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14462
14826
|
|
|
14463
14827
|
|
|
14464
14828
|
|
|
14829
|
+
|
|
14830
|
+
|
|
14831
|
+
|
|
14832
|
+
|
|
14833
|
+
|
|
14465
14834
|
<div class="doc doc-children">
|
|
14466
14835
|
|
|
14467
14836
|
|
|
@@ -14487,7 +14856,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14487
14856
|
|
|
14488
14857
|
<div class="doc doc-contents ">
|
|
14489
14858
|
|
|
14490
|
-
|
|
14859
|
+
<p>The extra buttons defined for this detail view, ordered by their <code>weight</code>.</p>
|
|
14491
14860
|
</div>
|
|
14492
14861
|
|
|
14493
14862
|
</div>
|
|
@@ -14509,7 +14878,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14509
14878
|
|
|
14510
14879
|
<div class="doc doc-contents ">
|
|
14511
14880
|
|
|
14512
|
-
|
|
14881
|
+
<p>The tabs defined for this detail view, ordered by their <code>weight</code>.</p>
|
|
14513
14882
|
</div>
|
|
14514
14883
|
|
|
14515
14884
|
</div>
|
|
@@ -14527,7 +14896,7 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14527
14896
|
|
|
14528
14897
|
<div class="doc doc-contents ">
|
|
14529
14898
|
|
|
14530
|
-
|
|
14899
|
+
<p>Create an ObjectDetailContent with a "main" tab and all standard "extras" tabs (advanced, contacts, etc.).</p>
|
|
14531
14900
|
|
|
14532
14901
|
|
|
14533
14902
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -14542,9 +14911,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14542
14911
|
</thead>
|
|
14543
14912
|
<tbody>
|
|
14544
14913
|
<tr class="doc-section-item">
|
|
14545
|
-
<td><code>panels</code></td>
|
|
14546
14914
|
<td>
|
|
14547
|
-
|
|
14915
|
+
<code>panels</code>
|
|
14916
|
+
</td>
|
|
14917
|
+
<td>
|
|
14918
|
+
<code>list</code>
|
|
14548
14919
|
</td>
|
|
14549
14920
|
<td>
|
|
14550
14921
|
<div class="doc-md-description">
|
|
@@ -14557,9 +14928,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14557
14928
|
</td>
|
|
14558
14929
|
</tr>
|
|
14559
14930
|
<tr class="doc-section-item">
|
|
14560
|
-
<td><code>layout</code></td>
|
|
14561
14931
|
<td>
|
|
14562
|
-
|
|
14932
|
+
<code>layout</code>
|
|
14933
|
+
</td>
|
|
14934
|
+
<td>
|
|
14935
|
+
<code>str</code>
|
|
14563
14936
|
</td>
|
|
14564
14937
|
<td>
|
|
14565
14938
|
<div class="doc-md-description">
|
|
@@ -14567,13 +14940,15 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14567
14940
|
</div>
|
|
14568
14941
|
</td>
|
|
14569
14942
|
<td>
|
|
14570
|
-
<code><
|
|
14943
|
+
<code><span title="nautobot.core.ui.choices.LayoutChoices.DEFAULT">DEFAULT</span></code>
|
|
14571
14944
|
</td>
|
|
14572
14945
|
</tr>
|
|
14573
14946
|
<tr class="doc-section-item">
|
|
14574
|
-
<td><code>extra_buttons</code></td>
|
|
14575
14947
|
<td>
|
|
14576
|
-
|
|
14948
|
+
<code>extra_buttons</code>
|
|
14949
|
+
</td>
|
|
14950
|
+
<td>
|
|
14951
|
+
<code>list</code>
|
|
14577
14952
|
</td>
|
|
14578
14953
|
<td>
|
|
14579
14954
|
<div class="doc-md-description">
|
|
@@ -14586,9 +14961,11 @@ the display text and the weight defines its position in the navbar.</p>
|
|
|
14586
14961
|
</td>
|
|
14587
14962
|
</tr>
|
|
14588
14963
|
<tr class="doc-section-item">
|
|
14589
|
-
<td><code>extra_tabs</code></td>
|
|
14590
14964
|
<td>
|
|
14591
|
-
|
|
14965
|
+
<code>extra_tabs</code>
|
|
14966
|
+
</td>
|
|
14967
|
+
<td>
|
|
14968
|
+
<code>list</code>
|
|
14592
14969
|
</td>
|
|
14593
14970
|
<td>
|
|
14594
14971
|
<div class="doc-md-description">
|
|
@@ -14628,10 +15005,15 @@ dynamic-groups, metadata, etc.) do not need to be specified as they will be auto
|
|
|
14628
15005
|
|
|
14629
15006
|
<div class="doc doc-contents ">
|
|
14630
15007
|
<p class="doc doc-class-bases">
|
|
14631
|
-
Bases: <code><
|
|
15008
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.KeyValueTablePanel" href="#nautobot.apps.ui.KeyValueTablePanel">KeyValueTablePanel</a></code></p>
|
|
15009
|
+
|
|
15010
|
+
|
|
15011
|
+
<p>A panel that renders a table of object instance attributes and their values.</p>
|
|
15012
|
+
|
|
15013
|
+
|
|
15014
|
+
|
|
14632
15015
|
|
|
14633
15016
|
|
|
14634
|
-
<p>A panel that renders a table of object instance attributes and their values.</p>
|
|
14635
15017
|
|
|
14636
15018
|
|
|
14637
15019
|
|
|
@@ -14657,7 +15039,7 @@ dynamic-groups, metadata, etc.) do not need to be specified as they will be auto
|
|
|
14657
15039
|
|
|
14658
15040
|
<div class="doc doc-contents ">
|
|
14659
15041
|
|
|
14660
|
-
|
|
15042
|
+
<p>Instantiate an ObjectFieldsPanel.</p>
|
|
14661
15043
|
|
|
14662
15044
|
|
|
14663
15045
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -14672,9 +15054,11 @@ dynamic-groups, metadata, etc.) do not need to be specified as they will be auto
|
|
|
14672
15054
|
</thead>
|
|
14673
15055
|
<tbody>
|
|
14674
15056
|
<tr class="doc-section-item">
|
|
14675
|
-
<td><code>fields</code></td>
|
|
14676
15057
|
<td>
|
|
14677
|
-
|
|
15058
|
+
<code>fields</code>
|
|
15059
|
+
</td>
|
|
15060
|
+
<td>
|
|
15061
|
+
<code>(str, list)</code>
|
|
14678
15062
|
</td>
|
|
14679
15063
|
<td>
|
|
14680
15064
|
<div class="doc-md-description">
|
|
@@ -14688,9 +15072,11 @@ are any hidden fields, nor the specially handled <code>id</code>, <code>created<
|
|
|
14688
15072
|
</td>
|
|
14689
15073
|
</tr>
|
|
14690
15074
|
<tr class="doc-section-item">
|
|
14691
|
-
<td><code>exclude_fields</code></td>
|
|
14692
15075
|
<td>
|
|
14693
|
-
|
|
15076
|
+
<code>exclude_fields</code>
|
|
15077
|
+
</td>
|
|
15078
|
+
<td>
|
|
15079
|
+
<code>list</code>
|
|
14694
15080
|
</td>
|
|
14695
15081
|
<td>
|
|
14696
15082
|
<div class="doc-md-description">
|
|
@@ -14702,9 +15088,11 @@ are any hidden fields, nor the specially handled <code>id</code>, <code>created<
|
|
|
14702
15088
|
</td>
|
|
14703
15089
|
</tr>
|
|
14704
15090
|
<tr class="doc-section-item">
|
|
14705
|
-
<td><code>context_object_key</code></td>
|
|
14706
15091
|
<td>
|
|
14707
|
-
|
|
15092
|
+
<code>context_object_key</code>
|
|
15093
|
+
</td>
|
|
15094
|
+
<td>
|
|
15095
|
+
<code>str</code>
|
|
14708
15096
|
</td>
|
|
14709
15097
|
<td>
|
|
14710
15098
|
<div class="doc-md-description">
|
|
@@ -14716,9 +15104,11 @@ are any hidden fields, nor the specially handled <code>id</code>, <code>created<
|
|
|
14716
15104
|
</td>
|
|
14717
15105
|
</tr>
|
|
14718
15106
|
<tr class="doc-section-item">
|
|
14719
|
-
<td><code>ignore_nonexistent_fields</code></td>
|
|
14720
15107
|
<td>
|
|
14721
|
-
|
|
15108
|
+
<code>ignore_nonexistent_fields</code>
|
|
15109
|
+
</td>
|
|
15110
|
+
<td>
|
|
15111
|
+
<code>bool</code>
|
|
14722
15112
|
</td>
|
|
14723
15113
|
<td>
|
|
14724
15114
|
<div class="doc-md-description">
|
|
@@ -14731,9 +15121,11 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14731
15121
|
</td>
|
|
14732
15122
|
</tr>
|
|
14733
15123
|
<tr class="doc-section-item">
|
|
14734
|
-
<td><code>label</code></td>
|
|
14735
15124
|
<td>
|
|
14736
|
-
|
|
15125
|
+
<code>label</code>
|
|
15126
|
+
</td>
|
|
15127
|
+
<td>
|
|
15128
|
+
<code>str</code>
|
|
14737
15129
|
</td>
|
|
14738
15130
|
<td>
|
|
14739
15131
|
<div class="doc-md-description">
|
|
@@ -14763,7 +15155,7 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14763
15155
|
|
|
14764
15156
|
<div class="doc doc-contents ">
|
|
14765
15157
|
|
|
14766
|
-
|
|
15158
|
+
<p>Load data from the object provided in the render context based on the given set of <code>fields</code>.</p>
|
|
14767
15159
|
|
|
14768
15160
|
|
|
14769
15161
|
<p><span class="doc-section-title">Returns:</span></p>
|
|
@@ -14777,7 +15169,7 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14777
15169
|
<tbody>
|
|
14778
15170
|
<tr class="doc-section-item">
|
|
14779
15171
|
<td>
|
|
14780
|
-
<code
|
|
15172
|
+
<code>dict</code>
|
|
14781
15173
|
</td>
|
|
14782
15174
|
<td>
|
|
14783
15175
|
<div class="doc-md-description">
|
|
@@ -14803,7 +15195,7 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14803
15195
|
|
|
14804
15196
|
<div class="doc doc-contents ">
|
|
14805
15197
|
|
|
14806
|
-
|
|
15198
|
+
<p>Render the <code>verbose_name</code> of the model field whose name corresponds to the given key, if applicable.</p>
|
|
14807
15199
|
|
|
14808
15200
|
</div>
|
|
14809
15201
|
|
|
@@ -14820,7 +15212,7 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14820
15212
|
|
|
14821
15213
|
<div class="doc doc-contents ">
|
|
14822
15214
|
|
|
14823
|
-
|
|
15215
|
+
<p>Default to rendering the provided object's <code>verbose_name</code> if no more specific <code>label</code> was defined.</p>
|
|
14824
15216
|
|
|
14825
15217
|
</div>
|
|
14826
15218
|
|
|
@@ -14847,10 +15239,10 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14847
15239
|
|
|
14848
15240
|
<div class="doc doc-contents ">
|
|
14849
15241
|
<p class="doc doc-class-bases">
|
|
14850
|
-
Bases: <code><
|
|
15242
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.BaseTextPanel" href="#nautobot.apps.ui.BaseTextPanel">BaseTextPanel</a></code></p>
|
|
14851
15243
|
|
|
14852
15244
|
|
|
14853
|
-
|
|
15245
|
+
<p>Panel that renders text, Markdown, JSON or YAML from the given field on the given object in the context.</p>
|
|
14854
15246
|
|
|
14855
15247
|
|
|
14856
15248
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -14865,9 +15257,11 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14865
15257
|
</thead>
|
|
14866
15258
|
<tbody>
|
|
14867
15259
|
<tr class="doc-section-item">
|
|
14868
|
-
<td><code>object_field</code></td>
|
|
14869
15260
|
<td>
|
|
14870
|
-
|
|
15261
|
+
<code>object_field</code>
|
|
15262
|
+
</td>
|
|
15263
|
+
<td>
|
|
15264
|
+
<code>str</code>
|
|
14871
15265
|
</td>
|
|
14872
15266
|
<td>
|
|
14873
15267
|
<div class="doc-md-description">
|
|
@@ -14879,9 +15273,11 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14879
15273
|
</td>
|
|
14880
15274
|
</tr>
|
|
14881
15275
|
<tr class="doc-section-item">
|
|
14882
|
-
<td><code>kwargs</code></td>
|
|
14883
15276
|
<td>
|
|
14884
|
-
|
|
15277
|
+
<code>kwargs</code>
|
|
15278
|
+
</td>
|
|
15279
|
+
<td>
|
|
15280
|
+
<code>dict</code>
|
|
14885
15281
|
</td>
|
|
14886
15282
|
<td>
|
|
14887
15283
|
<div class="doc-md-description">
|
|
@@ -14898,6 +15294,11 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14898
15294
|
|
|
14899
15295
|
|
|
14900
15296
|
|
|
15297
|
+
|
|
15298
|
+
|
|
15299
|
+
|
|
15300
|
+
|
|
15301
|
+
|
|
14901
15302
|
<div class="doc doc-children">
|
|
14902
15303
|
|
|
14903
15304
|
|
|
@@ -14929,10 +15330,23 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14929
15330
|
|
|
14930
15331
|
<div class="doc doc-contents ">
|
|
14931
15332
|
<p class="doc doc-class-bases">
|
|
14932
|
-
Bases: <code><
|
|
15333
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Panel" href="#nautobot.apps.ui.Panel">Panel</a></code></p>
|
|
15334
|
+
|
|
15335
|
+
|
|
15336
|
+
<p>A panel that renders a Table of objects (typically related objects, rather than the "main" object of a view).
|
|
15337
|
+
Has built-in pagination support and "Add" button at bottom of the Table.</p>
|
|
15338
|
+
<p>It renders the django-tables2 classes with Nautobot additions. You can pass the instance of Table Class
|
|
15339
|
+
already configured in context and set the <code>context_table_key</code> or pass a Table Class to <code>__init__</code> via <code>table_class</code>.</p>
|
|
15340
|
+
<p>When <code>table_class</code> is set, you need to pass <code>table_filter</code> or <code>table_attribute</code> for fetching data purpose.</p>
|
|
15341
|
+
<p>Data fetching can be optimized by using <code>select_related_fields</code>, <code>prefetch_related_fields</code>.</p>
|
|
15342
|
+
<p>How Table is displayed can be changed by using <code>include_columns</code>, <code>exclude_columns</code>, <code>table_title</code>,
|
|
15343
|
+
<code>hide_hierarchy_ui</code>, <code>related_field_name</code> or <code>enable_bulk_actions</code>.</p>
|
|
15344
|
+
<p>Please check the Args list for further details.</p>
|
|
15345
|
+
|
|
15346
|
+
|
|
15347
|
+
|
|
14933
15348
|
|
|
14934
15349
|
|
|
14935
|
-
<p>A panel that renders a Table of objects (typically related objects, rather than the "main" object of a view).</p>
|
|
14936
15350
|
|
|
14937
15351
|
|
|
14938
15352
|
|
|
@@ -14958,7 +15372,7 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14958
15372
|
|
|
14959
15373
|
<div class="doc doc-contents ">
|
|
14960
15374
|
|
|
14961
|
-
|
|
15375
|
+
<p>Instantiate an ObjectsTable panel.</p>
|
|
14962
15376
|
|
|
14963
15377
|
|
|
14964
15378
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -14973,9 +15387,11 @@ exist on the provided object; otherwise an exception will be raised at render ti
|
|
|
14973
15387
|
</thead>
|
|
14974
15388
|
<tbody>
|
|
14975
15389
|
<tr class="doc-section-item">
|
|
14976
|
-
<td><code>context_table_key</code></td>
|
|
14977
15390
|
<td>
|
|
14978
|
-
|
|
15391
|
+
<code>context_table_key</code>
|
|
15392
|
+
</td>
|
|
15393
|
+
<td>
|
|
15394
|
+
<code>str</code>
|
|
14979
15395
|
</td>
|
|
14980
15396
|
<td>
|
|
14981
15397
|
<div class="doc-md-description">
|
|
@@ -14988,9 +15404,11 @@ Table (<code>BaseTable</code>) instance. Mutually exclusive with <code>table_cla
|
|
|
14988
15404
|
</td>
|
|
14989
15405
|
</tr>
|
|
14990
15406
|
<tr class="doc-section-item">
|
|
14991
|
-
<td><code>table_class</code></td>
|
|
14992
15407
|
<td>
|
|
14993
|
-
|
|
15408
|
+
<code>table_class</code>
|
|
15409
|
+
</td>
|
|
15410
|
+
<td>
|
|
15411
|
+
<code>obj</code>
|
|
14994
15412
|
</td>
|
|
14995
15413
|
<td>
|
|
14996
15414
|
<div class="doc-md-description">
|
|
@@ -15003,9 +15421,11 @@ Mutually exclusive with <code>context_table_key</code>.</p>
|
|
|
15003
15421
|
</td>
|
|
15004
15422
|
</tr>
|
|
15005
15423
|
<tr class="doc-section-item">
|
|
15006
|
-
<td><code>table_filter</code></td>
|
|
15007
15424
|
<td>
|
|
15008
|
-
|
|
15425
|
+
<code>table_filter</code>
|
|
15426
|
+
</td>
|
|
15427
|
+
<td>
|
|
15428
|
+
<code>str</code>
|
|
15009
15429
|
</td>
|
|
15010
15430
|
<td>
|
|
15011
15431
|
<div class="doc-md-description">
|
|
@@ -15020,9 +15440,11 @@ Mutually exclusive with <code>table_attribute</code>.</p>
|
|
|
15020
15440
|
</td>
|
|
15021
15441
|
</tr>
|
|
15022
15442
|
<tr class="doc-section-item">
|
|
15023
|
-
<td><code>table_attribute</code></td>
|
|
15024
15443
|
<td>
|
|
15025
|
-
|
|
15444
|
+
<code>table_attribute</code>
|
|
15445
|
+
</td>
|
|
15446
|
+
<td>
|
|
15447
|
+
<code>str</code>
|
|
15026
15448
|
</td>
|
|
15027
15449
|
<td>
|
|
15028
15450
|
<div class="doc-md-description">
|
|
@@ -15036,9 +15458,11 @@ Mutually exclusive with <code>table_filter</code>.</p>
|
|
|
15036
15458
|
</td>
|
|
15037
15459
|
</tr>
|
|
15038
15460
|
<tr class="doc-section-item">
|
|
15039
|
-
<td><code>select_related_fields</code></td>
|
|
15040
15461
|
<td>
|
|
15041
|
-
|
|
15462
|
+
<code>select_related_fields</code>
|
|
15463
|
+
</td>
|
|
15464
|
+
<td>
|
|
15465
|
+
<code>list</code>
|
|
15042
15466
|
</td>
|
|
15043
15467
|
<td>
|
|
15044
15468
|
<div class="doc-md-description">
|
|
@@ -15050,9 +15474,11 @@ Mutually exclusive with <code>table_filter</code>.</p>
|
|
|
15050
15474
|
</td>
|
|
15051
15475
|
</tr>
|
|
15052
15476
|
<tr class="doc-section-item">
|
|
15053
|
-
<td><code>prefetch_related_fields</code></td>
|
|
15054
15477
|
<td>
|
|
15055
|
-
|
|
15478
|
+
<code>prefetch_related_fields</code>
|
|
15479
|
+
</td>
|
|
15480
|
+
<td>
|
|
15481
|
+
<code>list</code>
|
|
15056
15482
|
</td>
|
|
15057
15483
|
<td>
|
|
15058
15484
|
<div class="doc-md-description">
|
|
@@ -15065,9 +15491,11 @@ method.</p>
|
|
|
15065
15491
|
</td>
|
|
15066
15492
|
</tr>
|
|
15067
15493
|
<tr class="doc-section-item">
|
|
15068
|
-
<td><code>order_by_fields</code></td>
|
|
15069
15494
|
<td>
|
|
15070
|
-
|
|
15495
|
+
<code>order_by_fields</code>
|
|
15496
|
+
</td>
|
|
15497
|
+
<td>
|
|
15498
|
+
<code>list</code>
|
|
15071
15499
|
</td>
|
|
15072
15500
|
<td>
|
|
15073
15501
|
<div class="doc-md-description">
|
|
@@ -15079,9 +15507,11 @@ method.</p>
|
|
|
15079
15507
|
</td>
|
|
15080
15508
|
</tr>
|
|
15081
15509
|
<tr class="doc-section-item">
|
|
15082
|
-
<td><code>max_display_count</code></td>
|
|
15083
15510
|
<td>
|
|
15084
|
-
|
|
15511
|
+
<code>max_display_count</code>
|
|
15512
|
+
</td>
|
|
15513
|
+
<td>
|
|
15514
|
+
<code>int</code>
|
|
15085
15515
|
</td>
|
|
15086
15516
|
<td>
|
|
15087
15517
|
<div class="doc-md-description">
|
|
@@ -15094,9 +15524,11 @@ If None, defaults to the <code>get_paginate_count()</code> (which is user's pref
|
|
|
15094
15524
|
</td>
|
|
15095
15525
|
</tr>
|
|
15096
15526
|
<tr class="doc-section-item">
|
|
15097
|
-
<td><code>table_title</code></td>
|
|
15098
15527
|
<td>
|
|
15099
|
-
|
|
15528
|
+
<code>table_title</code>
|
|
15529
|
+
</td>
|
|
15530
|
+
<td>
|
|
15531
|
+
<code>str</code>
|
|
15100
15532
|
</td>
|
|
15101
15533
|
<td>
|
|
15102
15534
|
<div class="doc-md-description">
|
|
@@ -15109,9 +15541,11 @@ If None, defaults to the plural verbose name of the table model.</p>
|
|
|
15109
15541
|
</td>
|
|
15110
15542
|
</tr>
|
|
15111
15543
|
<tr class="doc-section-item">
|
|
15112
|
-
<td><code>include_columns</code></td>
|
|
15113
15544
|
<td>
|
|
15114
|
-
|
|
15545
|
+
<code>include_columns</code>
|
|
15546
|
+
</td>
|
|
15547
|
+
<td>
|
|
15548
|
+
<code>list</code>
|
|
15115
15549
|
</td>
|
|
15116
15550
|
<td>
|
|
15117
15551
|
<div class="doc-md-description">
|
|
@@ -15124,9 +15558,11 @@ If provided, only these fields will be displayed in the table.</p>
|
|
|
15124
15558
|
</td>
|
|
15125
15559
|
</tr>
|
|
15126
15560
|
<tr class="doc-section-item">
|
|
15127
|
-
<td><code>exclude_columns</code></td>
|
|
15128
15561
|
<td>
|
|
15129
|
-
|
|
15562
|
+
<code>exclude_columns</code>
|
|
15563
|
+
</td>
|
|
15564
|
+
<td>
|
|
15565
|
+
<code>list</code>
|
|
15130
15566
|
</td>
|
|
15131
15567
|
<td>
|
|
15132
15568
|
<div class="doc-md-description">
|
|
@@ -15139,9 +15575,11 @@ Mutually exclusive with <code>include_columns</code>.</p>
|
|
|
15139
15575
|
</td>
|
|
15140
15576
|
</tr>
|
|
15141
15577
|
<tr class="doc-section-item">
|
|
15142
|
-
<td><code>add_button_route</code></td>
|
|
15143
15578
|
<td>
|
|
15144
|
-
|
|
15579
|
+
<code>add_button_route</code>
|
|
15580
|
+
</td>
|
|
15581
|
+
<td>
|
|
15582
|
+
<code>str</code>
|
|
15145
15583
|
</td>
|
|
15146
15584
|
<td>
|
|
15147
15585
|
<div class="doc-md-description">
|
|
@@ -15154,9 +15592,11 @@ which uses the default table's model <code>add</code> route.</p>
|
|
|
15154
15592
|
</td>
|
|
15155
15593
|
</tr>
|
|
15156
15594
|
<tr class="doc-section-item">
|
|
15157
|
-
<td><code>add_permissions</code></td>
|
|
15158
15595
|
<td>
|
|
15159
|
-
|
|
15596
|
+
<code>add_permissions</code>
|
|
15597
|
+
</td>
|
|
15598
|
+
<td>
|
|
15599
|
+
<code>list</code>
|
|
15160
15600
|
</td>
|
|
15161
15601
|
<td>
|
|
15162
15602
|
<div class="doc-md-description">
|
|
@@ -15169,9 +15609,11 @@ If not provided, permissions are determined by default based on the model.</p>
|
|
|
15169
15609
|
</td>
|
|
15170
15610
|
</tr>
|
|
15171
15611
|
<tr class="doc-section-item">
|
|
15172
|
-
<td><code>hide_hierarchy_ui</code></td>
|
|
15173
15612
|
<td>
|
|
15174
|
-
|
|
15613
|
+
<code>hide_hierarchy_ui</code>
|
|
15614
|
+
</td>
|
|
15615
|
+
<td>
|
|
15616
|
+
<code>bool</code>
|
|
15175
15617
|
</td>
|
|
15176
15618
|
<td>
|
|
15177
15619
|
<div class="doc-md-description">
|
|
@@ -15183,9 +15625,11 @@ If not provided, permissions are determined by default based on the model.</p>
|
|
|
15183
15625
|
</td>
|
|
15184
15626
|
</tr>
|
|
15185
15627
|
<tr class="doc-section-item">
|
|
15186
|
-
<td><code>related_field_name</code></td>
|
|
15187
15628
|
<td>
|
|
15188
|
-
|
|
15629
|
+
<code>related_field_name</code>
|
|
15630
|
+
</td>
|
|
15631
|
+
<td>
|
|
15632
|
+
<code>str</code>
|
|
15189
15633
|
</td>
|
|
15190
15634
|
<td>
|
|
15191
15635
|
<div class="doc-md-description">
|
|
@@ -15198,9 +15642,11 @@ to the base model. Defaults to the same as <code>table_filter</code> if unset. U
|
|
|
15198
15642
|
</td>
|
|
15199
15643
|
</tr>
|
|
15200
15644
|
<tr class="doc-section-item">
|
|
15201
|
-
<td><code>enable_bulk_actions</code></td>
|
|
15202
15645
|
<td>
|
|
15203
|
-
|
|
15646
|
+
<code>enable_bulk_actions</code>
|
|
15647
|
+
</td>
|
|
15648
|
+
<td>
|
|
15649
|
+
<code>bool</code>
|
|
15204
15650
|
</td>
|
|
15205
15651
|
<td>
|
|
15206
15652
|
<div class="doc-md-description">
|
|
@@ -15230,7 +15676,7 @@ appropriate permissions.</p>
|
|
|
15230
15676
|
|
|
15231
15677
|
<div class="doc doc-contents ">
|
|
15232
15678
|
|
|
15233
|
-
|
|
15679
|
+
<p>Add additional context for rendering the table panel.</p>
|
|
15234
15680
|
<p>This method processes the table data, configures pagination, and generates URLs
|
|
15235
15681
|
for listing and adding objects. It also handles field inclusion/exclusion and
|
|
15236
15682
|
displays the appropriate table title if provided.</p>
|
|
@@ -15260,10 +15706,15 @@ displays the appropriate table title if provided.</p>
|
|
|
15260
15706
|
|
|
15261
15707
|
<div class="doc doc-contents ">
|
|
15262
15708
|
<p class="doc doc-class-bases">
|
|
15263
|
-
Bases: <code><
|
|
15709
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Component" href="#nautobot.apps.ui.Component">Component</a></code></p>
|
|
15710
|
+
|
|
15711
|
+
|
|
15712
|
+
<p>Base class for defining an individual display panel within a Layout within a Tab.</p>
|
|
15713
|
+
|
|
15714
|
+
|
|
15715
|
+
|
|
15264
15716
|
|
|
15265
15717
|
|
|
15266
|
-
<p>Base class for defining an individual display panel within a Layout within a Tab.</p>
|
|
15267
15718
|
|
|
15268
15719
|
|
|
15269
15720
|
|
|
@@ -15289,7 +15740,7 @@ displays the appropriate table title if provided.</p>
|
|
|
15289
15740
|
|
|
15290
15741
|
<div class="doc doc-contents ">
|
|
15291
15742
|
|
|
15292
|
-
|
|
15743
|
+
<p>Initialize a Panel component that can be rendered as a self-contained HTML fragment.</p>
|
|
15293
15744
|
|
|
15294
15745
|
|
|
15295
15746
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -15304,9 +15755,11 @@ displays the appropriate table title if provided.</p>
|
|
|
15304
15755
|
</thead>
|
|
15305
15756
|
<tbody>
|
|
15306
15757
|
<tr class="doc-section-item">
|
|
15307
|
-
<td><code>label</code></td>
|
|
15308
15758
|
<td>
|
|
15309
|
-
|
|
15759
|
+
<code>label</code>
|
|
15760
|
+
</td>
|
|
15761
|
+
<td>
|
|
15762
|
+
<code>str</code>
|
|
15310
15763
|
</td>
|
|
15311
15764
|
<td>
|
|
15312
15765
|
<div class="doc-md-description">
|
|
@@ -15318,9 +15771,11 @@ displays the appropriate table title if provided.</p>
|
|
|
15318
15771
|
</td>
|
|
15319
15772
|
</tr>
|
|
15320
15773
|
<tr class="doc-section-item">
|
|
15321
|
-
<td><code>section</code></td>
|
|
15322
15774
|
<td>
|
|
15323
|
-
|
|
15775
|
+
<code>section</code>
|
|
15776
|
+
</td>
|
|
15777
|
+
<td>
|
|
15778
|
+
<code>str</code>
|
|
15324
15779
|
</td>
|
|
15325
15780
|
<td>
|
|
15326
15781
|
<div class="doc-md-description">
|
|
@@ -15328,13 +15783,15 @@ displays the appropriate table title if provided.</p>
|
|
|
15328
15783
|
</div>
|
|
15329
15784
|
</td>
|
|
15330
15785
|
<td>
|
|
15331
|
-
<code><
|
|
15786
|
+
<code><span title="nautobot.core.ui.choices.SectionChoices.FULL_WIDTH">FULL_WIDTH</span></code>
|
|
15332
15787
|
</td>
|
|
15333
15788
|
</tr>
|
|
15334
15789
|
<tr class="doc-section-item">
|
|
15335
|
-
<td><code>body_id</code></td>
|
|
15336
15790
|
<td>
|
|
15337
|
-
|
|
15791
|
+
<code>body_id</code>
|
|
15792
|
+
</td>
|
|
15793
|
+
<td>
|
|
15794
|
+
<code>str</code>
|
|
15338
15795
|
</td>
|
|
15339
15796
|
<td>
|
|
15340
15797
|
<div class="doc-md-description">
|
|
@@ -15346,9 +15803,11 @@ displays the appropriate table title if provided.</p>
|
|
|
15346
15803
|
</td>
|
|
15347
15804
|
</tr>
|
|
15348
15805
|
<tr class="doc-section-item">
|
|
15349
|
-
<td><code>body_content_template_path</code></td>
|
|
15350
15806
|
<td>
|
|
15351
|
-
|
|
15807
|
+
<code>body_content_template_path</code>
|
|
15808
|
+
</td>
|
|
15809
|
+
<td>
|
|
15810
|
+
<code>str</code>
|
|
15352
15811
|
</td>
|
|
15353
15812
|
<td>
|
|
15354
15813
|
<div class="doc-md-description">
|
|
@@ -15360,9 +15819,11 @@ displays the appropriate table title if provided.</p>
|
|
|
15360
15819
|
</td>
|
|
15361
15820
|
</tr>
|
|
15362
15821
|
<tr class="doc-section-item">
|
|
15363
|
-
<td><code>header_extra_content_template_path</code></td>
|
|
15364
15822
|
<td>
|
|
15365
|
-
|
|
15823
|
+
<code>header_extra_content_template_path</code>
|
|
15824
|
+
</td>
|
|
15825
|
+
<td>
|
|
15826
|
+
<code>str</code>
|
|
15366
15827
|
</td>
|
|
15367
15828
|
<td>
|
|
15368
15829
|
<div class="doc-md-description">
|
|
@@ -15375,9 +15836,11 @@ if any, not including its label if any.</p>
|
|
|
15375
15836
|
</td>
|
|
15376
15837
|
</tr>
|
|
15377
15838
|
<tr class="doc-section-item">
|
|
15378
|
-
<td><code>footer_content_template_path</code></td>
|
|
15379
15839
|
<td>
|
|
15380
|
-
|
|
15840
|
+
<code>footer_content_template_path</code>
|
|
15841
|
+
</td>
|
|
15842
|
+
<td>
|
|
15843
|
+
<code>str</code>
|
|
15381
15844
|
</td>
|
|
15382
15845
|
<td>
|
|
15383
15846
|
<div class="doc-md-description">
|
|
@@ -15389,9 +15852,11 @@ if any, not including its label if any.</p>
|
|
|
15389
15852
|
</td>
|
|
15390
15853
|
</tr>
|
|
15391
15854
|
<tr class="doc-section-item">
|
|
15392
|
-
<td><code>template_path</code></td>
|
|
15393
15855
|
<td>
|
|
15394
|
-
|
|
15856
|
+
<code>template_path</code>
|
|
15857
|
+
</td>
|
|
15858
|
+
<td>
|
|
15859
|
+
<code>str</code>
|
|
15395
15860
|
</td>
|
|
15396
15861
|
<td>
|
|
15397
15862
|
<div class="doc-md-description">
|
|
@@ -15403,9 +15868,11 @@ if any, not including its label if any.</p>
|
|
|
15403
15868
|
</td>
|
|
15404
15869
|
</tr>
|
|
15405
15870
|
<tr class="doc-section-item">
|
|
15406
|
-
<td><code>body_wrapper_template_path</code></td>
|
|
15407
15871
|
<td>
|
|
15408
|
-
|
|
15872
|
+
<code>body_wrapper_template_path</code>
|
|
15873
|
+
</td>
|
|
15874
|
+
<td>
|
|
15875
|
+
<code>str</code>
|
|
15409
15876
|
</td>
|
|
15410
15877
|
<td>
|
|
15411
15878
|
<div class="doc-md-description">
|
|
@@ -15435,7 +15902,7 @@ if any, not including its label if any.</p>
|
|
|
15435
15902
|
|
|
15436
15903
|
<div class="doc doc-contents ">
|
|
15437
15904
|
|
|
15438
|
-
|
|
15905
|
+
<p>Render the panel as a whole.</p>
|
|
15439
15906
|
<p>Default implementation calls <code>render_label()</code>, <code>render_header_extra_content()</code>, <code>render_body()</code>,
|
|
15440
15907
|
and <code>render_footer_extra_content()</code>, then wraps them all into the templated defined by <code>self.template_path</code>.</p>
|
|
15441
15908
|
<p>Typically you'll override one or more of the aforementioned methods in a subclass, rather than replacing this
|
|
@@ -15456,7 +15923,7 @@ entire method as a whole.</p>
|
|
|
15456
15923
|
|
|
15457
15924
|
<div class="doc doc-contents ">
|
|
15458
15925
|
|
|
15459
|
-
|
|
15926
|
+
<p>Render the panel body <em>including its HTML wrapper element(s)</em>.</p>
|
|
15460
15927
|
<p>Default implementation calls <code>render_body_content()</code> and wraps that in the template defined at
|
|
15461
15928
|
<code>self.body_wrapper_template_path</code>.</p>
|
|
15462
15929
|
<p>Normally you won't want to override this method in a subclass, instead overriding <code>render_body_content()</code>.</p>
|
|
@@ -15476,7 +15943,7 @@ entire method as a whole.</p>
|
|
|
15476
15943
|
|
|
15477
15944
|
<div class="doc doc-contents ">
|
|
15478
15945
|
|
|
15479
|
-
|
|
15946
|
+
<p>Render the content to include in this panel's body.</p>
|
|
15480
15947
|
<p>Default implementation renders the template from <code>self.body_content_template_path</code> if any.</p>
|
|
15481
15948
|
|
|
15482
15949
|
</div>
|
|
@@ -15494,7 +15961,7 @@ entire method as a whole.</p>
|
|
|
15494
15961
|
|
|
15495
15962
|
<div class="doc doc-contents ">
|
|
15496
15963
|
|
|
15497
|
-
|
|
15964
|
+
<p>Render any non-default content to include in this panel's footer.</p>
|
|
15498
15965
|
<p>Default implementation renders the template from <code>self.footer_content_template_path</code> if any.</p>
|
|
15499
15966
|
|
|
15500
15967
|
</div>
|
|
@@ -15512,7 +15979,7 @@ entire method as a whole.</p>
|
|
|
15512
15979
|
|
|
15513
15980
|
<div class="doc doc-contents ">
|
|
15514
15981
|
|
|
15515
|
-
|
|
15982
|
+
<p>Render any additional (non-label) content to include in this panel's header.</p>
|
|
15516
15983
|
<p>Default implementation renders the template from <code>self.header_extra_content_template_path</code> if any.</p>
|
|
15517
15984
|
|
|
15518
15985
|
</div>
|
|
@@ -15530,7 +15997,7 @@ entire method as a whole.</p>
|
|
|
15530
15997
|
|
|
15531
15998
|
<div class="doc doc-contents ">
|
|
15532
15999
|
|
|
15533
|
-
|
|
16000
|
+
<p>Render the label of this panel, if any.</p>
|
|
15534
16001
|
|
|
15535
16002
|
</div>
|
|
15536
16003
|
|
|
@@ -15558,7 +16025,12 @@ entire method as a whole.</p>
|
|
|
15558
16025
|
<div class="doc doc-contents ">
|
|
15559
16026
|
|
|
15560
16027
|
|
|
15561
|
-
|
|
16028
|
+
<p>Ensure permissions through init.</p>
|
|
16029
|
+
|
|
16030
|
+
|
|
16031
|
+
|
|
16032
|
+
|
|
16033
|
+
|
|
15562
16034
|
|
|
15563
16035
|
|
|
15564
16036
|
|
|
@@ -15584,7 +16056,7 @@ entire method as a whole.</p>
|
|
|
15584
16056
|
|
|
15585
16057
|
<div class="doc doc-contents ">
|
|
15586
16058
|
|
|
15587
|
-
|
|
16059
|
+
<p>Ensure permissions.</p>
|
|
15588
16060
|
|
|
15589
16061
|
</div>
|
|
15590
16062
|
|
|
@@ -15611,10 +16083,10 @@ entire method as a whole.</p>
|
|
|
15611
16083
|
|
|
15612
16084
|
<div class="doc doc-contents ">
|
|
15613
16085
|
<p class="doc doc-class-bases">
|
|
15614
|
-
Bases: <code><
|
|
16086
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
|
|
15615
16087
|
|
|
15616
16088
|
|
|
15617
|
-
|
|
16089
|
+
<p>Sections of a Layout to assign panels to. Placement of panels is determined by <a href="ui.html#nautobot.apps.ui.LayoutChoices"><code>LayoutChoices</code></a> set on <code>Tab.layout</code></p>
|
|
15618
16090
|
|
|
15619
16091
|
|
|
15620
16092
|
<p><span class="doc-section-title">Attributes:</span></p>
|
|
@@ -15628,9 +16100,9 @@ entire method as a whole.</p>
|
|
|
15628
16100
|
</thead>
|
|
15629
16101
|
<tbody>
|
|
15630
16102
|
<tr class="doc-section-item">
|
|
15631
|
-
<td><code><
|
|
16103
|
+
<td><code><span title="nautobot.apps.ui.SectionChoices.LEFT_HALF">LEFT_HALF</span></code></td>
|
|
15632
16104
|
<td>
|
|
15633
|
-
<code
|
|
16105
|
+
<code>str</code>
|
|
15634
16106
|
</td>
|
|
15635
16107
|
<td>
|
|
15636
16108
|
<div class="doc-md-description">
|
|
@@ -15639,9 +16111,9 @@ entire method as a whole.</p>
|
|
|
15639
16111
|
</td>
|
|
15640
16112
|
</tr>
|
|
15641
16113
|
<tr class="doc-section-item">
|
|
15642
|
-
<td><code><
|
|
16114
|
+
<td><code><span title="nautobot.apps.ui.SectionChoices.RIGHT_HALF">RIGHT_HALF</span></code></td>
|
|
15643
16115
|
<td>
|
|
15644
|
-
<code
|
|
16116
|
+
<code>str</code>
|
|
15645
16117
|
</td>
|
|
15646
16118
|
<td>
|
|
15647
16119
|
<div class="doc-md-description">
|
|
@@ -15650,9 +16122,9 @@ entire method as a whole.</p>
|
|
|
15650
16122
|
</td>
|
|
15651
16123
|
</tr>
|
|
15652
16124
|
<tr class="doc-section-item">
|
|
15653
|
-
<td><code><
|
|
16125
|
+
<td><code><span title="nautobot.apps.ui.SectionChoices.FULL_WIDTH">FULL_WIDTH</span></code></td>
|
|
15654
16126
|
<td>
|
|
15655
|
-
<code
|
|
16127
|
+
<code>str</code>
|
|
15656
16128
|
</td>
|
|
15657
16129
|
<td>
|
|
15658
16130
|
<div class="doc-md-description">
|
|
@@ -15666,6 +16138,11 @@ entire method as a whole.</p>
|
|
|
15666
16138
|
|
|
15667
16139
|
|
|
15668
16140
|
|
|
16141
|
+
|
|
16142
|
+
|
|
16143
|
+
|
|
16144
|
+
|
|
16145
|
+
|
|
15669
16146
|
<div class="doc doc-children">
|
|
15670
16147
|
|
|
15671
16148
|
|
|
@@ -15697,7 +16174,12 @@ entire method as a whole.</p>
|
|
|
15697
16174
|
|
|
15698
16175
|
<div class="doc doc-contents ">
|
|
15699
16176
|
<p class="doc doc-class-bases">
|
|
15700
|
-
Bases: <code><
|
|
16177
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Panel" href="#nautobot.apps.ui.Panel">Panel</a></code></p>
|
|
16178
|
+
|
|
16179
|
+
|
|
16180
|
+
|
|
16181
|
+
|
|
16182
|
+
|
|
15701
16183
|
|
|
15702
16184
|
|
|
15703
16185
|
|
|
@@ -15724,7 +16206,7 @@ entire method as a whole.</p>
|
|
|
15724
16206
|
|
|
15725
16207
|
<div class="doc doc-contents ">
|
|
15726
16208
|
|
|
15727
|
-
|
|
16209
|
+
<p>Instantiate a <code>StatsPanel</code>.
|
|
15728
16210
|
filter_name (str) is a valid query filter append to the anchor tag for each stat button.
|
|
15729
16211
|
e.g. the <code>tenant</code> query parameter in the url <code>/circuits/circuits/?tenant=f4b48e9d-56fc-4090-afa5-dcbe69775b13</code>.
|
|
15730
16212
|
related_models is a list of model classes and/or tuples of (model_class, query_string).
|
|
@@ -15745,7 +16227,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15745
16227
|
|
|
15746
16228
|
<div class="doc doc-contents ">
|
|
15747
16229
|
|
|
15748
|
-
|
|
16230
|
+
<p>Transform self.related_models to a dictionary with key, value pairs as follows:
|
|
15749
16231
|
{
|
|
15750
16232
|
<related_object_model_class_1>: [related_object_model_class_list_url_1, related_object_count_1, related_object_title_1],
|
|
15751
16233
|
<related_object_model_class_2>: [related_object_model_class_list_url_2, related_object_count_2, related_object_title_2],
|
|
@@ -15768,7 +16250,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15768
16250
|
|
|
15769
16251
|
<div class="doc doc-contents ">
|
|
15770
16252
|
|
|
15771
|
-
|
|
16253
|
+
<p>Always should render this panel as the permission is reinforced in python with .restrict(request.user, "view")</p>
|
|
15772
16254
|
|
|
15773
16255
|
</div>
|
|
15774
16256
|
|
|
@@ -15795,10 +16277,15 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15795
16277
|
|
|
15796
16278
|
<div class="doc doc-contents ">
|
|
15797
16279
|
<p class="doc doc-class-bases">
|
|
15798
|
-
Bases: <code><
|
|
16280
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Component" href="#nautobot.apps.ui.Component">Component</a></code></p>
|
|
16281
|
+
|
|
16282
|
+
|
|
16283
|
+
<p>Base class for UI framework definition of a single tabbed pane within an Object Detail (Object Retrieve) page.</p>
|
|
16284
|
+
|
|
16285
|
+
|
|
16286
|
+
|
|
15799
16287
|
|
|
15800
16288
|
|
|
15801
|
-
<p>Base class for UI framework definition of a single tabbed pane within an Object Detail (Object Retrieve) page.</p>
|
|
15802
16289
|
|
|
15803
16290
|
|
|
15804
16291
|
|
|
@@ -15824,7 +16311,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15824
16311
|
|
|
15825
16312
|
<div class="doc doc-contents ">
|
|
15826
16313
|
|
|
15827
|
-
|
|
16314
|
+
<p>Initialize a Tab component.</p>
|
|
15828
16315
|
|
|
15829
16316
|
|
|
15830
16317
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -15839,9 +16326,11 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15839
16326
|
</thead>
|
|
15840
16327
|
<tbody>
|
|
15841
16328
|
<tr class="doc-section-item">
|
|
15842
|
-
<td><code>tab_id</code></td>
|
|
15843
16329
|
<td>
|
|
15844
|
-
|
|
16330
|
+
<code>tab_id</code>
|
|
16331
|
+
</td>
|
|
16332
|
+
<td>
|
|
16333
|
+
<code>str</code>
|
|
15845
16334
|
</td>
|
|
15846
16335
|
<td>
|
|
15847
16336
|
<div class="doc-md-description">
|
|
@@ -15853,9 +16342,11 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15853
16342
|
</td>
|
|
15854
16343
|
</tr>
|
|
15855
16344
|
<tr class="doc-section-item">
|
|
15856
|
-
<td><code>label</code></td>
|
|
15857
16345
|
<td>
|
|
15858
|
-
|
|
16346
|
+
<code>label</code>
|
|
16347
|
+
</td>
|
|
16348
|
+
<td>
|
|
16349
|
+
<code>str</code>
|
|
15859
16350
|
</td>
|
|
15860
16351
|
<td>
|
|
15861
16352
|
<div class="doc-md-description">
|
|
@@ -15867,9 +16358,11 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15867
16358
|
</td>
|
|
15868
16359
|
</tr>
|
|
15869
16360
|
<tr class="doc-section-item">
|
|
15870
|
-
<td><code>panels</code></td>
|
|
15871
16361
|
<td>
|
|
15872
|
-
|
|
16362
|
+
<code>panels</code>
|
|
16363
|
+
</td>
|
|
16364
|
+
<td>
|
|
16365
|
+
<code>tuple</code>
|
|
15873
16366
|
</td>
|
|
15874
16367
|
<td>
|
|
15875
16368
|
<div class="doc-md-description">
|
|
@@ -15881,9 +16374,11 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15881
16374
|
</td>
|
|
15882
16375
|
</tr>
|
|
15883
16376
|
<tr class="doc-section-item">
|
|
15884
|
-
<td><code>layout</code></td>
|
|
15885
16377
|
<td>
|
|
15886
|
-
|
|
16378
|
+
<code>layout</code>
|
|
16379
|
+
</td>
|
|
16380
|
+
<td>
|
|
16381
|
+
<code>str</code>
|
|
15887
16382
|
</td>
|
|
15888
16383
|
<td>
|
|
15889
16384
|
<div class="doc-md-description">
|
|
@@ -15891,13 +16386,15 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15891
16386
|
</div>
|
|
15892
16387
|
</td>
|
|
15893
16388
|
<td>
|
|
15894
|
-
<code><
|
|
16389
|
+
<code><span title="nautobot.core.ui.choices.LayoutChoices.DEFAULT">DEFAULT</span></code>
|
|
15895
16390
|
</td>
|
|
15896
16391
|
</tr>
|
|
15897
16392
|
<tr class="doc-section-item">
|
|
15898
|
-
<td><code>label_wrapper_template_path</code></td>
|
|
15899
16393
|
<td>
|
|
15900
|
-
|
|
16394
|
+
<code>label_wrapper_template_path</code>
|
|
16395
|
+
</td>
|
|
16396
|
+
<td>
|
|
16397
|
+
<code>str</code>
|
|
15901
16398
|
</td>
|
|
15902
16399
|
<td>
|
|
15903
16400
|
<div class="doc-md-description">
|
|
@@ -15909,9 +16406,11 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15909
16406
|
</td>
|
|
15910
16407
|
</tr>
|
|
15911
16408
|
<tr class="doc-section-item">
|
|
15912
|
-
<td><code>content_wrapper_template_path</code></td>
|
|
15913
16409
|
<td>
|
|
15914
|
-
|
|
16410
|
+
<code>content_wrapper_template_path</code>
|
|
16411
|
+
</td>
|
|
16412
|
+
<td>
|
|
16413
|
+
<code>str</code>
|
|
15915
16414
|
</td>
|
|
15916
16415
|
<td>
|
|
15917
16416
|
<div class="doc-md-description">
|
|
@@ -15940,7 +16439,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15940
16439
|
|
|
15941
16440
|
<div class="doc doc-contents ">
|
|
15942
16441
|
|
|
15943
|
-
|
|
16442
|
+
<p>Get the subset of this tab's panels that apply to the given layout section, ordered by their <code>weight</code>.</p>
|
|
15944
16443
|
|
|
15945
16444
|
|
|
15946
16445
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -15955,9 +16454,11 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15955
16454
|
</thead>
|
|
15956
16455
|
<tbody>
|
|
15957
16456
|
<tr class="doc-section-item">
|
|
15958
|
-
<td><code>section</code></td>
|
|
15959
16457
|
<td>
|
|
15960
|
-
|
|
16458
|
+
<code>section</code>
|
|
16459
|
+
</td>
|
|
16460
|
+
<td>
|
|
16461
|
+
<code>str</code>
|
|
15961
16462
|
</td>
|
|
15962
16463
|
<td>
|
|
15963
16464
|
<div class="doc-md-description">
|
|
@@ -15983,7 +16484,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
15983
16484
|
<tbody>
|
|
15984
16485
|
<tr class="doc-section-item">
|
|
15985
16486
|
<td>
|
|
15986
|
-
<code
|
|
16487
|
+
<code>list[<a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.Panel" href="#nautobot.apps.ui.Panel">Panel</a>]</code>
|
|
15987
16488
|
</td>
|
|
15988
16489
|
<td>
|
|
15989
16490
|
<div class="doc-md-description">
|
|
@@ -16009,7 +16510,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
16009
16510
|
|
|
16010
16511
|
<div class="doc doc-contents ">
|
|
16011
16512
|
|
|
16012
|
-
|
|
16513
|
+
<p>Render the tab's contents (layout and panels) to HTML.</p>
|
|
16013
16514
|
|
|
16014
16515
|
</div>
|
|
16015
16516
|
|
|
@@ -16026,7 +16527,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
16026
16527
|
|
|
16027
16528
|
<div class="doc doc-contents ">
|
|
16028
16529
|
|
|
16029
|
-
|
|
16530
|
+
<p>Render the tab's label text in a form suitable for display to the user.</p>
|
|
16030
16531
|
<p>Defaults to just returning <code>self.label</code>, but may be overridden if context-specific formatting is needed.</p>
|
|
16031
16532
|
|
|
16032
16533
|
</div>
|
|
@@ -16044,7 +16545,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
16044
16545
|
|
|
16045
16546
|
<div class="doc doc-contents ">
|
|
16046
16547
|
|
|
16047
|
-
|
|
16548
|
+
<p>Render the tab's label (as opposed to its contents) and wrapping HTML elements.</p>
|
|
16048
16549
|
<p>In most cases you should not need to override this method; override <code>render_label()</code> instead.</p>
|
|
16049
16550
|
|
|
16050
16551
|
</div>
|
|
@@ -16073,7 +16574,7 @@ e.g. [Device, Prefix, (Circuit, "circuit_terminations__location__in"), (VirtualM
|
|
|
16073
16574
|
<div class="doc doc-contents ">
|
|
16074
16575
|
|
|
16075
16576
|
|
|
16076
|
-
|
|
16577
|
+
<p>This class is used to register App content to be injected into core Nautobot templates.</p>
|
|
16077
16578
|
<p>It contains methods and attributes that may be overridden by App authors to return template content.</p>
|
|
16078
16579
|
<p>The <code>model</code> attribute on the class defines the which model detail/list pages this class renders content for.
|
|
16079
16580
|
It should be set as a string in the form <code><app_label>.<model_name></code>.</p>
|
|
@@ -16081,6 +16582,11 @@ It should be set as a string in the form <code><app_label>.<model_name&
|
|
|
16081
16582
|
|
|
16082
16583
|
|
|
16083
16584
|
|
|
16585
|
+
|
|
16586
|
+
|
|
16587
|
+
|
|
16588
|
+
|
|
16589
|
+
|
|
16084
16590
|
<div class="doc doc-children">
|
|
16085
16591
|
|
|
16086
16592
|
|
|
@@ -16094,7 +16600,7 @@ It should be set as a string in the form <code><app_label>.<model_name&
|
|
|
16094
16600
|
|
|
16095
16601
|
|
|
16096
16602
|
<h3 id="nautobot.apps.ui.TemplateExtension.model" class="doc doc-heading">
|
|
16097
|
-
<code class="highlight language-python"><span class="n">model</span
|
|
16603
|
+
<code class="highlight language-python"><span class="n">model</span> <span class="o">=</span> <span class="kc">None</span></code>
|
|
16098
16604
|
|
|
16099
16605
|
<span class="doc doc-labels">
|
|
16100
16606
|
<small class="doc doc-label doc-label-class-attribute"><code>class-attribute</code></small>
|
|
@@ -16106,7 +16612,7 @@ It should be set as a string in the form <code><app_label>.<model_name&
|
|
|
16106
16612
|
|
|
16107
16613
|
<div class="doc doc-contents ">
|
|
16108
16614
|
|
|
16109
|
-
|
|
16615
|
+
<p>The model (as a string in the form <code><app_label>.<model></code>) that this TemplateExtension subclass applies to.</p>
|
|
16110
16616
|
</div>
|
|
16111
16617
|
|
|
16112
16618
|
</div>
|
|
@@ -16128,7 +16634,7 @@ It should be set as a string in the form <code><app_label>.<model_name&
|
|
|
16128
16634
|
|
|
16129
16635
|
<div class="doc doc-contents ">
|
|
16130
16636
|
|
|
16131
|
-
|
|
16637
|
+
<p>List of Button instances to add to the specified model's detail view.</p>
|
|
16132
16638
|
</div>
|
|
16133
16639
|
|
|
16134
16640
|
</div>
|
|
@@ -16150,7 +16656,7 @@ It should be set as a string in the form <code><app_label>.<model_name&
|
|
|
16150
16656
|
|
|
16151
16657
|
<div class="doc doc-contents ">
|
|
16152
16658
|
|
|
16153
|
-
|
|
16659
|
+
<p>List of Panel instances to add to the specified model's detail view.</p>
|
|
16154
16660
|
</div>
|
|
16155
16661
|
|
|
16156
16662
|
</div>
|
|
@@ -16172,7 +16678,7 @@ It should be set as a string in the form <code><app_label>.<model_name&
|
|
|
16172
16678
|
|
|
16173
16679
|
<div class="doc doc-contents ">
|
|
16174
16680
|
|
|
16175
|
-
|
|
16681
|
+
<p>List of Tab instances to add to the specified model's detail view.</p>
|
|
16176
16682
|
</div>
|
|
16177
16683
|
|
|
16178
16684
|
</div>
|
|
@@ -16190,7 +16696,7 @@ It should be set as a string in the form <code><app_label>.<model_name&
|
|
|
16190
16696
|
|
|
16191
16697
|
<div class="doc doc-contents ">
|
|
16192
16698
|
|
|
16193
|
-
|
|
16699
|
+
<p>Called automatically to instantiate a TemplateExtension with render context before calling <code>left_page()</code>, etc.</p>
|
|
16194
16700
|
<p>The provided context typically includes the following keys:</p>
|
|
16195
16701
|
<ul>
|
|
16196
16702
|
<li>object - The object being viewed</li>
|
|
@@ -16214,7 +16720,7 @@ It should be set as a string in the form <code><app_label>.<model_name&
|
|
|
16214
16720
|
|
|
16215
16721
|
<div class="doc doc-contents ">
|
|
16216
16722
|
|
|
16217
|
-
|
|
16723
|
+
<p>(Deprecated) Provide content that will be added to the existing list of buttons on the detail page view.</p>
|
|
16218
16724
|
<p>In Nautobot v2.4.0 and later, Apps can (should) instead register <code>Button</code> instances in <code>object_detail_buttons</code>,
|
|
16219
16725
|
instead of implementing a <code>.buttons()</code> method.</p>
|
|
16220
16726
|
<p>Content should be returned as an HTML string.
|
|
@@ -16235,7 +16741,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16235
16741
|
|
|
16236
16742
|
<div class="doc doc-contents ">
|
|
16237
16743
|
|
|
16238
|
-
|
|
16744
|
+
<p>(Deprecated) Provide a dict of tabs and associated views that will be added to the detail page view.</p>
|
|
16239
16745
|
<p>In Nautobot v2.4.0 and later, Apps can (should) instead implement the <code>object_detail_tabs</code> attribute instead.</p>
|
|
16240
16746
|
<p>Tabs will be ordered by their position in the list.</p>
|
|
16241
16747
|
<p>Content should be returned as a list of dicts in the following format:
|
|
@@ -16266,7 +16772,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16266
16772
|
|
|
16267
16773
|
<div class="doc doc-contents ">
|
|
16268
16774
|
|
|
16269
|
-
|
|
16775
|
+
<p>(Deprecated) Provide content that will be rendered within the full width of the detail page view.</p>
|
|
16270
16776
|
<p>In Nautobot v2.4.0 and later, Apps can (should) instead register <code>Panel</code> instances in <code>object_detail_panels</code>,
|
|
16271
16777
|
instead of implementing a <code>.full_width_page()</code> method.</p>
|
|
16272
16778
|
<p>Content should be returned as an HTML string.
|
|
@@ -16287,7 +16793,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16287
16793
|
|
|
16288
16794
|
<div class="doc doc-contents ">
|
|
16289
16795
|
|
|
16290
|
-
|
|
16796
|
+
<p>(Deprecated) Provide content that will be rendered on the left of the detail page view.</p>
|
|
16291
16797
|
<p>In Nautobot v2.4.0 and later, Apps can (should) instead register <code>Panel</code> instances in <code>object_detail_panels</code>,
|
|
16292
16798
|
instead of implementing a <code>.left_page()</code> method.</p>
|
|
16293
16799
|
<p>Content should be returned as an HTML string.
|
|
@@ -16308,7 +16814,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16308
16814
|
|
|
16309
16815
|
<div class="doc doc-contents ">
|
|
16310
16816
|
|
|
16311
|
-
|
|
16817
|
+
<p>Buttons that will be rendered and added to the existing list of buttons on the list page view. Content
|
|
16312
16818
|
should be returned as an HTML string. Note that content does not need to be marked as safe because this is
|
|
16313
16819
|
automatically handled.</p>
|
|
16314
16820
|
|
|
@@ -16327,7 +16833,7 @@ automatically handled.</p>
|
|
|
16327
16833
|
|
|
16328
16834
|
<div class="doc doc-contents ">
|
|
16329
16835
|
|
|
16330
|
-
|
|
16836
|
+
<p>Convenience method for rendering the specified Django template using the default context data. An additional
|
|
16331
16837
|
context dictionary may be passed as <code>extra_context</code>.</p>
|
|
16332
16838
|
|
|
16333
16839
|
</div>
|
|
@@ -16345,7 +16851,7 @@ context dictionary may be passed as <code>extra_context</code>.</p>
|
|
|
16345
16851
|
|
|
16346
16852
|
<div class="doc doc-contents ">
|
|
16347
16853
|
|
|
16348
|
-
|
|
16854
|
+
<p>(Deprecated) Provide content that will be rendered on the right of the detail page view.</p>
|
|
16349
16855
|
<p>In Nautobot v2.4.0 and later, Apps can (should) instead register <code>Panel</code> instances in <code>object_detail_panels</code>,
|
|
16350
16856
|
instead of implementing a <code>.right_page()</code> method.</p>
|
|
16351
16857
|
<p>Content should be returned as an HTML string.
|
|
@@ -16376,10 +16882,10 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16376
16882
|
|
|
16377
16883
|
<div class="doc doc-contents ">
|
|
16378
16884
|
<p class="doc doc-class-bases">
|
|
16379
|
-
Bases: <code><
|
|
16885
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.ui.object_detail.BaseTextPanel" href="#nautobot.apps.ui.BaseTextPanel">BaseTextPanel</a></code></p>
|
|
16380
16886
|
|
|
16381
16887
|
|
|
16382
|
-
|
|
16888
|
+
<p>Panel that renders text, Markdown, JSON or YAML from the given value in the context.</p>
|
|
16383
16889
|
|
|
16384
16890
|
|
|
16385
16891
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -16394,9 +16900,11 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16394
16900
|
</thead>
|
|
16395
16901
|
<tbody>
|
|
16396
16902
|
<tr class="doc-section-item">
|
|
16397
|
-
<td><code>context_field</code></td>
|
|
16398
16903
|
<td>
|
|
16399
|
-
|
|
16904
|
+
<code>context_field</code>
|
|
16905
|
+
</td>
|
|
16906
|
+
<td>
|
|
16907
|
+
<code>str</code>
|
|
16400
16908
|
</td>
|
|
16401
16909
|
<td>
|
|
16402
16910
|
<div class="doc-md-description">
|
|
@@ -16408,9 +16916,11 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16408
16916
|
</td>
|
|
16409
16917
|
</tr>
|
|
16410
16918
|
<tr class="doc-section-item">
|
|
16411
|
-
<td><code>kwargs</code></td>
|
|
16412
16919
|
<td>
|
|
16413
|
-
|
|
16920
|
+
<code>kwargs</code>
|
|
16921
|
+
</td>
|
|
16922
|
+
<td>
|
|
16923
|
+
<code>dict</code>
|
|
16414
16924
|
</td>
|
|
16415
16925
|
<td>
|
|
16416
16926
|
<div class="doc-md-description">
|
|
@@ -16427,6 +16937,11 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16427
16937
|
|
|
16428
16938
|
|
|
16429
16939
|
|
|
16940
|
+
|
|
16941
|
+
|
|
16942
|
+
|
|
16943
|
+
|
|
16944
|
+
|
|
16430
16945
|
<div class="doc doc-children">
|
|
16431
16946
|
|
|
16432
16947
|
|
|
@@ -16457,7 +16972,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16457
16972
|
|
|
16458
16973
|
<div class="doc doc-contents ">
|
|
16459
16974
|
|
|
16460
|
-
|
|
16975
|
+
<p>Render the template located at the given path with the given context, possibly augmented via additional kwargs.</p>
|
|
16461
16976
|
|
|
16462
16977
|
|
|
16463
16978
|
<p><span class="doc-section-title">Parameters:</span></p>
|
|
@@ -16472,9 +16987,11 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16472
16987
|
</thead>
|
|
16473
16988
|
<tbody>
|
|
16474
16989
|
<tr class="doc-section-item">
|
|
16475
|
-
<td><code>template_path</code></td>
|
|
16476
16990
|
<td>
|
|
16477
|
-
|
|
16991
|
+
<code>template_path</code>
|
|
16992
|
+
</td>
|
|
16993
|
+
<td>
|
|
16994
|
+
<code>str</code>
|
|
16478
16995
|
</td>
|
|
16479
16996
|
<td>
|
|
16480
16997
|
<div class="doc-md-description">
|
|
@@ -16486,9 +17003,11 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16486
17003
|
</td>
|
|
16487
17004
|
</tr>
|
|
16488
17005
|
<tr class="doc-section-item">
|
|
16489
|
-
<td><code>context</code></td>
|
|
16490
17006
|
<td>
|
|
16491
|
-
|
|
17007
|
+
<code>context</code>
|
|
17008
|
+
</td>
|
|
17009
|
+
<td>
|
|
17010
|
+
<code><span title="django.template.Context">Context</span></code>
|
|
16492
17011
|
</td>
|
|
16493
17012
|
<td>
|
|
16494
17013
|
<div class="doc-md-description">
|
|
@@ -16500,9 +17019,11 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16500
17019
|
</td>
|
|
16501
17020
|
</tr>
|
|
16502
17021
|
<tr class="doc-section-item">
|
|
16503
|
-
<td><code>**kwargs</code></td>
|
|
16504
17022
|
<td>
|
|
16505
|
-
|
|
17023
|
+
<code>**kwargs</code>
|
|
17024
|
+
</td>
|
|
17025
|
+
<td>
|
|
17026
|
+
<code>dict</code>
|
|
16506
17027
|
</td>
|
|
16507
17028
|
<td>
|
|
16508
17029
|
<div class="doc-md-description">
|
|
@@ -16628,7 +17149,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16628
17149
|
|
|
16629
17150
|
|
|
16630
17151
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
16631
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
17152
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 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 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-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-32"/></svg>
|
|
16632
17153
|
</a>
|
|
16633
17154
|
|
|
16634
17155
|
|
|
@@ -16636,7 +17157,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16636
17157
|
|
|
16637
17158
|
|
|
16638
17159
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
16639
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.
|
|
17160
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.7.2 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.305m-317.51 213.508V175.185l142.739 81.205z"/></svg>
|
|
16640
17161
|
</a>
|
|
16641
17162
|
|
|
16642
17163
|
|
|
@@ -16644,7 +17165,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16644
17165
|
|
|
16645
17166
|
|
|
16646
17167
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
16647
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.
|
|
17168
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 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.1s21.16-47.06 47.06-47.06h47.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.06zm47.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.06zm0 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.06zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06S448 171 448 196.9s-21.16 47.06-47.06 47.06h-47.06zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06S309 480 283.1 480s-47.06-21.16-47.06-47.06v-47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06s21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06z"/></svg>
|
|
16648
17169
|
</a>
|
|
16649
17170
|
|
|
16650
17171
|
|
|
@@ -16652,7 +17173,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16652
17173
|
|
|
16653
17174
|
|
|
16654
17175
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
16655
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.
|
|
17176
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 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.6m-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.3m44.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.9M244.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 8M97.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-1m-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.7m32.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-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
|
|
16656
17177
|
</a>
|
|
16657
17178
|
|
|
16658
17179
|
|
|
@@ -16660,7 +17181,7 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16660
17181
|
|
|
16661
17182
|
|
|
16662
17183
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
16663
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.
|
|
17184
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 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.253"/></svg>
|
|
16664
17185
|
</a>
|
|
16665
17186
|
|
|
16666
17187
|
</div>
|
|
@@ -16675,10 +17196,10 @@ Note that content does not need to be marked as safe because this is automatical
|
|
|
16675
17196
|
</div>
|
|
16676
17197
|
|
|
16677
17198
|
|
|
16678
|
-
<script id="__config" type="application/json">{"base": "../../..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../assets/javascripts/workers/search.
|
|
17199
|
+
<script id="__config" type="application/json">{"base": "../../..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../assets/javascripts/workers/search.f8cc74c7.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
16679
17200
|
|
|
16680
17201
|
|
|
16681
|
-
<script src="../../../assets/javascripts/bundle.
|
|
17202
|
+
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
16682
17203
|
|
|
16683
17204
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
16684
17205
|
|