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
|
|
|
@@ -1016,13 +1019,14 @@
|
|
|
1016
1019
|
|
|
1017
1020
|
|
|
1018
1021
|
|
|
1022
|
+
|
|
1023
|
+
|
|
1019
1024
|
|
|
1020
1025
|
|
|
1021
1026
|
<li class="md-nav__item md-nav__item--nested">
|
|
1022
1027
|
|
|
1023
1028
|
|
|
1024
1029
|
|
|
1025
|
-
|
|
1026
1030
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
|
|
1027
1031
|
|
|
1028
1032
|
|
|
@@ -1095,13 +1099,14 @@
|
|
|
1095
1099
|
|
|
1096
1100
|
|
|
1097
1101
|
|
|
1102
|
+
|
|
1103
|
+
|
|
1098
1104
|
|
|
1099
1105
|
|
|
1100
1106
|
<li class="md-nav__item md-nav__item--nested">
|
|
1101
1107
|
|
|
1102
1108
|
|
|
1103
1109
|
|
|
1104
|
-
|
|
1105
1110
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
|
|
1106
1111
|
|
|
1107
1112
|
|
|
@@ -1161,13 +1166,14 @@
|
|
|
1161
1166
|
|
|
1162
1167
|
|
|
1163
1168
|
|
|
1169
|
+
|
|
1170
|
+
|
|
1164
1171
|
|
|
1165
1172
|
|
|
1166
1173
|
<li class="md-nav__item md-nav__item--nested">
|
|
1167
1174
|
|
|
1168
1175
|
|
|
1169
1176
|
|
|
1170
|
-
|
|
1171
1177
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
|
|
1172
1178
|
|
|
1173
1179
|
|
|
@@ -1314,13 +1320,14 @@
|
|
|
1314
1320
|
|
|
1315
1321
|
|
|
1316
1322
|
|
|
1323
|
+
|
|
1324
|
+
|
|
1317
1325
|
|
|
1318
1326
|
|
|
1319
1327
|
<li class="md-nav__item md-nav__item--nested">
|
|
1320
1328
|
|
|
1321
1329
|
|
|
1322
1330
|
|
|
1323
|
-
|
|
1324
1331
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1325
1332
|
|
|
1326
1333
|
|
|
@@ -1401,13 +1408,14 @@
|
|
|
1401
1408
|
|
|
1402
1409
|
|
|
1403
1410
|
|
|
1411
|
+
|
|
1412
|
+
|
|
1404
1413
|
|
|
1405
1414
|
|
|
1406
1415
|
<li class="md-nav__item md-nav__item--nested">
|
|
1407
1416
|
|
|
1408
1417
|
|
|
1409
1418
|
|
|
1410
|
-
|
|
1411
1419
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1412
1420
|
|
|
1413
1421
|
|
|
@@ -1509,13 +1517,14 @@
|
|
|
1509
1517
|
|
|
1510
1518
|
|
|
1511
1519
|
|
|
1520
|
+
|
|
1521
|
+
|
|
1512
1522
|
|
|
1513
1523
|
|
|
1514
1524
|
<li class="md-nav__item md-nav__item--nested">
|
|
1515
1525
|
|
|
1516
1526
|
|
|
1517
1527
|
|
|
1518
|
-
|
|
1519
1528
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1520
1529
|
|
|
1521
1530
|
|
|
@@ -1625,13 +1634,14 @@
|
|
|
1625
1634
|
|
|
1626
1635
|
|
|
1627
1636
|
|
|
1637
|
+
|
|
1638
|
+
|
|
1628
1639
|
|
|
1629
1640
|
|
|
1630
1641
|
<li class="md-nav__item md-nav__item--nested">
|
|
1631
1642
|
|
|
1632
1643
|
|
|
1633
1644
|
|
|
1634
|
-
|
|
1635
1645
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1636
1646
|
|
|
1637
1647
|
|
|
@@ -1712,13 +1722,14 @@
|
|
|
1712
1722
|
|
|
1713
1723
|
|
|
1714
1724
|
|
|
1725
|
+
|
|
1726
|
+
|
|
1715
1727
|
|
|
1716
1728
|
|
|
1717
1729
|
<li class="md-nav__item md-nav__item--nested">
|
|
1718
1730
|
|
|
1719
1731
|
|
|
1720
1732
|
|
|
1721
|
-
|
|
1722
1733
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1723
1734
|
|
|
1724
1735
|
|
|
@@ -1933,13 +1944,14 @@
|
|
|
1933
1944
|
|
|
1934
1945
|
|
|
1935
1946
|
|
|
1947
|
+
|
|
1948
|
+
|
|
1936
1949
|
|
|
1937
1950
|
|
|
1938
1951
|
<li class="md-nav__item md-nav__item--nested">
|
|
1939
1952
|
|
|
1940
1953
|
|
|
1941
1954
|
|
|
1942
|
-
|
|
1943
1955
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1944
1956
|
|
|
1945
1957
|
|
|
@@ -1970,13 +1982,14 @@
|
|
|
1970
1982
|
|
|
1971
1983
|
|
|
1972
1984
|
|
|
1985
|
+
|
|
1986
|
+
|
|
1973
1987
|
|
|
1974
1988
|
|
|
1975
1989
|
<li class="md-nav__item md-nav__item--nested">
|
|
1976
1990
|
|
|
1977
1991
|
|
|
1978
1992
|
|
|
1979
|
-
|
|
1980
1993
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1981
1994
|
|
|
1982
1995
|
|
|
@@ -2346,13 +2359,14 @@
|
|
|
2346
2359
|
|
|
2347
2360
|
|
|
2348
2361
|
|
|
2362
|
+
|
|
2363
|
+
|
|
2349
2364
|
|
|
2350
2365
|
|
|
2351
2366
|
<li class="md-nav__item md-nav__item--nested">
|
|
2352
2367
|
|
|
2353
2368
|
|
|
2354
2369
|
|
|
2355
|
-
|
|
2356
2370
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2357
2371
|
|
|
2358
2372
|
|
|
@@ -2383,13 +2397,14 @@
|
|
|
2383
2397
|
|
|
2384
2398
|
|
|
2385
2399
|
|
|
2400
|
+
|
|
2401
|
+
|
|
2386
2402
|
|
|
2387
2403
|
|
|
2388
2404
|
<li class="md-nav__item md-nav__item--nested">
|
|
2389
2405
|
|
|
2390
2406
|
|
|
2391
2407
|
|
|
2392
|
-
|
|
2393
2408
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2394
2409
|
|
|
2395
2410
|
|
|
@@ -2449,13 +2464,14 @@
|
|
|
2449
2464
|
|
|
2450
2465
|
|
|
2451
2466
|
|
|
2467
|
+
|
|
2468
|
+
|
|
2452
2469
|
|
|
2453
2470
|
|
|
2454
2471
|
<li class="md-nav__item md-nav__item--nested">
|
|
2455
2472
|
|
|
2456
2473
|
|
|
2457
2474
|
|
|
2458
|
-
|
|
2459
2475
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2460
2476
|
|
|
2461
2477
|
|
|
@@ -2599,13 +2615,14 @@
|
|
|
2599
2615
|
|
|
2600
2616
|
|
|
2601
2617
|
|
|
2618
|
+
|
|
2619
|
+
|
|
2602
2620
|
|
|
2603
2621
|
|
|
2604
2622
|
<li class="md-nav__item md-nav__item--nested">
|
|
2605
2623
|
|
|
2606
2624
|
|
|
2607
2625
|
|
|
2608
|
-
|
|
2609
2626
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2610
2627
|
|
|
2611
2628
|
|
|
@@ -2783,13 +2800,14 @@
|
|
|
2783
2800
|
|
|
2784
2801
|
|
|
2785
2802
|
|
|
2803
|
+
|
|
2804
|
+
|
|
2786
2805
|
|
|
2787
2806
|
|
|
2788
2807
|
<li class="md-nav__item md-nav__item--nested">
|
|
2789
2808
|
|
|
2790
2809
|
|
|
2791
2810
|
|
|
2792
|
-
|
|
2793
2811
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2794
2812
|
|
|
2795
2813
|
|
|
@@ -3004,13 +3022,14 @@
|
|
|
3004
3022
|
|
|
3005
3023
|
|
|
3006
3024
|
|
|
3025
|
+
|
|
3026
|
+
|
|
3007
3027
|
|
|
3008
3028
|
|
|
3009
3029
|
<li class="md-nav__item md-nav__item--nested">
|
|
3010
3030
|
|
|
3011
3031
|
|
|
3012
3032
|
|
|
3013
|
-
|
|
3014
3033
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
3015
3034
|
|
|
3016
3035
|
|
|
@@ -3485,13 +3504,14 @@
|
|
|
3485
3504
|
|
|
3486
3505
|
|
|
3487
3506
|
|
|
3507
|
+
|
|
3508
|
+
|
|
3488
3509
|
|
|
3489
3510
|
|
|
3490
3511
|
<li class="md-nav__item md-nav__item--nested">
|
|
3491
3512
|
|
|
3492
3513
|
|
|
3493
3514
|
|
|
3494
|
-
|
|
3495
3515
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3496
3516
|
|
|
3497
3517
|
|
|
@@ -3614,13 +3634,14 @@
|
|
|
3614
3634
|
|
|
3615
3635
|
|
|
3616
3636
|
|
|
3637
|
+
|
|
3638
|
+
|
|
3617
3639
|
|
|
3618
3640
|
|
|
3619
3641
|
<li class="md-nav__item md-nav__item--nested">
|
|
3620
3642
|
|
|
3621
3643
|
|
|
3622
3644
|
|
|
3623
|
-
|
|
3624
3645
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3625
3646
|
|
|
3626
3647
|
|
|
@@ -3848,13 +3869,14 @@
|
|
|
3848
3869
|
|
|
3849
3870
|
|
|
3850
3871
|
|
|
3872
|
+
|
|
3873
|
+
|
|
3851
3874
|
|
|
3852
3875
|
|
|
3853
3876
|
<li class="md-nav__item md-nav__item--nested">
|
|
3854
3877
|
|
|
3855
3878
|
|
|
3856
3879
|
|
|
3857
|
-
|
|
3858
3880
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3859
3881
|
|
|
3860
3882
|
|
|
@@ -3935,13 +3957,14 @@
|
|
|
3935
3957
|
|
|
3936
3958
|
|
|
3937
3959
|
|
|
3960
|
+
|
|
3961
|
+
|
|
3938
3962
|
|
|
3939
3963
|
|
|
3940
3964
|
<li class="md-nav__item md-nav__item--nested">
|
|
3941
3965
|
|
|
3942
3966
|
|
|
3943
3967
|
|
|
3944
|
-
|
|
3945
3968
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3946
3969
|
|
|
3947
3970
|
|
|
@@ -4093,13 +4116,14 @@
|
|
|
4093
4116
|
|
|
4094
4117
|
|
|
4095
4118
|
|
|
4119
|
+
|
|
4120
|
+
|
|
4096
4121
|
|
|
4097
4122
|
|
|
4098
4123
|
<li class="md-nav__item md-nav__item--nested">
|
|
4099
4124
|
|
|
4100
4125
|
|
|
4101
4126
|
|
|
4102
|
-
|
|
4103
4127
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
4104
4128
|
|
|
4105
4129
|
|
|
@@ -4298,13 +4322,14 @@
|
|
|
4298
4322
|
|
|
4299
4323
|
|
|
4300
4324
|
|
|
4325
|
+
|
|
4326
|
+
|
|
4301
4327
|
|
|
4302
4328
|
|
|
4303
4329
|
<li class="md-nav__item md-nav__item--nested">
|
|
4304
4330
|
|
|
4305
4331
|
|
|
4306
4332
|
|
|
4307
|
-
|
|
4308
4333
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4309
4334
|
|
|
4310
4335
|
|
|
@@ -4393,13 +4418,14 @@
|
|
|
4393
4418
|
|
|
4394
4419
|
|
|
4395
4420
|
|
|
4421
|
+
|
|
4422
|
+
|
|
4396
4423
|
|
|
4397
4424
|
|
|
4398
4425
|
<li class="md-nav__item md-nav__item--nested">
|
|
4399
4426
|
|
|
4400
4427
|
|
|
4401
4428
|
|
|
4402
|
-
|
|
4403
4429
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4404
4430
|
|
|
4405
4431
|
|
|
@@ -4593,13 +4619,14 @@
|
|
|
4593
4619
|
|
|
4594
4620
|
|
|
4595
4621
|
|
|
4622
|
+
|
|
4623
|
+
|
|
4596
4624
|
|
|
4597
4625
|
|
|
4598
4626
|
<li class="md-nav__item md-nav__item--nested">
|
|
4599
4627
|
|
|
4600
4628
|
|
|
4601
4629
|
|
|
4602
|
-
|
|
4603
4630
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4604
4631
|
|
|
4605
4632
|
|
|
@@ -4814,13 +4841,14 @@
|
|
|
4814
4841
|
|
|
4815
4842
|
|
|
4816
4843
|
|
|
4844
|
+
|
|
4845
|
+
|
|
4817
4846
|
|
|
4818
4847
|
|
|
4819
4848
|
<li class="md-nav__item md-nav__item--nested">
|
|
4820
4849
|
|
|
4821
4850
|
|
|
4822
4851
|
|
|
4823
|
-
|
|
4824
4852
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4825
4853
|
|
|
4826
4854
|
|
|
@@ -4937,16 +4965,14 @@
|
|
|
4937
4965
|
|
|
4938
4966
|
|
|
4939
4967
|
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
4968
|
|
|
4943
4969
|
|
|
4944
4970
|
|
|
4945
|
-
|
|
4971
|
+
|
|
4972
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4946
4973
|
|
|
4947
4974
|
|
|
4948
4975
|
|
|
4949
|
-
|
|
4950
4976
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4951
4977
|
|
|
4952
4978
|
|
|
@@ -4963,7 +4989,7 @@
|
|
|
4963
4989
|
</a>
|
|
4964
4990
|
|
|
4965
4991
|
|
|
4966
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4992
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4967
4993
|
<span class="md-nav__icon md-icon"></span>
|
|
4968
4994
|
</label>
|
|
4969
4995
|
|
|
@@ -4985,13 +5011,14 @@
|
|
|
4985
5011
|
|
|
4986
5012
|
|
|
4987
5013
|
|
|
5014
|
+
|
|
5015
|
+
|
|
4988
5016
|
|
|
4989
5017
|
|
|
4990
5018
|
<li class="md-nav__item md-nav__item--nested">
|
|
4991
5019
|
|
|
4992
5020
|
|
|
4993
5021
|
|
|
4994
|
-
|
|
4995
5022
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4996
5023
|
|
|
4997
5024
|
|
|
@@ -5059,13 +5086,14 @@
|
|
|
5059
5086
|
|
|
5060
5087
|
|
|
5061
5088
|
|
|
5089
|
+
|
|
5090
|
+
|
|
5062
5091
|
|
|
5063
5092
|
|
|
5064
5093
|
<li class="md-nav__item md-nav__item--nested">
|
|
5065
5094
|
|
|
5066
5095
|
|
|
5067
5096
|
|
|
5068
|
-
|
|
5069
5097
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
5070
5098
|
|
|
5071
5099
|
|
|
@@ -5146,13 +5174,14 @@
|
|
|
5146
5174
|
|
|
5147
5175
|
|
|
5148
5176
|
|
|
5177
|
+
|
|
5178
|
+
|
|
5149
5179
|
|
|
5150
5180
|
|
|
5151
5181
|
<li class="md-nav__item md-nav__item--nested">
|
|
5152
5182
|
|
|
5153
5183
|
|
|
5154
5184
|
|
|
5155
|
-
|
|
5156
5185
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
5157
5186
|
|
|
5158
5187
|
|
|
@@ -5262,13 +5291,14 @@
|
|
|
5262
5291
|
|
|
5263
5292
|
|
|
5264
5293
|
|
|
5294
|
+
|
|
5295
|
+
|
|
5265
5296
|
|
|
5266
5297
|
|
|
5267
5298
|
<li class="md-nav__item md-nav__item--nested">
|
|
5268
5299
|
|
|
5269
5300
|
|
|
5270
5301
|
|
|
5271
|
-
|
|
5272
5302
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5273
5303
|
|
|
5274
5304
|
|
|
@@ -5454,13 +5484,14 @@
|
|
|
5454
5484
|
|
|
5455
5485
|
|
|
5456
5486
|
|
|
5487
|
+
|
|
5488
|
+
|
|
5457
5489
|
|
|
5458
5490
|
|
|
5459
5491
|
<li class="md-nav__item md-nav__item--nested">
|
|
5460
5492
|
|
|
5461
5493
|
|
|
5462
5494
|
|
|
5463
|
-
|
|
5464
5495
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5465
5496
|
|
|
5466
5497
|
|
|
@@ -5570,13 +5601,14 @@
|
|
|
5570
5601
|
|
|
5571
5602
|
|
|
5572
5603
|
|
|
5604
|
+
|
|
5605
|
+
|
|
5573
5606
|
|
|
5574
5607
|
|
|
5575
5608
|
<li class="md-nav__item md-nav__item--nested">
|
|
5576
5609
|
|
|
5577
5610
|
|
|
5578
5611
|
|
|
5579
|
-
|
|
5580
5612
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5581
5613
|
|
|
5582
5614
|
|
|
@@ -5833,13 +5865,14 @@
|
|
|
5833
5865
|
|
|
5834
5866
|
|
|
5835
5867
|
|
|
5868
|
+
|
|
5869
|
+
|
|
5836
5870
|
|
|
5837
5871
|
|
|
5838
5872
|
<li class="md-nav__item md-nav__item--nested">
|
|
5839
5873
|
|
|
5840
5874
|
|
|
5841
5875
|
|
|
5842
|
-
|
|
5843
5876
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5844
5877
|
|
|
5845
5878
|
|
|
@@ -6012,13 +6045,14 @@
|
|
|
6012
6045
|
|
|
6013
6046
|
|
|
6014
6047
|
|
|
6048
|
+
|
|
6049
|
+
|
|
6015
6050
|
|
|
6016
6051
|
|
|
6017
6052
|
<li class="md-nav__item md-nav__item--nested">
|
|
6018
6053
|
|
|
6019
6054
|
|
|
6020
6055
|
|
|
6021
|
-
|
|
6022
6056
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
6023
6057
|
|
|
6024
6058
|
|
|
@@ -6540,13 +6574,14 @@
|
|
|
6540
6574
|
|
|
6541
6575
|
|
|
6542
6576
|
|
|
6577
|
+
|
|
6578
|
+
|
|
6543
6579
|
|
|
6544
6580
|
|
|
6545
6581
|
<li class="md-nav__item md-nav__item--nested">
|
|
6546
6582
|
|
|
6547
6583
|
|
|
6548
6584
|
|
|
6549
|
-
|
|
6550
6585
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6551
6586
|
|
|
6552
6587
|
|
|
@@ -6640,13 +6675,14 @@
|
|
|
6640
6675
|
|
|
6641
6676
|
|
|
6642
6677
|
|
|
6678
|
+
|
|
6679
|
+
|
|
6643
6680
|
|
|
6644
6681
|
|
|
6645
6682
|
<li class="md-nav__item md-nav__item--nested">
|
|
6646
6683
|
|
|
6647
6684
|
|
|
6648
6685
|
|
|
6649
|
-
|
|
6650
6686
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6651
6687
|
|
|
6652
6688
|
|
|
@@ -6777,13 +6813,14 @@
|
|
|
6777
6813
|
|
|
6778
6814
|
|
|
6779
6815
|
|
|
6816
|
+
|
|
6817
|
+
|
|
6780
6818
|
|
|
6781
6819
|
|
|
6782
6820
|
<li class="md-nav__item md-nav__item--nested">
|
|
6783
6821
|
|
|
6784
6822
|
|
|
6785
6823
|
|
|
6786
|
-
|
|
6787
6824
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6788
6825
|
|
|
6789
6826
|
|
|
@@ -6851,13 +6888,14 @@
|
|
|
6851
6888
|
|
|
6852
6889
|
|
|
6853
6890
|
|
|
6891
|
+
|
|
6892
|
+
|
|
6854
6893
|
|
|
6855
6894
|
|
|
6856
6895
|
<li class="md-nav__item md-nav__item--nested">
|
|
6857
6896
|
|
|
6858
6897
|
|
|
6859
6898
|
|
|
6860
|
-
|
|
6861
6899
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6862
6900
|
|
|
6863
6901
|
|
|
@@ -7062,11 +7100,11 @@
|
|
|
7062
7100
|
|
|
7063
7101
|
|
|
7064
7102
|
<li class="md-nav__item">
|
|
7065
|
-
<a href="../../../development/core/
|
|
7103
|
+
<a href="../../../development/core/generic-views.html" class="md-nav__link">
|
|
7066
7104
|
|
|
7067
7105
|
|
|
7068
7106
|
<span class="md-ellipsis">
|
|
7069
|
-
|
|
7107
|
+
Generic Views
|
|
7070
7108
|
</span>
|
|
7071
7109
|
|
|
7072
7110
|
|
|
@@ -7083,11 +7121,11 @@
|
|
|
7083
7121
|
|
|
7084
7122
|
|
|
7085
7123
|
<li class="md-nav__item">
|
|
7086
|
-
<a href="../../../development/core/
|
|
7124
|
+
<a href="../../../development/core/homepage.html" class="md-nav__link">
|
|
7087
7125
|
|
|
7088
7126
|
|
|
7089
7127
|
<span class="md-ellipsis">
|
|
7090
|
-
|
|
7128
|
+
Home Page Panels
|
|
7091
7129
|
</span>
|
|
7092
7130
|
|
|
7093
7131
|
|
|
@@ -7104,11 +7142,11 @@
|
|
|
7104
7142
|
|
|
7105
7143
|
|
|
7106
7144
|
<li class="md-nav__item">
|
|
7107
|
-
<a href="../../../development/core/
|
|
7145
|
+
<a href="../../../development/core/model-checklist.html" class="md-nav__link">
|
|
7108
7146
|
|
|
7109
7147
|
|
|
7110
7148
|
<span class="md-ellipsis">
|
|
7111
|
-
|
|
7149
|
+
Model Development Checklist
|
|
7112
7150
|
</span>
|
|
7113
7151
|
|
|
7114
7152
|
|
|
@@ -7331,16 +7369,14 @@
|
|
|
7331
7369
|
|
|
7332
7370
|
|
|
7333
7371
|
|
|
7334
|
-
|
|
7335
|
-
|
|
7336
7372
|
|
|
7337
7373
|
|
|
7338
7374
|
|
|
7339
|
-
|
|
7375
|
+
|
|
7376
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7340
7377
|
|
|
7341
7378
|
|
|
7342
7379
|
|
|
7343
|
-
|
|
7344
7380
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7345
7381
|
|
|
7346
7382
|
|
|
@@ -7357,7 +7393,7 @@
|
|
|
7357
7393
|
</a>
|
|
7358
7394
|
|
|
7359
7395
|
|
|
7360
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7396
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7361
7397
|
<span class="md-nav__icon md-icon"></span>
|
|
7362
7398
|
</label>
|
|
7363
7399
|
|
|
@@ -7596,16 +7632,14 @@
|
|
|
7596
7632
|
|
|
7597
7633
|
|
|
7598
7634
|
|
|
7599
|
-
|
|
7600
|
-
|
|
7601
7635
|
|
|
7602
7636
|
|
|
7603
7637
|
|
|
7604
|
-
|
|
7638
|
+
|
|
7639
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7605
7640
|
|
|
7606
7641
|
|
|
7607
7642
|
|
|
7608
|
-
|
|
7609
7643
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7610
7644
|
|
|
7611
7645
|
|
|
@@ -7622,7 +7656,7 @@
|
|
|
7622
7656
|
</a>
|
|
7623
7657
|
|
|
7624
7658
|
|
|
7625
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7659
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7626
7660
|
<span class="md-nav__icon md-icon"></span>
|
|
7627
7661
|
</label>
|
|
7628
7662
|
|
|
@@ -7644,13 +7678,14 @@
|
|
|
7644
7678
|
|
|
7645
7679
|
|
|
7646
7680
|
|
|
7681
|
+
|
|
7682
|
+
|
|
7647
7683
|
|
|
7648
7684
|
|
|
7649
7685
|
<li class="md-nav__item md-nav__item--nested">
|
|
7650
7686
|
|
|
7651
7687
|
|
|
7652
7688
|
|
|
7653
|
-
|
|
7654
7689
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7655
7690
|
|
|
7656
7691
|
|
|
@@ -8572,9 +8607,9 @@
|
|
|
8572
8607
|
<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>
|
|
8573
8608
|
|
|
8574
8609
|
|
|
8575
|
-
<script src="../../../assets/javascripts/bundle.
|
|
8610
|
+
<script src="../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8576
8611
|
|
|
8577
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8612
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8578
8613
|
|
|
8579
8614
|
|
|
8580
8615
|
</body>
|