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
|
@@ -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
|
|
|
@@ -490,13 +492,14 @@
|
|
|
490
492
|
|
|
491
493
|
|
|
492
494
|
|
|
495
|
+
|
|
496
|
+
|
|
493
497
|
|
|
494
498
|
|
|
495
499
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
496
500
|
|
|
497
501
|
|
|
498
502
|
|
|
499
|
-
|
|
500
503
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" checked>
|
|
501
504
|
|
|
502
505
|
|
|
@@ -1007,13 +1010,14 @@
|
|
|
1007
1010
|
|
|
1008
1011
|
|
|
1009
1012
|
|
|
1013
|
+
|
|
1014
|
+
|
|
1010
1015
|
|
|
1011
1016
|
|
|
1012
1017
|
<li class="md-nav__item md-nav__item--nested">
|
|
1013
1018
|
|
|
1014
1019
|
|
|
1015
1020
|
|
|
1016
|
-
|
|
1017
1021
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
|
|
1018
1022
|
|
|
1019
1023
|
|
|
@@ -1086,13 +1090,14 @@
|
|
|
1086
1090
|
|
|
1087
1091
|
|
|
1088
1092
|
|
|
1093
|
+
|
|
1094
|
+
|
|
1089
1095
|
|
|
1090
1096
|
|
|
1091
1097
|
<li class="md-nav__item md-nav__item--nested">
|
|
1092
1098
|
|
|
1093
1099
|
|
|
1094
1100
|
|
|
1095
|
-
|
|
1096
1101
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
|
|
1097
1102
|
|
|
1098
1103
|
|
|
@@ -1152,13 +1157,14 @@
|
|
|
1152
1157
|
|
|
1153
1158
|
|
|
1154
1159
|
|
|
1160
|
+
|
|
1161
|
+
|
|
1155
1162
|
|
|
1156
1163
|
|
|
1157
1164
|
<li class="md-nav__item md-nav__item--nested">
|
|
1158
1165
|
|
|
1159
1166
|
|
|
1160
1167
|
|
|
1161
|
-
|
|
1162
1168
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
|
|
1163
1169
|
|
|
1164
1170
|
|
|
@@ -1305,13 +1311,14 @@
|
|
|
1305
1311
|
|
|
1306
1312
|
|
|
1307
1313
|
|
|
1314
|
+
|
|
1315
|
+
|
|
1308
1316
|
|
|
1309
1317
|
|
|
1310
1318
|
<li class="md-nav__item md-nav__item--nested">
|
|
1311
1319
|
|
|
1312
1320
|
|
|
1313
1321
|
|
|
1314
|
-
|
|
1315
1322
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1316
1323
|
|
|
1317
1324
|
|
|
@@ -1392,13 +1399,14 @@
|
|
|
1392
1399
|
|
|
1393
1400
|
|
|
1394
1401
|
|
|
1402
|
+
|
|
1403
|
+
|
|
1395
1404
|
|
|
1396
1405
|
|
|
1397
1406
|
<li class="md-nav__item md-nav__item--nested">
|
|
1398
1407
|
|
|
1399
1408
|
|
|
1400
1409
|
|
|
1401
|
-
|
|
1402
1410
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1403
1411
|
|
|
1404
1412
|
|
|
@@ -1500,13 +1508,14 @@
|
|
|
1500
1508
|
|
|
1501
1509
|
|
|
1502
1510
|
|
|
1511
|
+
|
|
1512
|
+
|
|
1503
1513
|
|
|
1504
1514
|
|
|
1505
1515
|
<li class="md-nav__item md-nav__item--nested">
|
|
1506
1516
|
|
|
1507
1517
|
|
|
1508
1518
|
|
|
1509
|
-
|
|
1510
1519
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1511
1520
|
|
|
1512
1521
|
|
|
@@ -1616,13 +1625,14 @@
|
|
|
1616
1625
|
|
|
1617
1626
|
|
|
1618
1627
|
|
|
1628
|
+
|
|
1629
|
+
|
|
1619
1630
|
|
|
1620
1631
|
|
|
1621
1632
|
<li class="md-nav__item md-nav__item--nested">
|
|
1622
1633
|
|
|
1623
1634
|
|
|
1624
1635
|
|
|
1625
|
-
|
|
1626
1636
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1627
1637
|
|
|
1628
1638
|
|
|
@@ -1703,13 +1713,14 @@
|
|
|
1703
1713
|
|
|
1704
1714
|
|
|
1705
1715
|
|
|
1716
|
+
|
|
1717
|
+
|
|
1706
1718
|
|
|
1707
1719
|
|
|
1708
1720
|
<li class="md-nav__item md-nav__item--nested">
|
|
1709
1721
|
|
|
1710
1722
|
|
|
1711
1723
|
|
|
1712
|
-
|
|
1713
1724
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1714
1725
|
|
|
1715
1726
|
|
|
@@ -1924,13 +1935,14 @@
|
|
|
1924
1935
|
|
|
1925
1936
|
|
|
1926
1937
|
|
|
1938
|
+
|
|
1939
|
+
|
|
1927
1940
|
|
|
1928
1941
|
|
|
1929
1942
|
<li class="md-nav__item md-nav__item--nested">
|
|
1930
1943
|
|
|
1931
1944
|
|
|
1932
1945
|
|
|
1933
|
-
|
|
1934
1946
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1935
1947
|
|
|
1936
1948
|
|
|
@@ -1961,13 +1973,14 @@
|
|
|
1961
1973
|
|
|
1962
1974
|
|
|
1963
1975
|
|
|
1976
|
+
|
|
1977
|
+
|
|
1964
1978
|
|
|
1965
1979
|
|
|
1966
1980
|
<li class="md-nav__item md-nav__item--nested">
|
|
1967
1981
|
|
|
1968
1982
|
|
|
1969
1983
|
|
|
1970
|
-
|
|
1971
1984
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1972
1985
|
|
|
1973
1986
|
|
|
@@ -2337,13 +2350,14 @@
|
|
|
2337
2350
|
|
|
2338
2351
|
|
|
2339
2352
|
|
|
2353
|
+
|
|
2354
|
+
|
|
2340
2355
|
|
|
2341
2356
|
|
|
2342
2357
|
<li class="md-nav__item md-nav__item--nested">
|
|
2343
2358
|
|
|
2344
2359
|
|
|
2345
2360
|
|
|
2346
|
-
|
|
2347
2361
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2348
2362
|
|
|
2349
2363
|
|
|
@@ -2374,13 +2388,14 @@
|
|
|
2374
2388
|
|
|
2375
2389
|
|
|
2376
2390
|
|
|
2391
|
+
|
|
2392
|
+
|
|
2377
2393
|
|
|
2378
2394
|
|
|
2379
2395
|
<li class="md-nav__item md-nav__item--nested">
|
|
2380
2396
|
|
|
2381
2397
|
|
|
2382
2398
|
|
|
2383
|
-
|
|
2384
2399
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2385
2400
|
|
|
2386
2401
|
|
|
@@ -2440,13 +2455,14 @@
|
|
|
2440
2455
|
|
|
2441
2456
|
|
|
2442
2457
|
|
|
2458
|
+
|
|
2459
|
+
|
|
2443
2460
|
|
|
2444
2461
|
|
|
2445
2462
|
<li class="md-nav__item md-nav__item--nested">
|
|
2446
2463
|
|
|
2447
2464
|
|
|
2448
2465
|
|
|
2449
|
-
|
|
2450
2466
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2451
2467
|
|
|
2452
2468
|
|
|
@@ -2590,13 +2606,14 @@
|
|
|
2590
2606
|
|
|
2591
2607
|
|
|
2592
2608
|
|
|
2609
|
+
|
|
2610
|
+
|
|
2593
2611
|
|
|
2594
2612
|
|
|
2595
2613
|
<li class="md-nav__item md-nav__item--nested">
|
|
2596
2614
|
|
|
2597
2615
|
|
|
2598
2616
|
|
|
2599
|
-
|
|
2600
2617
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2601
2618
|
|
|
2602
2619
|
|
|
@@ -2774,13 +2791,14 @@
|
|
|
2774
2791
|
|
|
2775
2792
|
|
|
2776
2793
|
|
|
2794
|
+
|
|
2795
|
+
|
|
2777
2796
|
|
|
2778
2797
|
|
|
2779
2798
|
<li class="md-nav__item md-nav__item--nested">
|
|
2780
2799
|
|
|
2781
2800
|
|
|
2782
2801
|
|
|
2783
|
-
|
|
2784
2802
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2785
2803
|
|
|
2786
2804
|
|
|
@@ -2995,13 +3013,14 @@
|
|
|
2995
3013
|
|
|
2996
3014
|
|
|
2997
3015
|
|
|
3016
|
+
|
|
3017
|
+
|
|
2998
3018
|
|
|
2999
3019
|
|
|
3000
3020
|
<li class="md-nav__item md-nav__item--nested">
|
|
3001
3021
|
|
|
3002
3022
|
|
|
3003
3023
|
|
|
3004
|
-
|
|
3005
3024
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
3006
3025
|
|
|
3007
3026
|
|
|
@@ -3476,13 +3495,14 @@
|
|
|
3476
3495
|
|
|
3477
3496
|
|
|
3478
3497
|
|
|
3498
|
+
|
|
3499
|
+
|
|
3479
3500
|
|
|
3480
3501
|
|
|
3481
3502
|
<li class="md-nav__item md-nav__item--nested">
|
|
3482
3503
|
|
|
3483
3504
|
|
|
3484
3505
|
|
|
3485
|
-
|
|
3486
3506
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3487
3507
|
|
|
3488
3508
|
|
|
@@ -3605,13 +3625,14 @@
|
|
|
3605
3625
|
|
|
3606
3626
|
|
|
3607
3627
|
|
|
3628
|
+
|
|
3629
|
+
|
|
3608
3630
|
|
|
3609
3631
|
|
|
3610
3632
|
<li class="md-nav__item md-nav__item--nested">
|
|
3611
3633
|
|
|
3612
3634
|
|
|
3613
3635
|
|
|
3614
|
-
|
|
3615
3636
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3616
3637
|
|
|
3617
3638
|
|
|
@@ -3839,13 +3860,14 @@
|
|
|
3839
3860
|
|
|
3840
3861
|
|
|
3841
3862
|
|
|
3863
|
+
|
|
3864
|
+
|
|
3842
3865
|
|
|
3843
3866
|
|
|
3844
3867
|
<li class="md-nav__item md-nav__item--nested">
|
|
3845
3868
|
|
|
3846
3869
|
|
|
3847
3870
|
|
|
3848
|
-
|
|
3849
3871
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3850
3872
|
|
|
3851
3873
|
|
|
@@ -3926,13 +3948,14 @@
|
|
|
3926
3948
|
|
|
3927
3949
|
|
|
3928
3950
|
|
|
3951
|
+
|
|
3952
|
+
|
|
3929
3953
|
|
|
3930
3954
|
|
|
3931
3955
|
<li class="md-nav__item md-nav__item--nested">
|
|
3932
3956
|
|
|
3933
3957
|
|
|
3934
3958
|
|
|
3935
|
-
|
|
3936
3959
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3937
3960
|
|
|
3938
3961
|
|
|
@@ -4084,13 +4107,14 @@
|
|
|
4084
4107
|
|
|
4085
4108
|
|
|
4086
4109
|
|
|
4110
|
+
|
|
4111
|
+
|
|
4087
4112
|
|
|
4088
4113
|
|
|
4089
4114
|
<li class="md-nav__item md-nav__item--nested">
|
|
4090
4115
|
|
|
4091
4116
|
|
|
4092
4117
|
|
|
4093
|
-
|
|
4094
4118
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
4095
4119
|
|
|
4096
4120
|
|
|
@@ -4289,13 +4313,14 @@
|
|
|
4289
4313
|
|
|
4290
4314
|
|
|
4291
4315
|
|
|
4316
|
+
|
|
4317
|
+
|
|
4292
4318
|
|
|
4293
4319
|
|
|
4294
4320
|
<li class="md-nav__item md-nav__item--nested">
|
|
4295
4321
|
|
|
4296
4322
|
|
|
4297
4323
|
|
|
4298
|
-
|
|
4299
4324
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4300
4325
|
|
|
4301
4326
|
|
|
@@ -4384,13 +4409,14 @@
|
|
|
4384
4409
|
|
|
4385
4410
|
|
|
4386
4411
|
|
|
4412
|
+
|
|
4413
|
+
|
|
4387
4414
|
|
|
4388
4415
|
|
|
4389
4416
|
<li class="md-nav__item md-nav__item--nested">
|
|
4390
4417
|
|
|
4391
4418
|
|
|
4392
4419
|
|
|
4393
|
-
|
|
4394
4420
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4395
4421
|
|
|
4396
4422
|
|
|
@@ -4584,13 +4610,14 @@
|
|
|
4584
4610
|
|
|
4585
4611
|
|
|
4586
4612
|
|
|
4613
|
+
|
|
4614
|
+
|
|
4587
4615
|
|
|
4588
4616
|
|
|
4589
4617
|
<li class="md-nav__item md-nav__item--nested">
|
|
4590
4618
|
|
|
4591
4619
|
|
|
4592
4620
|
|
|
4593
|
-
|
|
4594
4621
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4595
4622
|
|
|
4596
4623
|
|
|
@@ -4805,13 +4832,14 @@
|
|
|
4805
4832
|
|
|
4806
4833
|
|
|
4807
4834
|
|
|
4835
|
+
|
|
4836
|
+
|
|
4808
4837
|
|
|
4809
4838
|
|
|
4810
4839
|
<li class="md-nav__item md-nav__item--nested">
|
|
4811
4840
|
|
|
4812
4841
|
|
|
4813
4842
|
|
|
4814
|
-
|
|
4815
4843
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4816
4844
|
|
|
4817
4845
|
|
|
@@ -4928,16 +4956,14 @@
|
|
|
4928
4956
|
|
|
4929
4957
|
|
|
4930
4958
|
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
4959
|
|
|
4934
4960
|
|
|
4935
4961
|
|
|
4936
|
-
|
|
4962
|
+
|
|
4963
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4937
4964
|
|
|
4938
4965
|
|
|
4939
4966
|
|
|
4940
|
-
|
|
4941
4967
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4942
4968
|
|
|
4943
4969
|
|
|
@@ -4954,7 +4980,7 @@
|
|
|
4954
4980
|
</a>
|
|
4955
4981
|
|
|
4956
4982
|
|
|
4957
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4983
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4958
4984
|
<span class="md-nav__icon md-icon"></span>
|
|
4959
4985
|
</label>
|
|
4960
4986
|
|
|
@@ -4976,13 +5002,14 @@
|
|
|
4976
5002
|
|
|
4977
5003
|
|
|
4978
5004
|
|
|
5005
|
+
|
|
5006
|
+
|
|
4979
5007
|
|
|
4980
5008
|
|
|
4981
5009
|
<li class="md-nav__item md-nav__item--nested">
|
|
4982
5010
|
|
|
4983
5011
|
|
|
4984
5012
|
|
|
4985
|
-
|
|
4986
5013
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4987
5014
|
|
|
4988
5015
|
|
|
@@ -5050,13 +5077,14 @@
|
|
|
5050
5077
|
|
|
5051
5078
|
|
|
5052
5079
|
|
|
5080
|
+
|
|
5081
|
+
|
|
5053
5082
|
|
|
5054
5083
|
|
|
5055
5084
|
<li class="md-nav__item md-nav__item--nested">
|
|
5056
5085
|
|
|
5057
5086
|
|
|
5058
5087
|
|
|
5059
|
-
|
|
5060
5088
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
5061
5089
|
|
|
5062
5090
|
|
|
@@ -5137,13 +5165,14 @@
|
|
|
5137
5165
|
|
|
5138
5166
|
|
|
5139
5167
|
|
|
5168
|
+
|
|
5169
|
+
|
|
5140
5170
|
|
|
5141
5171
|
|
|
5142
5172
|
<li class="md-nav__item md-nav__item--nested">
|
|
5143
5173
|
|
|
5144
5174
|
|
|
5145
5175
|
|
|
5146
|
-
|
|
5147
5176
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
5148
5177
|
|
|
5149
5178
|
|
|
@@ -5253,13 +5282,14 @@
|
|
|
5253
5282
|
|
|
5254
5283
|
|
|
5255
5284
|
|
|
5285
|
+
|
|
5286
|
+
|
|
5256
5287
|
|
|
5257
5288
|
|
|
5258
5289
|
<li class="md-nav__item md-nav__item--nested">
|
|
5259
5290
|
|
|
5260
5291
|
|
|
5261
5292
|
|
|
5262
|
-
|
|
5263
5293
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5264
5294
|
|
|
5265
5295
|
|
|
@@ -5445,13 +5475,14 @@
|
|
|
5445
5475
|
|
|
5446
5476
|
|
|
5447
5477
|
|
|
5478
|
+
|
|
5479
|
+
|
|
5448
5480
|
|
|
5449
5481
|
|
|
5450
5482
|
<li class="md-nav__item md-nav__item--nested">
|
|
5451
5483
|
|
|
5452
5484
|
|
|
5453
5485
|
|
|
5454
|
-
|
|
5455
5486
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5456
5487
|
|
|
5457
5488
|
|
|
@@ -5561,13 +5592,14 @@
|
|
|
5561
5592
|
|
|
5562
5593
|
|
|
5563
5594
|
|
|
5595
|
+
|
|
5596
|
+
|
|
5564
5597
|
|
|
5565
5598
|
|
|
5566
5599
|
<li class="md-nav__item md-nav__item--nested">
|
|
5567
5600
|
|
|
5568
5601
|
|
|
5569
5602
|
|
|
5570
|
-
|
|
5571
5603
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5572
5604
|
|
|
5573
5605
|
|
|
@@ -5824,13 +5856,14 @@
|
|
|
5824
5856
|
|
|
5825
5857
|
|
|
5826
5858
|
|
|
5859
|
+
|
|
5860
|
+
|
|
5827
5861
|
|
|
5828
5862
|
|
|
5829
5863
|
<li class="md-nav__item md-nav__item--nested">
|
|
5830
5864
|
|
|
5831
5865
|
|
|
5832
5866
|
|
|
5833
|
-
|
|
5834
5867
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5835
5868
|
|
|
5836
5869
|
|
|
@@ -6003,13 +6036,14 @@
|
|
|
6003
6036
|
|
|
6004
6037
|
|
|
6005
6038
|
|
|
6039
|
+
|
|
6040
|
+
|
|
6006
6041
|
|
|
6007
6042
|
|
|
6008
6043
|
<li class="md-nav__item md-nav__item--nested">
|
|
6009
6044
|
|
|
6010
6045
|
|
|
6011
6046
|
|
|
6012
|
-
|
|
6013
6047
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
6014
6048
|
|
|
6015
6049
|
|
|
@@ -6531,13 +6565,14 @@
|
|
|
6531
6565
|
|
|
6532
6566
|
|
|
6533
6567
|
|
|
6568
|
+
|
|
6569
|
+
|
|
6534
6570
|
|
|
6535
6571
|
|
|
6536
6572
|
<li class="md-nav__item md-nav__item--nested">
|
|
6537
6573
|
|
|
6538
6574
|
|
|
6539
6575
|
|
|
6540
|
-
|
|
6541
6576
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6542
6577
|
|
|
6543
6578
|
|
|
@@ -6631,13 +6666,14 @@
|
|
|
6631
6666
|
|
|
6632
6667
|
|
|
6633
6668
|
|
|
6669
|
+
|
|
6670
|
+
|
|
6634
6671
|
|
|
6635
6672
|
|
|
6636
6673
|
<li class="md-nav__item md-nav__item--nested">
|
|
6637
6674
|
|
|
6638
6675
|
|
|
6639
6676
|
|
|
6640
|
-
|
|
6641
6677
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6642
6678
|
|
|
6643
6679
|
|
|
@@ -6768,13 +6804,14 @@
|
|
|
6768
6804
|
|
|
6769
6805
|
|
|
6770
6806
|
|
|
6807
|
+
|
|
6808
|
+
|
|
6771
6809
|
|
|
6772
6810
|
|
|
6773
6811
|
<li class="md-nav__item md-nav__item--nested">
|
|
6774
6812
|
|
|
6775
6813
|
|
|
6776
6814
|
|
|
6777
|
-
|
|
6778
6815
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6779
6816
|
|
|
6780
6817
|
|
|
@@ -6842,13 +6879,14 @@
|
|
|
6842
6879
|
|
|
6843
6880
|
|
|
6844
6881
|
|
|
6882
|
+
|
|
6883
|
+
|
|
6845
6884
|
|
|
6846
6885
|
|
|
6847
6886
|
<li class="md-nav__item md-nav__item--nested">
|
|
6848
6887
|
|
|
6849
6888
|
|
|
6850
6889
|
|
|
6851
|
-
|
|
6852
6890
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6853
6891
|
|
|
6854
6892
|
|
|
@@ -7053,11 +7091,11 @@
|
|
|
7053
7091
|
|
|
7054
7092
|
|
|
7055
7093
|
<li class="md-nav__item">
|
|
7056
|
-
<a href="../../../development/core/
|
|
7094
|
+
<a href="../../../development/core/generic-views.html" class="md-nav__link">
|
|
7057
7095
|
|
|
7058
7096
|
|
|
7059
7097
|
<span class="md-ellipsis">
|
|
7060
|
-
|
|
7098
|
+
Generic Views
|
|
7061
7099
|
</span>
|
|
7062
7100
|
|
|
7063
7101
|
|
|
@@ -7074,11 +7112,11 @@
|
|
|
7074
7112
|
|
|
7075
7113
|
|
|
7076
7114
|
<li class="md-nav__item">
|
|
7077
|
-
<a href="../../../development/core/
|
|
7115
|
+
<a href="../../../development/core/homepage.html" class="md-nav__link">
|
|
7078
7116
|
|
|
7079
7117
|
|
|
7080
7118
|
<span class="md-ellipsis">
|
|
7081
|
-
|
|
7119
|
+
Home Page Panels
|
|
7082
7120
|
</span>
|
|
7083
7121
|
|
|
7084
7122
|
|
|
@@ -7095,11 +7133,11 @@
|
|
|
7095
7133
|
|
|
7096
7134
|
|
|
7097
7135
|
<li class="md-nav__item">
|
|
7098
|
-
<a href="../../../development/core/
|
|
7136
|
+
<a href="../../../development/core/model-checklist.html" class="md-nav__link">
|
|
7099
7137
|
|
|
7100
7138
|
|
|
7101
7139
|
<span class="md-ellipsis">
|
|
7102
|
-
|
|
7140
|
+
Model Development Checklist
|
|
7103
7141
|
</span>
|
|
7104
7142
|
|
|
7105
7143
|
|
|
@@ -7322,16 +7360,14 @@
|
|
|
7322
7360
|
|
|
7323
7361
|
|
|
7324
7362
|
|
|
7325
|
-
|
|
7326
|
-
|
|
7327
7363
|
|
|
7328
7364
|
|
|
7329
7365
|
|
|
7330
|
-
|
|
7366
|
+
|
|
7367
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7331
7368
|
|
|
7332
7369
|
|
|
7333
7370
|
|
|
7334
|
-
|
|
7335
7371
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7336
7372
|
|
|
7337
7373
|
|
|
@@ -7348,7 +7384,7 @@
|
|
|
7348
7384
|
</a>
|
|
7349
7385
|
|
|
7350
7386
|
|
|
7351
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7387
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7352
7388
|
<span class="md-nav__icon md-icon"></span>
|
|
7353
7389
|
</label>
|
|
7354
7390
|
|
|
@@ -7587,16 +7623,14 @@
|
|
|
7587
7623
|
|
|
7588
7624
|
|
|
7589
7625
|
|
|
7590
|
-
|
|
7591
|
-
|
|
7592
7626
|
|
|
7593
7627
|
|
|
7594
7628
|
|
|
7595
|
-
|
|
7629
|
+
|
|
7630
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7596
7631
|
|
|
7597
7632
|
|
|
7598
7633
|
|
|
7599
|
-
|
|
7600
7634
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7601
7635
|
|
|
7602
7636
|
|
|
@@ -7613,7 +7647,7 @@
|
|
|
7613
7647
|
</a>
|
|
7614
7648
|
|
|
7615
7649
|
|
|
7616
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7650
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7617
7651
|
<span class="md-nav__icon md-icon"></span>
|
|
7618
7652
|
</label>
|
|
7619
7653
|
|
|
@@ -7635,13 +7669,14 @@
|
|
|
7635
7669
|
|
|
7636
7670
|
|
|
7637
7671
|
|
|
7672
|
+
|
|
7673
|
+
|
|
7638
7674
|
|
|
7639
7675
|
|
|
7640
7676
|
<li class="md-nav__item md-nav__item--nested">
|
|
7641
7677
|
|
|
7642
7678
|
|
|
7643
7679
|
|
|
7644
|
-
|
|
7645
7680
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7646
7681
|
|
|
7647
7682
|
|
|
@@ -8584,9 +8619,9 @@
|
|
|
8584
8619
|
<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>
|
|
8585
8620
|
|
|
8586
8621
|
|
|
8587
|
-
<script src="../../../assets/javascripts/bundle.
|
|
8622
|
+
<script src="../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8588
8623
|
|
|
8589
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8624
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8590
8625
|
|
|
8591
8626
|
|
|
8592
8627
|
</body>
|