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
|
@@ -9306,8 +9306,6 @@
|
|
|
9306
9306
|
|
|
9307
9307
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9308
9308
|
|
|
9309
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9310
|
-
|
|
9311
9309
|
|
|
9312
9310
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9313
9311
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9278,8 +9278,6 @@
|
|
|
9278
9278
|
|
|
9279
9279
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9280
9280
|
|
|
9281
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9282
|
-
|
|
9283
9281
|
|
|
9284
9282
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9285
9283
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9273,8 +9273,6 @@
|
|
|
9273
9273
|
|
|
9274
9274
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9275
9275
|
|
|
9276
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9277
|
-
|
|
9278
9276
|
|
|
9279
9277
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9280
9278
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9274,8 +9274,6 @@
|
|
|
9274
9274
|
|
|
9275
9275
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9276
9276
|
|
|
9277
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9278
|
-
|
|
9279
9277
|
|
|
9280
9278
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9281
9279
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9716,8 +9716,6 @@ Spine redundancy is important while performing the Day-2 operations, such as OS-
|
|
|
9716
9716
|
|
|
9717
9717
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9718
9718
|
|
|
9719
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9720
|
-
|
|
9721
9719
|
|
|
9722
9720
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9723
9721
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9329,8 +9329,6 @@
|
|
|
9329
9329
|
|
|
9330
9330
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9331
9331
|
|
|
9332
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9333
|
-
|
|
9334
9332
|
|
|
9335
9333
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9336
9334
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9310,8 +9310,6 @@
|
|
|
9310
9310
|
|
|
9311
9311
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9312
9312
|
|
|
9313
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9314
|
-
|
|
9315
9313
|
|
|
9316
9314
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9317
9315
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9357,8 +9357,6 @@
|
|
|
9357
9357
|
|
|
9358
9358
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9359
9359
|
|
|
9360
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9361
|
-
|
|
9362
9360
|
|
|
9363
9361
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9364
9362
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9293,8 +9293,6 @@
|
|
|
9293
9293
|
|
|
9294
9294
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9295
9295
|
|
|
9296
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9297
|
-
|
|
9298
9296
|
|
|
9299
9297
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9300
9298
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9281,8 +9281,6 @@
|
|
|
9281
9281
|
|
|
9282
9282
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9283
9283
|
|
|
9284
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9285
|
-
|
|
9286
9284
|
|
|
9287
9285
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9288
9286
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9319,8 +9319,6 @@
|
|
|
9319
9319
|
|
|
9320
9320
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9321
9321
|
|
|
9322
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9323
|
-
|
|
9324
9322
|
|
|
9325
9323
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9326
9324
|
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() });
|
|
@@ -9271,8 +9271,6 @@
|
|
|
9271
9271
|
|
|
9272
9272
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9273
9273
|
|
|
9274
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9275
|
-
|
|
9276
9274
|
|
|
9277
9275
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9278
9276
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9289,8 +9289,6 @@
|
|
|
9289
9289
|
|
|
9290
9290
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9291
9291
|
|
|
9292
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9293
|
-
|
|
9294
9292
|
|
|
9295
9293
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9296
9294
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9286,8 +9286,6 @@
|
|
|
9286
9286
|
|
|
9287
9287
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9288
9288
|
|
|
9289
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9290
|
-
|
|
9291
9289
|
|
|
9292
9290
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9293
9291
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9266,8 +9266,6 @@
|
|
|
9266
9266
|
|
|
9267
9267
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9268
9268
|
|
|
9269
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9270
|
-
|
|
9271
9269
|
|
|
9272
9270
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9273
9271
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9280,8 +9280,6 @@
|
|
|
9280
9280
|
|
|
9281
9281
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9282
9282
|
|
|
9283
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9284
|
-
|
|
9285
9283
|
|
|
9286
9284
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9287
9285
|
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() });
|
|
@@ -9386,8 +9386,6 @@
|
|
|
9386
9386
|
|
|
9387
9387
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9388
9388
|
|
|
9389
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9390
|
-
|
|
9391
9389
|
|
|
9392
9390
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9393
9391
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9334,8 +9334,6 @@
|
|
|
9334
9334
|
|
|
9335
9335
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9336
9336
|
|
|
9337
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9338
|
-
|
|
9339
9337
|
|
|
9340
9338
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9341
9339
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9389,8 +9389,6 @@
|
|
|
9389
9389
|
|
|
9390
9390
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9391
9391
|
|
|
9392
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9393
|
-
|
|
9394
9392
|
|
|
9395
9393
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9396
9394
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
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() });
|
|
@@ -9273,8 +9273,6 @@
|
|
|
9273
9273
|
|
|
9274
9274
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9275
9275
|
|
|
9276
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9277
|
-
|
|
9278
9276
|
|
|
9279
9277
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9280
9278
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9271,8 +9271,6 @@
|
|
|
9271
9271
|
|
|
9272
9272
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9273
9273
|
|
|
9274
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9275
|
-
|
|
9276
9274
|
|
|
9277
9275
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9278
9276
|
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() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9280,8 +9280,6 @@
|
|
|
9280
9280
|
|
|
9281
9281
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9282
9282
|
|
|
9283
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9284
|
-
|
|
9285
9283
|
|
|
9286
9284
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9287
9285
|
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() });
|
|
@@ -9276,8 +9276,6 @@
|
|
|
9276
9276
|
|
|
9277
9277
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9278
9278
|
|
|
9279
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9280
|
-
|
|
9281
9279
|
|
|
9282
9280
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9283
9281
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9441,8 +9441,6 @@
|
|
|
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() });
|
|
@@ -9447,8 +9447,6 @@
|
|
|
9447
9447
|
|
|
9448
9448
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9449
9449
|
|
|
9450
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9451
|
-
|
|
9452
9450
|
|
|
9453
9451
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9454
9452
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9323,8 +9323,6 @@
|
|
|
9323
9323
|
|
|
9324
9324
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9325
9325
|
|
|
9326
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9327
|
-
|
|
9328
9326
|
|
|
9329
9327
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9330
9328
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9425,8 +9425,6 @@
|
|
|
9425
9425
|
|
|
9426
9426
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9427
9427
|
|
|
9428
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9429
|
-
|
|
9430
9428
|
|
|
9431
9429
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9432
9430
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9339,8 +9339,6 @@
|
|
|
9339
9339
|
|
|
9340
9340
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9341
9341
|
|
|
9342
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9343
|
-
|
|
9344
9342
|
|
|
9345
9343
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9346
9344
|
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() });
|
|
@@ -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() });
|
|
@@ -9272,8 +9272,6 @@
|
|
|
9272
9272
|
|
|
9273
9273
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9274
9274
|
|
|
9275
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9276
|
-
|
|
9277
9275
|
|
|
9278
9276
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9279
9277
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9278,8 +9278,6 @@
|
|
|
9278
9278
|
|
|
9279
9279
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9280
9280
|
|
|
9281
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9282
|
-
|
|
9283
9281
|
|
|
9284
9282
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9285
9283
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9401,8 +9401,6 @@
|
|
|
9401
9401
|
|
|
9402
9402
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9403
9403
|
|
|
9404
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9405
|
-
|
|
9406
9404
|
|
|
9407
9405
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9408
9406
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9577,8 +9577,6 @@ Range value accepts commas and dashes, with examples as follows:</p>
|
|
|
9577
9577
|
|
|
9578
9578
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9579
9579
|
|
|
9580
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9581
|
-
|
|
9582
9580
|
|
|
9583
9581
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9584
9582
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9282,8 +9282,6 @@
|
|
|
9282
9282
|
|
|
9283
9283
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9284
9284
|
|
|
9285
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9286
|
-
|
|
9287
9285
|
|
|
9288
9286
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9289
9287
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9357,8 +9357,6 @@
|
|
|
9357
9357
|
|
|
9358
9358
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9359
9359
|
|
|
9360
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9361
|
-
|
|
9362
9360
|
|
|
9363
9361
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9364
9362
|
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() });
|
|
@@ -9272,8 +9272,6 @@
|
|
|
9272
9272
|
|
|
9273
9273
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9274
9274
|
|
|
9275
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9276
|
-
|
|
9277
9275
|
|
|
9278
9276
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9279
9277
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9272,8 +9272,6 @@
|
|
|
9272
9272
|
|
|
9273
9273
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9274
9274
|
|
|
9275
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9276
|
-
|
|
9277
9275
|
|
|
9278
9276
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9279
9277
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9271,8 +9271,6 @@
|
|
|
9271
9271
|
|
|
9272
9272
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9273
9273
|
|
|
9274
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9275
|
-
|
|
9276
9274
|
|
|
9277
9275
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9278
9276
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9271,8 +9271,6 @@
|
|
|
9271
9271
|
|
|
9272
9272
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9273
9273
|
|
|
9274
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9275
|
-
|
|
9276
9274
|
|
|
9277
9275
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9278
9276
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9289,8 +9289,6 @@
|
|
|
9289
9289
|
|
|
9290
9290
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9291
9291
|
|
|
9292
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9293
|
-
|
|
9294
9292
|
|
|
9295
9293
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9296
9294
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9287,8 +9287,6 @@
|
|
|
9287
9287
|
|
|
9288
9288
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9289
9289
|
|
|
9290
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9291
|
-
|
|
9292
9290
|
|
|
9293
9291
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9294
9292
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9379,8 +9379,6 @@ erDiagram
|
|
|
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() });
|