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
|
@@ -9295,8 +9295,6 @@
|
|
|
9295
9295
|
|
|
9296
9296
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9297
9297
|
|
|
9298
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9299
|
-
|
|
9300
9298
|
|
|
9301
9299
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9302
9300
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -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() });
|
|
@@ -9262,8 +9262,6 @@
|
|
|
9262
9262
|
|
|
9263
9263
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9264
9264
|
|
|
9265
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9266
|
-
|
|
9267
9265
|
|
|
9268
9266
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9269
9267
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9355,8 +9355,6 @@
|
|
|
9355
9355
|
|
|
9356
9356
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9357
9357
|
|
|
9358
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9359
|
-
|
|
9360
9358
|
|
|
9361
9359
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9362
9360
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9630,8 +9630,6 @@ The framework provides many pre-built panel types.</p>
|
|
|
9630
9630
|
|
|
9631
9631
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9632
9632
|
|
|
9633
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9634
|
-
|
|
9635
9633
|
|
|
9636
9634
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9637
9635
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9302,8 +9302,6 @@
|
|
|
9302
9302
|
|
|
9303
9303
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9304
9304
|
|
|
9305
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9306
|
-
|
|
9307
9305
|
|
|
9308
9306
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9309
9307
|
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() });
|
|
@@ -9328,8 +9328,6 @@
|
|
|
9328
9328
|
|
|
9329
9329
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9330
9330
|
|
|
9331
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9332
|
-
|
|
9333
9331
|
|
|
9334
9332
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9335
9333
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9292,8 +9292,6 @@
|
|
|
9292
9292
|
|
|
9293
9293
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9294
9294
|
|
|
9295
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9296
|
-
|
|
9297
9295
|
|
|
9298
9296
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9299
9297
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9392,8 +9392,6 @@ Keep in mind that each piece of functionality is entirely optional. For example,
|
|
|
9392
9392
|
|
|
9393
9393
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9394
9394
|
|
|
9395
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9396
|
-
|
|
9397
9395
|
|
|
9398
9396
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9399
9397
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -11952,8 +11952,6 @@
|
|
|
11952
11952
|
|
|
11953
11953
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11954
11954
|
|
|
11955
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11956
|
-
|
|
11957
11955
|
|
|
11958
11956
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
11959
11957
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9368,8 +9368,6 @@
|
|
|
9368
9368
|
|
|
9369
9369
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9370
9370
|
|
|
9371
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9372
|
-
|
|
9373
9371
|
|
|
9374
9372
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9375
9373
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9405,8 +9405,6 @@
|
|
|
9405
9405
|
|
|
9406
9406
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9407
9407
|
|
|
9408
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9409
|
-
|
|
9410
9408
|
|
|
9411
9409
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9412
9410
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9645,8 +9645,6 @@
|
|
|
9645
9645
|
|
|
9646
9646
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9647
9647
|
|
|
9648
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9649
|
-
|
|
9650
9648
|
|
|
9651
9649
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9652
9650
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9454,8 +9454,6 @@
|
|
|
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() });
|
|
@@ -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() });
|
|
@@ -9411,8 +9411,6 @@ Additionally, VRF is no longer assigned directly to an IPAddress but is now deri
|
|
|
9411
9411
|
|
|
9412
9412
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9413
9413
|
|
|
9414
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9415
|
-
|
|
9416
9414
|
|
|
9417
9415
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9418
9416
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html
CHANGED
|
@@ -9327,8 +9327,6 @@ calculated by <code>count_related(Device, "device_type")</code> filtered by give
|
|
|
9327
9327
|
|
|
9328
9328
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9329
9329
|
|
|
9330
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9331
|
-
|
|
9332
9330
|
|
|
9333
9331
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9334
9332
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html
CHANGED
|
@@ -9441,8 +9441,6 @@ For more details please refer to the <a href="../../../../code-reference/nautobo
|
|
|
9441
9441
|
|
|
9442
9442
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9443
9443
|
|
|
9444
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9445
|
-
|
|
9446
9444
|
|
|
9447
9445
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9448
9446
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9737,8 +9737,6 @@
|
|
|
9737
9737
|
|
|
9738
9738
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9739
9739
|
|
|
9740
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9741
|
-
|
|
9742
9740
|
|
|
9743
9741
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9744
9742
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html
CHANGED
|
@@ -9625,8 +9625,6 @@ decides what sections will be at the top.</p>
|
|
|
9625
9625
|
|
|
9626
9626
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9627
9627
|
|
|
9628
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9629
|
-
|
|
9630
9628
|
|
|
9631
9629
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9632
9630
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9363,8 +9363,6 @@
|
|
|
9363
9363
|
|
|
9364
9364
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9365
9365
|
|
|
9366
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9367
|
-
|
|
9368
9366
|
|
|
9369
9367
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9370
9368
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9679,8 +9679,6 @@
|
|
|
9679
9679
|
|
|
9680
9680
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9681
9681
|
|
|
9682
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9683
|
-
|
|
9684
9682
|
|
|
9685
9683
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9686
9684
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10180,8 +10180,6 @@ For most purposes, this is not the case you are intending to check!</p>
|
|
|
10180
10180
|
|
|
10181
10181
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10182
10182
|
|
|
10183
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10184
|
-
|
|
10185
10183
|
|
|
10186
10184
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10187
10185
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9370,8 +9370,6 @@
|
|
|
9370
9370
|
|
|
9371
9371
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9372
9372
|
|
|
9373
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9374
|
-
|
|
9375
9373
|
|
|
9376
9374
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9377
9375
|
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() });
|
|
@@ -9415,8 +9415,6 @@ erDiagram
|
|
|
9415
9415
|
|
|
9416
9416
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9417
9417
|
|
|
9418
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9419
|
-
|
|
9420
9418
|
|
|
9421
9419
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9422
9420
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9868,8 +9868,6 @@ then copy the <code>launch:</code> values to the <code>.vscode/launch.json</code
|
|
|
9868
9868
|
|
|
9869
9869
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9870
9870
|
|
|
9871
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9872
|
-
|
|
9873
9871
|
|
|
9874
9872
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9875
9873
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9291,8 +9291,6 @@
|
|
|
9291
9291
|
|
|
9292
9292
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9293
9293
|
|
|
9294
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9295
|
-
|
|
9296
9294
|
|
|
9297
9295
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9298
9296
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -11041,8 +11041,6 @@
|
|
|
11041
11041
|
|
|
11042
11042
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11043
11043
|
|
|
11044
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11045
|
-
|
|
11046
11044
|
|
|
11047
11045
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
11048
11046
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9371,8 +9371,6 @@
|
|
|
9371
9371
|
|
|
9372
9372
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9373
9373
|
|
|
9374
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9375
|
-
|
|
9376
9374
|
|
|
9377
9375
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9378
9376
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9873,8 +9873,6 @@ labels will be applied for categorization.</p>
|
|
|
9873
9873
|
|
|
9874
9874
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9875
9875
|
|
|
9876
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9877
|
-
|
|
9878
9876
|
|
|
9879
9877
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9880
9878
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9820,8 +9820,6 @@ Check the override default value checkbox on the <code>Default Job Queue</code>
|
|
|
9820
9820
|
|
|
9821
9821
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9822
9822
|
|
|
9823
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9824
|
-
|
|
9825
9823
|
|
|
9826
9824
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9827
9825
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9801,8 +9801,6 @@ article ul li {
|
|
|
9801
9801
|
|
|
9802
9802
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9803
9803
|
|
|
9804
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9805
|
-
|
|
9806
9804
|
|
|
9807
9805
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9808
9806
|
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() });
|
|
@@ -9548,8 +9548,6 @@
|
|
|
9548
9548
|
|
|
9549
9549
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9550
9550
|
|
|
9551
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9552
|
-
|
|
9553
9551
|
|
|
9554
9552
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9555
9553
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9496,8 +9496,6 @@
|
|
|
9496
9496
|
|
|
9497
9497
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9498
9498
|
|
|
9499
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9500
|
-
|
|
9501
9499
|
|
|
9502
9500
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9503
9501
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9894,8 +9894,6 @@ To create the tag locally:</p>
|
|
|
9894
9894
|
|
|
9895
9895
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9896
9896
|
|
|
9897
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9898
|
-
|
|
9899
9897
|
|
|
9900
9898
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9901
9899
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9395,8 +9395,6 @@ own risk!</p>
|
|
|
9395
9395
|
|
|
9396
9396
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9397
9397
|
|
|
9398
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9399
|
-
|
|
9400
9398
|
|
|
9401
9399
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9402
9400
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9502,8 +9502,6 @@
|
|
|
9502
9502
|
|
|
9503
9503
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9504
9504
|
|
|
9505
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9506
|
-
|
|
9507
9505
|
|
|
9508
9506
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9509
9507
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9740,8 +9740,6 @@
|
|
|
9740
9740
|
|
|
9741
9741
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9742
9742
|
|
|
9743
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9744
|
-
|
|
9745
9743
|
|
|
9746
9744
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9747
9745
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9563,8 +9563,6 @@ It does not provide any blocks for customizing the user experience.</p>
|
|
|
9563
9563
|
|
|
9564
9564
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9565
9565
|
|
|
9566
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9567
|
-
|
|
9568
9566
|
|
|
9569
9567
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9570
9568
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9680,8 +9680,6 @@
|
|
|
9680
9680
|
|
|
9681
9681
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9682
9682
|
|
|
9683
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9684
|
-
|
|
9685
9683
|
|
|
9686
9684
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9687
9685
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -11182,8 +11182,6 @@ It integrates with <code>django_tables2</code> and provides extensive customizat
|
|
|
11182
11182
|
|
|
11183
11183
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11184
11184
|
|
|
11185
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11186
|
-
|
|
11187
11185
|
|
|
11188
11186
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
11189
11187
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9348,8 +9348,6 @@
|
|
|
9348
9348
|
|
|
9349
9349
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9350
9350
|
|
|
9351
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9352
|
-
|
|
9353
9351
|
|
|
9354
9352
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9355
9353
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9256,8 +9256,6 @@
|
|
|
9256
9256
|
|
|
9257
9257
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9258
9258
|
|
|
9259
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9260
|
-
|
|
9261
9259
|
|
|
9262
9260
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9263
9261
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10939,8 +10939,6 @@ Another example of using the nested reference would be to access <a href="../../
|
|
|
10939
10939
|
|
|
10940
10940
|
<script src="../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10941
10941
|
|
|
10942
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10943
|
-
|
|
10944
10942
|
|
|
10945
10943
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10946
10944
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9822,8 +9822,6 @@
|
|
|
9822
9822
|
|
|
9823
9823
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9824
9824
|
|
|
9825
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9826
|
-
|
|
9827
9825
|
|
|
9828
9826
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9829
9827
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9467,8 +9467,6 @@ Learn how <a href="apps/index.html">Nautobot Apps</a> can expand Nautobot's func
|
|
|
9467
9467
|
|
|
9468
9468
|
<script src="assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9469
9469
|
|
|
9470
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9471
|
-
|
|
9472
9470
|
|
|
9473
9471
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9474
9472
|
document$.subscribe(() => { lightbox.reload() });
|
|
Binary file
|
|
@@ -9467,8 +9467,6 @@
|
|
|
9467
9467
|
|
|
9468
9468
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9469
9469
|
|
|
9470
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9471
|
-
|
|
9472
9470
|
|
|
9473
9471
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9474
9472
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9405,8 +9405,6 @@
|
|
|
9405
9405
|
|
|
9406
9406
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9407
9407
|
|
|
9408
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9409
|
-
|
|
9410
9408
|
|
|
9411
9409
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9412
9410
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9509,8 +9509,6 @@
|
|
|
9509
9509
|
|
|
9510
9510
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9511
9511
|
|
|
9512
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9513
|
-
|
|
9514
9512
|
|
|
9515
9513
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9516
9514
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -11328,8 +11328,6 @@
|
|
|
11328
11328
|
|
|
11329
11329
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11330
11330
|
|
|
11331
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11332
|
-
|
|
11333
11331
|
|
|
11334
11332
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
11335
11333
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10818,8 +10818,6 @@
|
|
|
10818
10818
|
|
|
10819
10819
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10820
10820
|
|
|
10821
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10822
|
-
|
|
10823
10821
|
|
|
10824
10822
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10825
10823
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -11525,8 +11525,6 @@
|
|
|
11525
11525
|
|
|
11526
11526
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11527
11527
|
|
|
11528
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11529
|
-
|
|
11530
11528
|
|
|
11531
11529
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
11532
11530
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -11692,8 +11692,6 @@
|
|
|
11692
11692
|
|
|
11693
11693
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
11694
11694
|
|
|
11695
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
11696
|
-
|
|
11697
11695
|
|
|
11698
11696
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
11699
11697
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -12167,8 +12167,6 @@
|
|
|
12167
12167
|
|
|
12168
12168
|
<script src="../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
12169
12169
|
|
|
12170
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
12171
|
-
|
|
12172
12170
|
|
|
12173
12171
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
12174
12172
|
document$.subscribe(() => { lightbox.reload() });
|