nautobot 2.4.6__py3-none-any.whl → 2.4.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/forms.py +2 -0
- nautobot/circuits/templates/circuits/providernetwork.html +1 -1
- nautobot/circuits/templates/circuits/providernetwork_retrieve.html +2 -55
- nautobot/circuits/views.py +20 -23
- nautobot/cloud/templates/cloud/cloudaccount_retrieve.html +2 -40
- nautobot/cloud/views.py +12 -0
- nautobot/core/api/urls.py +2 -2
- nautobot/core/api/views.py +39 -1
- nautobot/core/forms/__init__.py +2 -0
- nautobot/core/forms/fields.py +2 -2
- nautobot/core/forms/widgets.py +18 -0
- nautobot/core/templates/widgets/sluginput.html +5 -1
- nautobot/core/templatetags/helpers.py +15 -1
- nautobot/core/testing/integration.py +6 -2
- nautobot/core/ui/object_detail.py +16 -3
- nautobot/core/utils/lookup.py +2 -2
- nautobot/dcim/forms.py +10 -0
- nautobot/dcim/models/locations.py +9 -0
- nautobot/dcim/templates/dcim/device_list.html +1 -1
- nautobot/dcim/templates/dcim/devicetype.html +1 -1
- nautobot/dcim/templates/dcim/manufacturer.html +1 -63
- nautobot/dcim/templates/dcim/module_list.html +1 -1
- nautobot/dcim/templates/dcim/moduletype_retrieve.html +1 -1
- nautobot/dcim/tests/integration/test_module_bay_position.py +125 -0
- nautobot/dcim/tests/test_models.py +13 -0
- nautobot/dcim/tests/test_views.py +4 -1
- nautobot/dcim/urls.py +1 -45
- nautobot/dcim/views.py +35 -66
- nautobot/extras/choices.py +4 -0
- nautobot/extras/filters/__init__.py +6 -0
- nautobot/extras/forms/forms.py +76 -8
- nautobot/extras/models/customfields.py +10 -9
- nautobot/extras/signals.py +43 -4
- nautobot/extras/tasks.py +4 -2
- nautobot/extras/templates/extras/contact_retrieve.html +1 -58
- nautobot/extras/templates/extras/exporttemplate.html +1 -53
- nautobot/extras/templates/extras/team_retrieve.html +1 -58
- nautobot/extras/tests/test_customfields.py +24 -0
- nautobot/extras/tests/test_views.py +22 -0
- nautobot/extras/urls.py +2 -70
- nautobot/extras/views.py +101 -79
- nautobot/ipam/tables.py +1 -0
- nautobot/project-static/css/base.css +5 -0
- nautobot/project-static/docs/404.html +0 -2
- nautobot/project-static/docs/apps/index.html +0 -2
- nautobot/project-static/docs/apps/nautobot-apps.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +62 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +7 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +0 -2
- nautobot/project-static/docs/development/apps/api/configuration-view.html +0 -2
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +0 -2
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +0 -2
- nautobot/project-static/docs/development/apps/api/models/global-search.html +0 -2
- nautobot/project-static/docs/development/apps/api/models/graphql.html +0 -2
- nautobot/project-static/docs/development/apps/api/models/index.html +0 -2
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +0 -2
- nautobot/project-static/docs/development/apps/api/prometheus.html +0 -2
- nautobot/project-static/docs/development/apps/api/setup.html +0 -2
- nautobot/project-static/docs/development/apps/api/testing.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/base-template.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/index.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/notes.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/urls.html +0 -2
- nautobot/project-static/docs/development/apps/index.html +0 -2
- nautobot/project-static/docs/development/apps/migration/code-updates.html +0 -2
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +0 -2
- nautobot/project-static/docs/development/apps/migration/from-v1.html +0 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +0 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +0 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +0 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +0 -2
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +0 -2
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +0 -2
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +0 -2
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +0 -2
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +0 -2
- nautobot/project-static/docs/development/core/application-registry.html +0 -2
- nautobot/project-static/docs/development/core/best-practices.html +0 -2
- nautobot/project-static/docs/development/core/bootstrap-ui.html +0 -2
- nautobot/project-static/docs/development/core/caching.html +0 -2
- nautobot/project-static/docs/development/core/controllers.html +0 -2
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +0 -2
- nautobot/project-static/docs/development/core/generic-views.html +0 -2
- nautobot/project-static/docs/development/core/getting-started.html +0 -2
- nautobot/project-static/docs/development/core/homepage.html +0 -2
- nautobot/project-static/docs/development/core/index.html +0 -2
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +0 -2
- nautobot/project-static/docs/development/core/model-checklist.html +0 -2
- nautobot/project-static/docs/development/core/model-features.html +0 -2
- nautobot/project-static/docs/development/core/natural-keys.html +0 -2
- nautobot/project-static/docs/development/core/navigation-menu.html +0 -2
- nautobot/project-static/docs/development/core/release-checklist.html +0 -2
- nautobot/project-static/docs/development/core/role-internals.html +0 -2
- nautobot/project-static/docs/development/core/settings.html +0 -2
- nautobot/project-static/docs/development/core/style-guide.html +0 -2
- nautobot/project-static/docs/development/core/templates.html +0 -2
- nautobot/project-static/docs/development/core/testing.html +0 -2
- nautobot/project-static/docs/development/core/ui-component-framework.html +0 -2
- nautobot/project-static/docs/development/core/user-preferences.html +0 -2
- nautobot/project-static/docs/development/index.html +0 -2
- nautobot/project-static/docs/development/jobs/index.html +0 -2
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +0 -2
- nautobot/project-static/docs/index.html +0 -2
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +0 -2
- nautobot/project-static/docs/overview/design_philosophy.html +0 -2
- nautobot/project-static/docs/release-notes/index.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.0.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.1.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.3.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.4.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.5.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.0.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.1.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.2.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.3.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.4.html +138 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +290 -290
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/index.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/services.html +0 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +0 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +0 -2
- nautobot/project-static/docs/user-guide/administration/security/index.html +0 -2
- nautobot/project-static/docs/user-guide/administration/security/notices.html +0 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +0 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +0 -2
- nautobot/project-static/docs/user-guide/index.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +0 -2
- nautobot/project-static/js/forms.js +88 -37
- nautobot/project-static/js/homepage_layout.js +12 -3
- {nautobot-2.4.6.dist-info → nautobot-2.4.7.dist-info}/METADATA +1 -1
- {nautobot-2.4.6.dist-info → nautobot-2.4.7.dist-info}/RECORD +346 -346
- nautobot/dcim/templates/dcim/modulebay_create.html +0 -39
- {nautobot-2.4.6.dist-info → nautobot-2.4.7.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.6.dist-info → nautobot-2.4.7.dist-info}/NOTICE +0 -0
- {nautobot-2.4.6.dist-info → nautobot-2.4.7.dist-info}/WHEEL +0 -0
- {nautobot-2.4.6.dist-info → nautobot-2.4.7.dist-info}/entry_points.txt +0 -0
|
@@ -9283,8 +9283,6 @@
|
|
|
9283
9283
|
|
|
9284
9284
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9285
9285
|
|
|
9286
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9287
|
-
|
|
9288
9286
|
|
|
9289
9287
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9290
9288
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9277,8 +9277,6 @@
|
|
|
9277
9277
|
|
|
9278
9278
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9279
9279
|
|
|
9280
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9281
|
-
|
|
9282
9280
|
|
|
9283
9281
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9284
9282
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9343,8 +9343,6 @@
|
|
|
9343
9343
|
|
|
9344
9344
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9345
9345
|
|
|
9346
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9347
|
-
|
|
9348
9346
|
|
|
9349
9347
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9350
9348
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9412,8 +9412,6 @@ Click on the <strong>Add Contact</strong> button and it will redirect you to a p
|
|
|
9412
9412
|
|
|
9413
9413
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9414
9414
|
|
|
9415
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9416
|
-
|
|
9417
9415
|
|
|
9418
9416
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9419
9417
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10214,8 +10214,6 @@
|
|
|
10214
10214
|
|
|
10215
10215
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10216
10216
|
|
|
10217
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10218
|
-
|
|
10219
10217
|
|
|
10220
10218
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10221
10219
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html
CHANGED
|
@@ -9521,8 +9521,6 @@ Device types define the physical attributes of a device (rack height and depth)
|
|
|
9521
9521
|
|
|
9522
9522
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9523
9523
|
|
|
9524
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9525
|
-
|
|
9526
9524
|
|
|
9527
9525
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9528
9526
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9448,8 +9448,6 @@ Additional information on Locations is in the <a href="../../core-data-model/dci
|
|
|
9448
9448
|
|
|
9449
9449
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9450
9450
|
|
|
9451
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9452
|
-
|
|
9453
9451
|
|
|
9454
9452
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9455
9453
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9304,8 +9304,6 @@ This guide will demonstrate how to use and perform common operations in Nautobot
|
|
|
9304
9304
|
|
|
9305
9305
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9306
9306
|
|
|
9307
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9308
|
-
|
|
9309
9307
|
|
|
9310
9308
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9311
9309
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9482,8 +9482,6 @@ edit this new Device, specifying the component <code>ae0</code> Interfaces.</p>
|
|
|
9482
9482
|
|
|
9483
9483
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9484
9484
|
|
|
9485
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9486
|
-
|
|
9487
9485
|
|
|
9488
9486
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9489
9487
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9512,8 +9512,6 @@ Each Prefix can be assigned to a particular Location, an RIR and virtual routing
|
|
|
9512
9512
|
|
|
9513
9513
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9514
9514
|
|
|
9515
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9516
|
-
|
|
9517
9515
|
|
|
9518
9516
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9519
9517
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9478,8 +9478,6 @@ in the Search Bar.</p>
|
|
|
9478
9478
|
|
|
9479
9479
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9480
9480
|
|
|
9481
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9482
|
-
|
|
9483
9481
|
|
|
9484
9482
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9485
9483
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9376,8 +9376,6 @@ This example shows the result of clicking on the <strong>IP Address</strong> obj
|
|
|
9376
9376
|
|
|
9377
9377
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9378
9378
|
|
|
9379
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9380
|
-
|
|
9381
9379
|
|
|
9382
9380
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9383
9381
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9378,8 +9378,6 @@
|
|
|
9378
9378
|
|
|
9379
9379
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9380
9380
|
|
|
9381
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9382
|
-
|
|
9383
9381
|
|
|
9384
9382
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9385
9383
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html
CHANGED
|
@@ -9454,8 +9454,6 @@ you'll see the three VLANs and the Location assignment for each one. Each <code>
|
|
|
9454
9454
|
|
|
9455
9455
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9456
9456
|
|
|
9457
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9458
|
-
|
|
9459
9457
|
|
|
9460
9458
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9461
9459
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9980,8 +9980,6 @@ Navigate to <strong>Git Repositories</strong> and select the repository in quest
|
|
|
9980
9980
|
|
|
9981
9981
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9982
9982
|
|
|
9983
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9984
|
-
|
|
9985
9983
|
|
|
9986
9984
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9987
9985
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9773,8 +9773,6 @@ query {
|
|
|
9773
9773
|
|
|
9774
9774
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9775
9775
|
|
|
9776
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9777
|
-
|
|
9778
9776
|
|
|
9779
9777
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9780
9778
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9506,8 +9506,6 @@ If more duplicate addresses are present, with a different <code>host</code> valu
|
|
|
9506
9506
|
|
|
9507
9507
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9508
9508
|
|
|
9509
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9510
|
-
|
|
9511
9509
|
|
|
9512
9510
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9513
9511
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9547,8 +9547,6 @@
|
|
|
9547
9547
|
|
|
9548
9548
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9549
9549
|
|
|
9550
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9551
|
-
|
|
9552
9550
|
|
|
9553
9551
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9554
9552
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html
CHANGED
|
@@ -9430,8 +9430,6 @@
|
|
|
9430
9430
|
|
|
9431
9431
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9432
9432
|
|
|
9433
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9434
|
-
|
|
9435
9433
|
|
|
9436
9434
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9437
9435
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html
CHANGED
|
@@ -9510,8 +9510,6 @@
|
|
|
9510
9510
|
|
|
9511
9511
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9512
9512
|
|
|
9513
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9514
|
-
|
|
9515
9513
|
|
|
9516
9514
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9517
9515
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9343,8 +9343,6 @@
|
|
|
9343
9343
|
|
|
9344
9344
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9345
9345
|
|
|
9346
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9347
|
-
|
|
9348
9346
|
|
|
9349
9347
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9350
9348
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9361,8 +9361,6 @@
|
|
|
9361
9361
|
|
|
9362
9362
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9363
9363
|
|
|
9364
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9365
|
-
|
|
9366
9364
|
|
|
9367
9365
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9368
9366
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9440,8 +9440,6 @@
|
|
|
9440
9440
|
|
|
9441
9441
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9442
9442
|
|
|
9443
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9444
|
-
|
|
9445
9443
|
|
|
9446
9444
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9447
9445
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9579,8 +9579,6 @@
|
|
|
9579
9579
|
|
|
9580
9580
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9581
9581
|
|
|
9582
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9583
|
-
|
|
9584
9582
|
|
|
9585
9583
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9586
9584
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9420,8 +9420,6 @@
|
|
|
9420
9420
|
|
|
9421
9421
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9422
9422
|
|
|
9423
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9424
|
-
|
|
9425
9423
|
|
|
9426
9424
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9427
9425
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10105,8 +10105,6 @@
|
|
|
10105
10105
|
|
|
10106
10106
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10107
10107
|
|
|
10108
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10109
|
-
|
|
10110
10108
|
|
|
10111
10109
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10112
10110
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9683,8 +9683,6 @@
|
|
|
9683
9683
|
|
|
9684
9684
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9685
9685
|
|
|
9686
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9687
|
-
|
|
9688
9686
|
|
|
9689
9687
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9690
9688
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9365,8 +9365,6 @@
|
|
|
9365
9365
|
|
|
9366
9366
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9367
9367
|
|
|
9368
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9369
|
-
|
|
9370
9368
|
|
|
9371
9369
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9372
9370
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9342,8 +9342,6 @@
|
|
|
9342
9342
|
|
|
9343
9343
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9344
9344
|
|
|
9345
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9346
|
-
|
|
9347
9345
|
|
|
9348
9346
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9349
9347
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10210,8 +10210,6 @@ in order for the repository to sync.</p>
|
|
|
10210
10210
|
|
|
10211
10211
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10212
10212
|
|
|
10213
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10214
|
-
|
|
10215
10213
|
|
|
10216
10214
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10217
10215
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9534,8 +9534,6 @@
|
|
|
9534
9534
|
|
|
9535
9535
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9536
9536
|
|
|
9537
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9538
|
-
|
|
9539
9537
|
|
|
9540
9538
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9541
9539
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9379,8 +9379,6 @@
|
|
|
9379
9379
|
|
|
9380
9380
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9381
9381
|
|
|
9382
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9383
|
-
|
|
9384
9382
|
|
|
9385
9383
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9386
9384
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9275,8 +9275,6 @@
|
|
|
9275
9275
|
|
|
9276
9276
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9277
9277
|
|
|
9278
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9279
|
-
|
|
9280
9278
|
|
|
9281
9279
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9282
9280
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9539,8 +9539,6 @@
|
|
|
9539
9539
|
|
|
9540
9540
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9541
9541
|
|
|
9542
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9543
|
-
|
|
9544
9542
|
|
|
9545
9543
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9546
9544
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9488,8 +9488,6 @@
|
|
|
9488
9488
|
|
|
9489
9489
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9490
9490
|
|
|
9491
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9492
|
-
|
|
9493
9491
|
|
|
9494
9492
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9495
9493
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9462,8 +9462,6 @@
|
|
|
9462
9462
|
|
|
9463
9463
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9464
9464
|
|
|
9465
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9466
|
-
|
|
9467
9465
|
|
|
9468
9466
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9469
9467
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9336,8 +9336,6 @@
|
|
|
9336
9336
|
|
|
9337
9337
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9338
9338
|
|
|
9339
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9340
|
-
|
|
9341
9339
|
|
|
9342
9340
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9343
9341
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9290,8 +9290,6 @@
|
|
|
9290
9290
|
|
|
9291
9291
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9292
9292
|
|
|
9293
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9294
|
-
|
|
9295
9293
|
|
|
9296
9294
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9297
9295
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html
CHANGED
|
@@ -9788,8 +9788,6 @@ erDiagram
|
|
|
9788
9788
|
|
|
9789
9789
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9790
9790
|
|
|
9791
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9792
|
-
|
|
9793
9791
|
|
|
9794
9792
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9795
9793
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9412,8 +9412,6 @@
|
|
|
9412
9412
|
|
|
9413
9413
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9414
9414
|
|
|
9415
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9416
|
-
|
|
9417
9415
|
|
|
9418
9416
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9419
9417
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9506,8 +9506,6 @@
|
|
|
9506
9506
|
|
|
9507
9507
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9508
9508
|
|
|
9509
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9510
|
-
|
|
9511
9509
|
|
|
9512
9510
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9513
9511
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9270,8 +9270,6 @@
|
|
|
9270
9270
|
|
|
9271
9271
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9272
9272
|
|
|
9273
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9274
|
-
|
|
9275
9273
|
|
|
9276
9274
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9277
9275
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9504,8 +9504,6 @@
|
|
|
9504
9504
|
|
|
9505
9505
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9506
9506
|
|
|
9507
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9508
|
-
|
|
9509
9507
|
|
|
9510
9508
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9511
9509
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9650,8 +9650,6 @@ From the Devices/Circuits example above, you might label the relationship so tha
|
|
|
9650
9650
|
|
|
9651
9651
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9652
9652
|
|
|
9653
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9654
|
-
|
|
9655
9653
|
|
|
9656
9654
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9657
9655
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html
CHANGED
|
@@ -9358,8 +9358,6 @@
|
|
|
9358
9358
|
|
|
9359
9359
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9360
9360
|
|
|
9361
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9362
|
-
|
|
9363
9361
|
|
|
9364
9362
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9365
9363
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9387,8 +9387,6 @@
|
|
|
9387
9387
|
|
|
9388
9388
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9389
9389
|
|
|
9390
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9391
|
-
|
|
9392
9390
|
|
|
9393
9391
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9394
9392
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9656,8 +9656,6 @@
|
|
|
9656
9656
|
|
|
9657
9657
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9658
9658
|
|
|
9659
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9660
|
-
|
|
9661
9659
|
|
|
9662
9660
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9663
9661
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10577,8 +10577,6 @@ This parameter is an positive integer value that can range from 0 to 10. In most
|
|
|
10577
10577
|
|
|
10578
10578
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10579
10579
|
|
|
10580
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10581
|
-
|
|
10582
10580
|
|
|
10583
10581
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10584
10582
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html
CHANGED
|
@@ -9279,8 +9279,6 @@ Note that these API endpoints are hidden from OpenAPI schema as well.</p>
|
|
|
9279
9279
|
|
|
9280
9280
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9281
9281
|
|
|
9282
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9283
|
-
|
|
9284
9282
|
|
|
9285
9283
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9286
9284
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9330,8 +9330,6 @@
|
|
|
9330
9330
|
|
|
9331
9331
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9332
9332
|
|
|
9333
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9334
|
-
|
|
9335
9333
|
|
|
9336
9334
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9337
9335
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9580,8 +9580,6 @@ The <code>is_shared</code> attribute dictates whether a Saved View will be made
|
|
|
9580
9580
|
|
|
9581
9581
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9582
9582
|
|
|
9583
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9584
|
-
|
|
9585
9583
|
|
|
9586
9584
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9587
9585
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9564,8 +9564,6 @@
|
|
|
9564
9564
|
|
|
9565
9565
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9566
9566
|
|
|
9567
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9568
|
-
|
|
9569
9567
|
|
|
9570
9568
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9571
9569
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9376,8 +9376,6 @@
|
|
|
9376
9376
|
|
|
9377
9377
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9378
9378
|
|
|
9379
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9380
|
-
|
|
9381
9379
|
|
|
9382
9380
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9383
9381
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9639,8 +9639,6 @@ own risk!</p>
|
|
|
9639
9639
|
|
|
9640
9640
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9641
9641
|
|
|
9642
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9643
|
-
|
|
9644
9642
|
|
|
9645
9643
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9646
9644
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9402,8 +9402,6 @@
|
|
|
9402
9402
|
|
|
9403
9403
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9404
9404
|
|
|
9405
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9406
|
-
|
|
9407
9405
|
|
|
9408
9406
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9409
9407
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10443,8 +10443,6 @@ additionally if there is an <code>object.description</code> this will be used as
|
|
|
10443
10443
|
|
|
10444
10444
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10445
10445
|
|
|
10446
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10447
|
-
|
|
10448
10446
|
|
|
10449
10447
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10450
10448
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9391,8 +9391,6 @@
|
|
|
9391
9391
|
|
|
9392
9392
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9393
9393
|
|
|
9394
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9395
|
-
|
|
9396
9394
|
|
|
9397
9395
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9398
9396
|
document$.subscribe(() => { lightbox.reload() });
|