nautobot 2.2.0__py3-none-any.whl → 2.2.1__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/__init__.py +31 -0
- nautobot/circuits/apps.py +1 -1
- nautobot/core/api/routers.py +25 -0
- nautobot/core/cli/__init__.py +18 -11
- nautobot/core/constants.py +85 -0
- nautobot/core/forms/widgets.py +1 -2
- nautobot/core/graphql/schema.py +1 -0
- nautobot/core/models/__init__.py +1 -0
- nautobot/core/settings.py +23 -3
- nautobot/core/settings.yaml +20 -0
- nautobot/core/signals.py +1 -0
- nautobot/core/templates/generic/object_retrieve.html +2 -2
- nautobot/core/templates/inc/javascript.html +4 -4
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/nautobot_config.py.j2 +14 -1
- nautobot/core/testing/__init__.py +1 -1
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/test_views.py +22 -0
- nautobot/core/utils/data.py +1 -2
- nautobot/core/utils/lookup.py +2 -0
- nautobot/core/views/generic.py +1 -3
- nautobot/core/views/mixins.py +0 -1
- nautobot/core/views/renderers.py +7 -5
- nautobot/dcim/apps.py +8 -4
- nautobot/dcim/elevations.py +5 -1
- nautobot/dcim/tables/devices.py +1 -1
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +12 -4
- nautobot/dcim/templates/dcim/device.html +1 -1
- nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
- nautobot/dcim/tests/test_api.py +36 -0
- nautobot/dcim/tests/test_signals.py +1 -1
- nautobot/dcim/views.py +6 -0
- nautobot/extras/api/serializers.py +20 -1
- nautobot/extras/apps.py +7 -0
- nautobot/extras/context_managers.py +15 -4
- nautobot/extras/filters/customfields.py +14 -9
- nautobot/extras/filters/mixins.py +6 -1
- nautobot/extras/health_checks.py +1 -0
- nautobot/extras/jobs.py +1 -0
- nautobot/extras/managers.py +1 -2
- nautobot/extras/models/contacts.py +1 -0
- nautobot/extras/models/customfields.py +25 -2
- nautobot/extras/models/datasources.py +1 -0
- nautobot/extras/models/mixins.py +1 -0
- nautobot/extras/plugins/__init__.py +2 -1
- nautobot/extras/querysets.py +1 -2
- nautobot/extras/secrets/providers.py +1 -0
- nautobot/extras/signals.py +15 -5
- nautobot/extras/tasks.py +70 -17
- nautobot/extras/tests/test_api.py +0 -4
- nautobot/extras/tests/test_customfields.py +72 -9
- nautobot/extras/views.py +8 -7
- nautobot/ipam/api/serializers.py +10 -0
- nautobot/ipam/apps.py +3 -2
- nautobot/project-static/docs/404.html +102 -70
- nautobot/project-static/docs/apps/index.html +103 -68
- nautobot/project-static/docs/apps/nautobot-apps.html +103 -68
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +141 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +141 -69
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +104 -69
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +103 -68
- nautobot/project-static/docs/development/apps/api/configuration-view.html +103 -68
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/global-search.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/graphql.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +103 -68
- nautobot/project-static/docs/development/apps/api/prometheus.html +103 -68
- nautobot/project-static/docs/development/apps/api/setup.html +103 -68
- nautobot/project-static/docs/development/apps/api/testing.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/base-template.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/notes.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/urls.html +103 -68
- nautobot/project-static/docs/development/apps/index.html +103 -68
- nautobot/project-static/docs/development/apps/migration/code-updates.html +103 -68
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +103 -68
- nautobot/project-static/docs/development/apps/migration/from-v1.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +103 -68
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +103 -68
- nautobot/project-static/docs/development/core/application-registry.html +103 -68
- nautobot/project-static/docs/development/core/best-practices.html +121 -76
- nautobot/project-static/docs/development/core/bootstrap-ui.html +103 -68
- nautobot/project-static/docs/development/core/caching.html +103 -68
- nautobot/project-static/docs/development/core/controllers.html +106 -71
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +103 -68
- nautobot/project-static/docs/development/core/extending-models.html +13 -8187
- nautobot/project-static/docs/development/core/generic-views.html +118 -83
- nautobot/project-static/docs/development/core/getting-started.html +103 -68
- nautobot/project-static/docs/development/core/homepage.html +121 -86
- nautobot/project-static/docs/development/core/index.html +103 -68
- nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
- nautobot/project-static/docs/development/core/model-features.html +106 -71
- nautobot/project-static/docs/development/core/natural-keys.html +103 -68
- nautobot/project-static/docs/development/core/navigation-menu.html +103 -68
- nautobot/project-static/docs/development/core/release-checklist.html +103 -68
- nautobot/project-static/docs/development/core/role-internals.html +103 -68
- nautobot/project-static/docs/development/core/settings.html +103 -68
- nautobot/project-static/docs/development/core/style-guide.html +103 -68
- nautobot/project-static/docs/development/core/templates.html +103 -68
- nautobot/project-static/docs/development/core/testing.html +103 -68
- nautobot/project-static/docs/development/core/user-preferences.html +103 -68
- nautobot/project-static/docs/development/extending-models.html +3 -3
- nautobot/project-static/docs/development/index.html +103 -68
- nautobot/project-static/docs/development/jobs/index.html +104 -69
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +103 -68
- nautobot/project-static/docs/index.html +102 -70
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.0.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.1.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.2.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.3.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.4.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.5.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.6.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.0.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.1.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.2.html +334 -97
- nautobot/project-static/docs/requirements.txt +3 -3
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +258 -258
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +168 -68
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +107 -68
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +106 -71
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/services.html +103 -68
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +103 -68
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +103 -68
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +103 -68
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +114 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +114 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +103 -68
- nautobot/project-static/docs/user-guide/index.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +103 -68
- nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/METADATA +22 -22
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/RECORD +339 -338
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
- nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/NOTICE +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/WHEEL +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/entry_points.txt +0 -0
nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../../../assets/stylesheets/main.bcfcd587.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -401,16 +401,17 @@
|
|
|
401
401
|
|
|
402
402
|
|
|
403
403
|
|
|
404
|
-
|
|
405
|
-
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
406
407
|
|
|
407
408
|
|
|
409
|
+
|
|
408
410
|
|
|
409
411
|
<li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
|
|
410
412
|
|
|
411
413
|
|
|
412
414
|
|
|
413
|
-
|
|
414
415
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
|
|
415
416
|
|
|
416
417
|
|
|
@@ -451,13 +452,14 @@
|
|
|
451
452
|
|
|
452
453
|
|
|
453
454
|
|
|
455
|
+
|
|
456
|
+
|
|
454
457
|
|
|
455
458
|
|
|
456
459
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
457
460
|
|
|
458
461
|
|
|
459
462
|
|
|
460
|
-
|
|
461
463
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" checked>
|
|
462
464
|
|
|
463
465
|
|
|
@@ -488,13 +490,14 @@
|
|
|
488
490
|
|
|
489
491
|
|
|
490
492
|
|
|
493
|
+
|
|
494
|
+
|
|
491
495
|
|
|
492
496
|
|
|
493
497
|
<li class="md-nav__item md-nav__item--nested">
|
|
494
498
|
|
|
495
499
|
|
|
496
500
|
|
|
497
|
-
|
|
498
501
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
|
|
499
502
|
|
|
500
503
|
|
|
@@ -743,13 +746,14 @@
|
|
|
743
746
|
|
|
744
747
|
|
|
745
748
|
|
|
749
|
+
|
|
750
|
+
|
|
746
751
|
|
|
747
752
|
|
|
748
753
|
<li class="md-nav__item md-nav__item--nested">
|
|
749
754
|
|
|
750
755
|
|
|
751
756
|
|
|
752
|
-
|
|
753
757
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
|
|
754
758
|
|
|
755
759
|
|
|
@@ -822,13 +826,14 @@
|
|
|
822
826
|
|
|
823
827
|
|
|
824
828
|
|
|
829
|
+
|
|
830
|
+
|
|
825
831
|
|
|
826
832
|
|
|
827
833
|
<li class="md-nav__item md-nav__item--nested">
|
|
828
834
|
|
|
829
835
|
|
|
830
836
|
|
|
831
|
-
|
|
832
837
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
|
|
833
838
|
|
|
834
839
|
|
|
@@ -888,13 +893,14 @@
|
|
|
888
893
|
|
|
889
894
|
|
|
890
895
|
|
|
896
|
+
|
|
897
|
+
|
|
891
898
|
|
|
892
899
|
|
|
893
900
|
<li class="md-nav__item md-nav__item--nested">
|
|
894
901
|
|
|
895
902
|
|
|
896
903
|
|
|
897
|
-
|
|
898
904
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
|
|
899
905
|
|
|
900
906
|
|
|
@@ -1041,13 +1047,14 @@
|
|
|
1041
1047
|
|
|
1042
1048
|
|
|
1043
1049
|
|
|
1050
|
+
|
|
1051
|
+
|
|
1044
1052
|
|
|
1045
1053
|
|
|
1046
1054
|
<li class="md-nav__item md-nav__item--nested">
|
|
1047
1055
|
|
|
1048
1056
|
|
|
1049
1057
|
|
|
1050
|
-
|
|
1051
1058
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1052
1059
|
|
|
1053
1060
|
|
|
@@ -1130,13 +1137,14 @@
|
|
|
1130
1137
|
|
|
1131
1138
|
|
|
1132
1139
|
|
|
1140
|
+
|
|
1141
|
+
|
|
1133
1142
|
|
|
1134
1143
|
|
|
1135
1144
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
1136
1145
|
|
|
1137
1146
|
|
|
1138
1147
|
|
|
1139
|
-
|
|
1140
1148
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" checked>
|
|
1141
1149
|
|
|
1142
1150
|
|
|
@@ -1240,13 +1248,14 @@
|
|
|
1240
1248
|
|
|
1241
1249
|
|
|
1242
1250
|
|
|
1251
|
+
|
|
1252
|
+
|
|
1243
1253
|
|
|
1244
1254
|
|
|
1245
1255
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
1246
1256
|
|
|
1247
1257
|
|
|
1248
1258
|
|
|
1249
|
-
|
|
1250
1259
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" checked>
|
|
1251
1260
|
|
|
1252
1261
|
|
|
@@ -1546,13 +1555,14 @@
|
|
|
1546
1555
|
|
|
1547
1556
|
|
|
1548
1557
|
|
|
1558
|
+
|
|
1559
|
+
|
|
1549
1560
|
|
|
1550
1561
|
|
|
1551
1562
|
<li class="md-nav__item md-nav__item--nested">
|
|
1552
1563
|
|
|
1553
1564
|
|
|
1554
1565
|
|
|
1555
|
-
|
|
1556
1566
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1557
1567
|
|
|
1558
1568
|
|
|
@@ -1633,13 +1643,14 @@
|
|
|
1633
1643
|
|
|
1634
1644
|
|
|
1635
1645
|
|
|
1646
|
+
|
|
1647
|
+
|
|
1636
1648
|
|
|
1637
1649
|
|
|
1638
1650
|
<li class="md-nav__item md-nav__item--nested">
|
|
1639
1651
|
|
|
1640
1652
|
|
|
1641
1653
|
|
|
1642
|
-
|
|
1643
1654
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1644
1655
|
|
|
1645
1656
|
|
|
@@ -1854,13 +1865,14 @@
|
|
|
1854
1865
|
|
|
1855
1866
|
|
|
1856
1867
|
|
|
1868
|
+
|
|
1869
|
+
|
|
1857
1870
|
|
|
1858
1871
|
|
|
1859
1872
|
<li class="md-nav__item md-nav__item--nested">
|
|
1860
1873
|
|
|
1861
1874
|
|
|
1862
1875
|
|
|
1863
|
-
|
|
1864
1876
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1865
1877
|
|
|
1866
1878
|
|
|
@@ -1891,13 +1903,14 @@
|
|
|
1891
1903
|
|
|
1892
1904
|
|
|
1893
1905
|
|
|
1906
|
+
|
|
1907
|
+
|
|
1894
1908
|
|
|
1895
1909
|
|
|
1896
1910
|
<li class="md-nav__item md-nav__item--nested">
|
|
1897
1911
|
|
|
1898
1912
|
|
|
1899
1913
|
|
|
1900
|
-
|
|
1901
1914
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1902
1915
|
|
|
1903
1916
|
|
|
@@ -2267,13 +2280,14 @@
|
|
|
2267
2280
|
|
|
2268
2281
|
|
|
2269
2282
|
|
|
2283
|
+
|
|
2284
|
+
|
|
2270
2285
|
|
|
2271
2286
|
|
|
2272
2287
|
<li class="md-nav__item md-nav__item--nested">
|
|
2273
2288
|
|
|
2274
2289
|
|
|
2275
2290
|
|
|
2276
|
-
|
|
2277
2291
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2278
2292
|
|
|
2279
2293
|
|
|
@@ -2304,13 +2318,14 @@
|
|
|
2304
2318
|
|
|
2305
2319
|
|
|
2306
2320
|
|
|
2321
|
+
|
|
2322
|
+
|
|
2307
2323
|
|
|
2308
2324
|
|
|
2309
2325
|
<li class="md-nav__item md-nav__item--nested">
|
|
2310
2326
|
|
|
2311
2327
|
|
|
2312
2328
|
|
|
2313
|
-
|
|
2314
2329
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2315
2330
|
|
|
2316
2331
|
|
|
@@ -2370,13 +2385,14 @@
|
|
|
2370
2385
|
|
|
2371
2386
|
|
|
2372
2387
|
|
|
2388
|
+
|
|
2389
|
+
|
|
2373
2390
|
|
|
2374
2391
|
|
|
2375
2392
|
<li class="md-nav__item md-nav__item--nested">
|
|
2376
2393
|
|
|
2377
2394
|
|
|
2378
2395
|
|
|
2379
|
-
|
|
2380
2396
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2381
2397
|
|
|
2382
2398
|
|
|
@@ -2520,13 +2536,14 @@
|
|
|
2520
2536
|
|
|
2521
2537
|
|
|
2522
2538
|
|
|
2539
|
+
|
|
2540
|
+
|
|
2523
2541
|
|
|
2524
2542
|
|
|
2525
2543
|
<li class="md-nav__item md-nav__item--nested">
|
|
2526
2544
|
|
|
2527
2545
|
|
|
2528
2546
|
|
|
2529
|
-
|
|
2530
2547
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2531
2548
|
|
|
2532
2549
|
|
|
@@ -2704,13 +2721,14 @@
|
|
|
2704
2721
|
|
|
2705
2722
|
|
|
2706
2723
|
|
|
2724
|
+
|
|
2725
|
+
|
|
2707
2726
|
|
|
2708
2727
|
|
|
2709
2728
|
<li class="md-nav__item md-nav__item--nested">
|
|
2710
2729
|
|
|
2711
2730
|
|
|
2712
2731
|
|
|
2713
|
-
|
|
2714
2732
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2715
2733
|
|
|
2716
2734
|
|
|
@@ -2925,13 +2943,14 @@
|
|
|
2925
2943
|
|
|
2926
2944
|
|
|
2927
2945
|
|
|
2946
|
+
|
|
2947
|
+
|
|
2928
2948
|
|
|
2929
2949
|
|
|
2930
2950
|
<li class="md-nav__item md-nav__item--nested">
|
|
2931
2951
|
|
|
2932
2952
|
|
|
2933
2953
|
|
|
2934
|
-
|
|
2935
2954
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2936
2955
|
|
|
2937
2956
|
|
|
@@ -3406,13 +3425,14 @@
|
|
|
3406
3425
|
|
|
3407
3426
|
|
|
3408
3427
|
|
|
3428
|
+
|
|
3429
|
+
|
|
3409
3430
|
|
|
3410
3431
|
|
|
3411
3432
|
<li class="md-nav__item md-nav__item--nested">
|
|
3412
3433
|
|
|
3413
3434
|
|
|
3414
3435
|
|
|
3415
|
-
|
|
3416
3436
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3417
3437
|
|
|
3418
3438
|
|
|
@@ -3535,13 +3555,14 @@
|
|
|
3535
3555
|
|
|
3536
3556
|
|
|
3537
3557
|
|
|
3558
|
+
|
|
3559
|
+
|
|
3538
3560
|
|
|
3539
3561
|
|
|
3540
3562
|
<li class="md-nav__item md-nav__item--nested">
|
|
3541
3563
|
|
|
3542
3564
|
|
|
3543
3565
|
|
|
3544
|
-
|
|
3545
3566
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3546
3567
|
|
|
3547
3568
|
|
|
@@ -3769,13 +3790,14 @@
|
|
|
3769
3790
|
|
|
3770
3791
|
|
|
3771
3792
|
|
|
3793
|
+
|
|
3794
|
+
|
|
3772
3795
|
|
|
3773
3796
|
|
|
3774
3797
|
<li class="md-nav__item md-nav__item--nested">
|
|
3775
3798
|
|
|
3776
3799
|
|
|
3777
3800
|
|
|
3778
|
-
|
|
3779
3801
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3780
3802
|
|
|
3781
3803
|
|
|
@@ -3856,13 +3878,14 @@
|
|
|
3856
3878
|
|
|
3857
3879
|
|
|
3858
3880
|
|
|
3881
|
+
|
|
3882
|
+
|
|
3859
3883
|
|
|
3860
3884
|
|
|
3861
3885
|
<li class="md-nav__item md-nav__item--nested">
|
|
3862
3886
|
|
|
3863
3887
|
|
|
3864
3888
|
|
|
3865
|
-
|
|
3866
3889
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3867
3890
|
|
|
3868
3891
|
|
|
@@ -4014,13 +4037,14 @@
|
|
|
4014
4037
|
|
|
4015
4038
|
|
|
4016
4039
|
|
|
4040
|
+
|
|
4041
|
+
|
|
4017
4042
|
|
|
4018
4043
|
|
|
4019
4044
|
<li class="md-nav__item md-nav__item--nested">
|
|
4020
4045
|
|
|
4021
4046
|
|
|
4022
4047
|
|
|
4023
|
-
|
|
4024
4048
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
4025
4049
|
|
|
4026
4050
|
|
|
@@ -4219,13 +4243,14 @@
|
|
|
4219
4243
|
|
|
4220
4244
|
|
|
4221
4245
|
|
|
4246
|
+
|
|
4247
|
+
|
|
4222
4248
|
|
|
4223
4249
|
|
|
4224
4250
|
<li class="md-nav__item md-nav__item--nested">
|
|
4225
4251
|
|
|
4226
4252
|
|
|
4227
4253
|
|
|
4228
|
-
|
|
4229
4254
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4230
4255
|
|
|
4231
4256
|
|
|
@@ -4314,13 +4339,14 @@
|
|
|
4314
4339
|
|
|
4315
4340
|
|
|
4316
4341
|
|
|
4342
|
+
|
|
4343
|
+
|
|
4317
4344
|
|
|
4318
4345
|
|
|
4319
4346
|
<li class="md-nav__item md-nav__item--nested">
|
|
4320
4347
|
|
|
4321
4348
|
|
|
4322
4349
|
|
|
4323
|
-
|
|
4324
4350
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4325
4351
|
|
|
4326
4352
|
|
|
@@ -4514,13 +4540,14 @@
|
|
|
4514
4540
|
|
|
4515
4541
|
|
|
4516
4542
|
|
|
4543
|
+
|
|
4544
|
+
|
|
4517
4545
|
|
|
4518
4546
|
|
|
4519
4547
|
<li class="md-nav__item md-nav__item--nested">
|
|
4520
4548
|
|
|
4521
4549
|
|
|
4522
4550
|
|
|
4523
|
-
|
|
4524
4551
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4525
4552
|
|
|
4526
4553
|
|
|
@@ -4735,13 +4762,14 @@
|
|
|
4735
4762
|
|
|
4736
4763
|
|
|
4737
4764
|
|
|
4765
|
+
|
|
4766
|
+
|
|
4738
4767
|
|
|
4739
4768
|
|
|
4740
4769
|
<li class="md-nav__item md-nav__item--nested">
|
|
4741
4770
|
|
|
4742
4771
|
|
|
4743
4772
|
|
|
4744
|
-
|
|
4745
4773
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4746
4774
|
|
|
4747
4775
|
|
|
@@ -4858,16 +4886,14 @@
|
|
|
4858
4886
|
|
|
4859
4887
|
|
|
4860
4888
|
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
4889
|
|
|
4864
4890
|
|
|
4865
4891
|
|
|
4866
|
-
|
|
4892
|
+
|
|
4893
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4867
4894
|
|
|
4868
4895
|
|
|
4869
4896
|
|
|
4870
|
-
|
|
4871
4897
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4872
4898
|
|
|
4873
4899
|
|
|
@@ -4884,7 +4910,7 @@
|
|
|
4884
4910
|
</a>
|
|
4885
4911
|
|
|
4886
4912
|
|
|
4887
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4913
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4888
4914
|
<span class="md-nav__icon md-icon"></span>
|
|
4889
4915
|
</label>
|
|
4890
4916
|
|
|
@@ -4906,13 +4932,14 @@
|
|
|
4906
4932
|
|
|
4907
4933
|
|
|
4908
4934
|
|
|
4935
|
+
|
|
4936
|
+
|
|
4909
4937
|
|
|
4910
4938
|
|
|
4911
4939
|
<li class="md-nav__item md-nav__item--nested">
|
|
4912
4940
|
|
|
4913
4941
|
|
|
4914
4942
|
|
|
4915
|
-
|
|
4916
4943
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4917
4944
|
|
|
4918
4945
|
|
|
@@ -4980,13 +5007,14 @@
|
|
|
4980
5007
|
|
|
4981
5008
|
|
|
4982
5009
|
|
|
5010
|
+
|
|
5011
|
+
|
|
4983
5012
|
|
|
4984
5013
|
|
|
4985
5014
|
<li class="md-nav__item md-nav__item--nested">
|
|
4986
5015
|
|
|
4987
5016
|
|
|
4988
5017
|
|
|
4989
|
-
|
|
4990
5018
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4991
5019
|
|
|
4992
5020
|
|
|
@@ -5067,13 +5095,14 @@
|
|
|
5067
5095
|
|
|
5068
5096
|
|
|
5069
5097
|
|
|
5098
|
+
|
|
5099
|
+
|
|
5070
5100
|
|
|
5071
5101
|
|
|
5072
5102
|
<li class="md-nav__item md-nav__item--nested">
|
|
5073
5103
|
|
|
5074
5104
|
|
|
5075
5105
|
|
|
5076
|
-
|
|
5077
5106
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
5078
5107
|
|
|
5079
5108
|
|
|
@@ -5183,13 +5212,14 @@
|
|
|
5183
5212
|
|
|
5184
5213
|
|
|
5185
5214
|
|
|
5215
|
+
|
|
5216
|
+
|
|
5186
5217
|
|
|
5187
5218
|
|
|
5188
5219
|
<li class="md-nav__item md-nav__item--nested">
|
|
5189
5220
|
|
|
5190
5221
|
|
|
5191
5222
|
|
|
5192
|
-
|
|
5193
5223
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5194
5224
|
|
|
5195
5225
|
|
|
@@ -5375,13 +5405,14 @@
|
|
|
5375
5405
|
|
|
5376
5406
|
|
|
5377
5407
|
|
|
5408
|
+
|
|
5409
|
+
|
|
5378
5410
|
|
|
5379
5411
|
|
|
5380
5412
|
<li class="md-nav__item md-nav__item--nested">
|
|
5381
5413
|
|
|
5382
5414
|
|
|
5383
5415
|
|
|
5384
|
-
|
|
5385
5416
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5386
5417
|
|
|
5387
5418
|
|
|
@@ -5491,13 +5522,14 @@
|
|
|
5491
5522
|
|
|
5492
5523
|
|
|
5493
5524
|
|
|
5525
|
+
|
|
5526
|
+
|
|
5494
5527
|
|
|
5495
5528
|
|
|
5496
5529
|
<li class="md-nav__item md-nav__item--nested">
|
|
5497
5530
|
|
|
5498
5531
|
|
|
5499
5532
|
|
|
5500
|
-
|
|
5501
5533
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5502
5534
|
|
|
5503
5535
|
|
|
@@ -5754,13 +5786,14 @@
|
|
|
5754
5786
|
|
|
5755
5787
|
|
|
5756
5788
|
|
|
5789
|
+
|
|
5790
|
+
|
|
5757
5791
|
|
|
5758
5792
|
|
|
5759
5793
|
<li class="md-nav__item md-nav__item--nested">
|
|
5760
5794
|
|
|
5761
5795
|
|
|
5762
5796
|
|
|
5763
|
-
|
|
5764
5797
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5765
5798
|
|
|
5766
5799
|
|
|
@@ -5933,13 +5966,14 @@
|
|
|
5933
5966
|
|
|
5934
5967
|
|
|
5935
5968
|
|
|
5969
|
+
|
|
5970
|
+
|
|
5936
5971
|
|
|
5937
5972
|
|
|
5938
5973
|
<li class="md-nav__item md-nav__item--nested">
|
|
5939
5974
|
|
|
5940
5975
|
|
|
5941
5976
|
|
|
5942
|
-
|
|
5943
5977
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5944
5978
|
|
|
5945
5979
|
|
|
@@ -6461,13 +6495,14 @@
|
|
|
6461
6495
|
|
|
6462
6496
|
|
|
6463
6497
|
|
|
6498
|
+
|
|
6499
|
+
|
|
6464
6500
|
|
|
6465
6501
|
|
|
6466
6502
|
<li class="md-nav__item md-nav__item--nested">
|
|
6467
6503
|
|
|
6468
6504
|
|
|
6469
6505
|
|
|
6470
|
-
|
|
6471
6506
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6472
6507
|
|
|
6473
6508
|
|
|
@@ -6561,13 +6596,14 @@
|
|
|
6561
6596
|
|
|
6562
6597
|
|
|
6563
6598
|
|
|
6599
|
+
|
|
6600
|
+
|
|
6564
6601
|
|
|
6565
6602
|
|
|
6566
6603
|
<li class="md-nav__item md-nav__item--nested">
|
|
6567
6604
|
|
|
6568
6605
|
|
|
6569
6606
|
|
|
6570
|
-
|
|
6571
6607
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6572
6608
|
|
|
6573
6609
|
|
|
@@ -6698,13 +6734,14 @@
|
|
|
6698
6734
|
|
|
6699
6735
|
|
|
6700
6736
|
|
|
6737
|
+
|
|
6738
|
+
|
|
6701
6739
|
|
|
6702
6740
|
|
|
6703
6741
|
<li class="md-nav__item md-nav__item--nested">
|
|
6704
6742
|
|
|
6705
6743
|
|
|
6706
6744
|
|
|
6707
|
-
|
|
6708
6745
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6709
6746
|
|
|
6710
6747
|
|
|
@@ -6772,13 +6809,14 @@
|
|
|
6772
6809
|
|
|
6773
6810
|
|
|
6774
6811
|
|
|
6812
|
+
|
|
6813
|
+
|
|
6775
6814
|
|
|
6776
6815
|
|
|
6777
6816
|
<li class="md-nav__item md-nav__item--nested">
|
|
6778
6817
|
|
|
6779
6818
|
|
|
6780
6819
|
|
|
6781
|
-
|
|
6782
6820
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6783
6821
|
|
|
6784
6822
|
|
|
@@ -6983,11 +7021,11 @@
|
|
|
6983
7021
|
|
|
6984
7022
|
|
|
6985
7023
|
<li class="md-nav__item">
|
|
6986
|
-
<a href="../../../../development/core/
|
|
7024
|
+
<a href="../../../../development/core/generic-views.html" class="md-nav__link">
|
|
6987
7025
|
|
|
6988
7026
|
|
|
6989
7027
|
<span class="md-ellipsis">
|
|
6990
|
-
|
|
7028
|
+
Generic Views
|
|
6991
7029
|
</span>
|
|
6992
7030
|
|
|
6993
7031
|
|
|
@@ -7004,11 +7042,11 @@
|
|
|
7004
7042
|
|
|
7005
7043
|
|
|
7006
7044
|
<li class="md-nav__item">
|
|
7007
|
-
<a href="../../../../development/core/
|
|
7045
|
+
<a href="../../../../development/core/homepage.html" class="md-nav__link">
|
|
7008
7046
|
|
|
7009
7047
|
|
|
7010
7048
|
<span class="md-ellipsis">
|
|
7011
|
-
|
|
7049
|
+
Home Page Panels
|
|
7012
7050
|
</span>
|
|
7013
7051
|
|
|
7014
7052
|
|
|
@@ -7025,11 +7063,11 @@
|
|
|
7025
7063
|
|
|
7026
7064
|
|
|
7027
7065
|
<li class="md-nav__item">
|
|
7028
|
-
<a href="../../../../development/core/
|
|
7066
|
+
<a href="../../../../development/core/model-checklist.html" class="md-nav__link">
|
|
7029
7067
|
|
|
7030
7068
|
|
|
7031
7069
|
<span class="md-ellipsis">
|
|
7032
|
-
|
|
7070
|
+
Model Development Checklist
|
|
7033
7071
|
</span>
|
|
7034
7072
|
|
|
7035
7073
|
|
|
@@ -7252,16 +7290,14 @@
|
|
|
7252
7290
|
|
|
7253
7291
|
|
|
7254
7292
|
|
|
7255
|
-
|
|
7256
|
-
|
|
7257
7293
|
|
|
7258
7294
|
|
|
7259
7295
|
|
|
7260
|
-
|
|
7296
|
+
|
|
7297
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7261
7298
|
|
|
7262
7299
|
|
|
7263
7300
|
|
|
7264
|
-
|
|
7265
7301
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7266
7302
|
|
|
7267
7303
|
|
|
@@ -7278,7 +7314,7 @@
|
|
|
7278
7314
|
</a>
|
|
7279
7315
|
|
|
7280
7316
|
|
|
7281
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7317
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7282
7318
|
<span class="md-nav__icon md-icon"></span>
|
|
7283
7319
|
</label>
|
|
7284
7320
|
|
|
@@ -7517,16 +7553,14 @@
|
|
|
7517
7553
|
|
|
7518
7554
|
|
|
7519
7555
|
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
7556
|
|
|
7523
7557
|
|
|
7524
7558
|
|
|
7525
|
-
|
|
7559
|
+
|
|
7560
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7526
7561
|
|
|
7527
7562
|
|
|
7528
7563
|
|
|
7529
|
-
|
|
7530
7564
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7531
7565
|
|
|
7532
7566
|
|
|
@@ -7543,7 +7577,7 @@
|
|
|
7543
7577
|
</a>
|
|
7544
7578
|
|
|
7545
7579
|
|
|
7546
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7580
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7547
7581
|
<span class="md-nav__icon md-icon"></span>
|
|
7548
7582
|
</label>
|
|
7549
7583
|
|
|
@@ -7565,13 +7599,14 @@
|
|
|
7565
7599
|
|
|
7566
7600
|
|
|
7567
7601
|
|
|
7602
|
+
|
|
7603
|
+
|
|
7568
7604
|
|
|
7569
7605
|
|
|
7570
7606
|
<li class="md-nav__item md-nav__item--nested">
|
|
7571
7607
|
|
|
7572
7608
|
|
|
7573
7609
|
|
|
7574
|
-
|
|
7575
7610
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7576
7611
|
|
|
7577
7612
|
|
|
@@ -8394,9 +8429,9 @@
|
|
|
8394
8429
|
<script id="__config" type="application/json">{"base": "../../../..", "features": ["content.code.copy", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
|
|
8395
8430
|
|
|
8396
8431
|
|
|
8397
|
-
<script src="../../../../assets/javascripts/bundle.
|
|
8432
|
+
<script src="../../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8398
8433
|
|
|
8399
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8434
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8400
8435
|
|
|
8401
8436
|
|
|
8402
8437
|
</body>
|