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
|
|
|
@@ -488,13 +490,14 @@
|
|
|
488
490
|
|
|
489
491
|
|
|
490
492
|
|
|
493
|
+
|
|
494
|
+
|
|
491
495
|
|
|
492
496
|
|
|
493
497
|
<li class="md-nav__item md-nav__item--nested">
|
|
494
498
|
|
|
495
499
|
|
|
496
500
|
|
|
497
|
-
|
|
498
501
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
|
|
499
502
|
|
|
500
503
|
|
|
@@ -745,13 +748,14 @@
|
|
|
745
748
|
|
|
746
749
|
|
|
747
750
|
|
|
751
|
+
|
|
752
|
+
|
|
748
753
|
|
|
749
754
|
|
|
750
755
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
751
756
|
|
|
752
757
|
|
|
753
758
|
|
|
754
|
-
|
|
755
759
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" checked>
|
|
756
760
|
|
|
757
761
|
|
|
@@ -826,13 +830,14 @@
|
|
|
826
830
|
|
|
827
831
|
|
|
828
832
|
|
|
833
|
+
|
|
834
|
+
|
|
829
835
|
|
|
830
836
|
|
|
831
837
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
832
838
|
|
|
833
839
|
|
|
834
840
|
|
|
835
|
-
|
|
836
841
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" checked>
|
|
837
842
|
|
|
838
843
|
|
|
@@ -1001,13 +1006,14 @@
|
|
|
1001
1006
|
|
|
1002
1007
|
|
|
1003
1008
|
|
|
1009
|
+
|
|
1010
|
+
|
|
1004
1011
|
|
|
1005
1012
|
|
|
1006
1013
|
<li class="md-nav__item md-nav__item--nested">
|
|
1007
1014
|
|
|
1008
1015
|
|
|
1009
1016
|
|
|
1010
|
-
|
|
1011
1017
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
|
|
1012
1018
|
|
|
1013
1019
|
|
|
@@ -1154,13 +1160,14 @@
|
|
|
1154
1160
|
|
|
1155
1161
|
|
|
1156
1162
|
|
|
1163
|
+
|
|
1164
|
+
|
|
1157
1165
|
|
|
1158
1166
|
|
|
1159
1167
|
<li class="md-nav__item md-nav__item--nested">
|
|
1160
1168
|
|
|
1161
1169
|
|
|
1162
1170
|
|
|
1163
|
-
|
|
1164
1171
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1165
1172
|
|
|
1166
1173
|
|
|
@@ -1241,13 +1248,14 @@
|
|
|
1241
1248
|
|
|
1242
1249
|
|
|
1243
1250
|
|
|
1251
|
+
|
|
1252
|
+
|
|
1244
1253
|
|
|
1245
1254
|
|
|
1246
1255
|
<li class="md-nav__item md-nav__item--nested">
|
|
1247
1256
|
|
|
1248
1257
|
|
|
1249
1258
|
|
|
1250
|
-
|
|
1251
1259
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1252
1260
|
|
|
1253
1261
|
|
|
@@ -1349,13 +1357,14 @@
|
|
|
1349
1357
|
|
|
1350
1358
|
|
|
1351
1359
|
|
|
1360
|
+
|
|
1361
|
+
|
|
1352
1362
|
|
|
1353
1363
|
|
|
1354
1364
|
<li class="md-nav__item md-nav__item--nested">
|
|
1355
1365
|
|
|
1356
1366
|
|
|
1357
1367
|
|
|
1358
|
-
|
|
1359
1368
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1360
1369
|
|
|
1361
1370
|
|
|
@@ -1465,13 +1474,14 @@
|
|
|
1465
1474
|
|
|
1466
1475
|
|
|
1467
1476
|
|
|
1477
|
+
|
|
1478
|
+
|
|
1468
1479
|
|
|
1469
1480
|
|
|
1470
1481
|
<li class="md-nav__item md-nav__item--nested">
|
|
1471
1482
|
|
|
1472
1483
|
|
|
1473
1484
|
|
|
1474
|
-
|
|
1475
1485
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1476
1486
|
|
|
1477
1487
|
|
|
@@ -1552,13 +1562,14 @@
|
|
|
1552
1562
|
|
|
1553
1563
|
|
|
1554
1564
|
|
|
1565
|
+
|
|
1566
|
+
|
|
1555
1567
|
|
|
1556
1568
|
|
|
1557
1569
|
<li class="md-nav__item md-nav__item--nested">
|
|
1558
1570
|
|
|
1559
1571
|
|
|
1560
1572
|
|
|
1561
|
-
|
|
1562
1573
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1563
1574
|
|
|
1564
1575
|
|
|
@@ -1773,13 +1784,14 @@
|
|
|
1773
1784
|
|
|
1774
1785
|
|
|
1775
1786
|
|
|
1787
|
+
|
|
1788
|
+
|
|
1776
1789
|
|
|
1777
1790
|
|
|
1778
1791
|
<li class="md-nav__item md-nav__item--nested">
|
|
1779
1792
|
|
|
1780
1793
|
|
|
1781
1794
|
|
|
1782
|
-
|
|
1783
1795
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1784
1796
|
|
|
1785
1797
|
|
|
@@ -1810,13 +1822,14 @@
|
|
|
1810
1822
|
|
|
1811
1823
|
|
|
1812
1824
|
|
|
1825
|
+
|
|
1826
|
+
|
|
1813
1827
|
|
|
1814
1828
|
|
|
1815
1829
|
<li class="md-nav__item md-nav__item--nested">
|
|
1816
1830
|
|
|
1817
1831
|
|
|
1818
1832
|
|
|
1819
|
-
|
|
1820
1833
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1821
1834
|
|
|
1822
1835
|
|
|
@@ -2186,13 +2199,14 @@
|
|
|
2186
2199
|
|
|
2187
2200
|
|
|
2188
2201
|
|
|
2202
|
+
|
|
2203
|
+
|
|
2189
2204
|
|
|
2190
2205
|
|
|
2191
2206
|
<li class="md-nav__item md-nav__item--nested">
|
|
2192
2207
|
|
|
2193
2208
|
|
|
2194
2209
|
|
|
2195
|
-
|
|
2196
2210
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2197
2211
|
|
|
2198
2212
|
|
|
@@ -2223,13 +2237,14 @@
|
|
|
2223
2237
|
|
|
2224
2238
|
|
|
2225
2239
|
|
|
2240
|
+
|
|
2241
|
+
|
|
2226
2242
|
|
|
2227
2243
|
|
|
2228
2244
|
<li class="md-nav__item md-nav__item--nested">
|
|
2229
2245
|
|
|
2230
2246
|
|
|
2231
2247
|
|
|
2232
|
-
|
|
2233
2248
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2234
2249
|
|
|
2235
2250
|
|
|
@@ -2289,13 +2304,14 @@
|
|
|
2289
2304
|
|
|
2290
2305
|
|
|
2291
2306
|
|
|
2307
|
+
|
|
2308
|
+
|
|
2292
2309
|
|
|
2293
2310
|
|
|
2294
2311
|
<li class="md-nav__item md-nav__item--nested">
|
|
2295
2312
|
|
|
2296
2313
|
|
|
2297
2314
|
|
|
2298
|
-
|
|
2299
2315
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2300
2316
|
|
|
2301
2317
|
|
|
@@ -2439,13 +2455,14 @@
|
|
|
2439
2455
|
|
|
2440
2456
|
|
|
2441
2457
|
|
|
2458
|
+
|
|
2459
|
+
|
|
2442
2460
|
|
|
2443
2461
|
|
|
2444
2462
|
<li class="md-nav__item md-nav__item--nested">
|
|
2445
2463
|
|
|
2446
2464
|
|
|
2447
2465
|
|
|
2448
|
-
|
|
2449
2466
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2450
2467
|
|
|
2451
2468
|
|
|
@@ -2623,13 +2640,14 @@
|
|
|
2623
2640
|
|
|
2624
2641
|
|
|
2625
2642
|
|
|
2643
|
+
|
|
2644
|
+
|
|
2626
2645
|
|
|
2627
2646
|
|
|
2628
2647
|
<li class="md-nav__item md-nav__item--nested">
|
|
2629
2648
|
|
|
2630
2649
|
|
|
2631
2650
|
|
|
2632
|
-
|
|
2633
2651
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2634
2652
|
|
|
2635
2653
|
|
|
@@ -2844,13 +2862,14 @@
|
|
|
2844
2862
|
|
|
2845
2863
|
|
|
2846
2864
|
|
|
2865
|
+
|
|
2866
|
+
|
|
2847
2867
|
|
|
2848
2868
|
|
|
2849
2869
|
<li class="md-nav__item md-nav__item--nested">
|
|
2850
2870
|
|
|
2851
2871
|
|
|
2852
2872
|
|
|
2853
|
-
|
|
2854
2873
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2855
2874
|
|
|
2856
2875
|
|
|
@@ -3325,13 +3344,14 @@
|
|
|
3325
3344
|
|
|
3326
3345
|
|
|
3327
3346
|
|
|
3347
|
+
|
|
3348
|
+
|
|
3328
3349
|
|
|
3329
3350
|
|
|
3330
3351
|
<li class="md-nav__item md-nav__item--nested">
|
|
3331
3352
|
|
|
3332
3353
|
|
|
3333
3354
|
|
|
3334
|
-
|
|
3335
3355
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3336
3356
|
|
|
3337
3357
|
|
|
@@ -3454,13 +3474,14 @@
|
|
|
3454
3474
|
|
|
3455
3475
|
|
|
3456
3476
|
|
|
3477
|
+
|
|
3478
|
+
|
|
3457
3479
|
|
|
3458
3480
|
|
|
3459
3481
|
<li class="md-nav__item md-nav__item--nested">
|
|
3460
3482
|
|
|
3461
3483
|
|
|
3462
3484
|
|
|
3463
|
-
|
|
3464
3485
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3465
3486
|
|
|
3466
3487
|
|
|
@@ -3688,13 +3709,14 @@
|
|
|
3688
3709
|
|
|
3689
3710
|
|
|
3690
3711
|
|
|
3712
|
+
|
|
3713
|
+
|
|
3691
3714
|
|
|
3692
3715
|
|
|
3693
3716
|
<li class="md-nav__item md-nav__item--nested">
|
|
3694
3717
|
|
|
3695
3718
|
|
|
3696
3719
|
|
|
3697
|
-
|
|
3698
3720
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3699
3721
|
|
|
3700
3722
|
|
|
@@ -3775,13 +3797,14 @@
|
|
|
3775
3797
|
|
|
3776
3798
|
|
|
3777
3799
|
|
|
3800
|
+
|
|
3801
|
+
|
|
3778
3802
|
|
|
3779
3803
|
|
|
3780
3804
|
<li class="md-nav__item md-nav__item--nested">
|
|
3781
3805
|
|
|
3782
3806
|
|
|
3783
3807
|
|
|
3784
|
-
|
|
3785
3808
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3786
3809
|
|
|
3787
3810
|
|
|
@@ -3933,13 +3956,14 @@
|
|
|
3933
3956
|
|
|
3934
3957
|
|
|
3935
3958
|
|
|
3959
|
+
|
|
3960
|
+
|
|
3936
3961
|
|
|
3937
3962
|
|
|
3938
3963
|
<li class="md-nav__item md-nav__item--nested">
|
|
3939
3964
|
|
|
3940
3965
|
|
|
3941
3966
|
|
|
3942
|
-
|
|
3943
3967
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
3944
3968
|
|
|
3945
3969
|
|
|
@@ -4138,13 +4162,14 @@
|
|
|
4138
4162
|
|
|
4139
4163
|
|
|
4140
4164
|
|
|
4165
|
+
|
|
4166
|
+
|
|
4141
4167
|
|
|
4142
4168
|
|
|
4143
4169
|
<li class="md-nav__item md-nav__item--nested">
|
|
4144
4170
|
|
|
4145
4171
|
|
|
4146
4172
|
|
|
4147
|
-
|
|
4148
4173
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4149
4174
|
|
|
4150
4175
|
|
|
@@ -4233,13 +4258,14 @@
|
|
|
4233
4258
|
|
|
4234
4259
|
|
|
4235
4260
|
|
|
4261
|
+
|
|
4262
|
+
|
|
4236
4263
|
|
|
4237
4264
|
|
|
4238
4265
|
<li class="md-nav__item md-nav__item--nested">
|
|
4239
4266
|
|
|
4240
4267
|
|
|
4241
4268
|
|
|
4242
|
-
|
|
4243
4269
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4244
4270
|
|
|
4245
4271
|
|
|
@@ -4433,13 +4459,14 @@
|
|
|
4433
4459
|
|
|
4434
4460
|
|
|
4435
4461
|
|
|
4462
|
+
|
|
4463
|
+
|
|
4436
4464
|
|
|
4437
4465
|
|
|
4438
4466
|
<li class="md-nav__item md-nav__item--nested">
|
|
4439
4467
|
|
|
4440
4468
|
|
|
4441
4469
|
|
|
4442
|
-
|
|
4443
4470
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4444
4471
|
|
|
4445
4472
|
|
|
@@ -4654,13 +4681,14 @@
|
|
|
4654
4681
|
|
|
4655
4682
|
|
|
4656
4683
|
|
|
4684
|
+
|
|
4685
|
+
|
|
4657
4686
|
|
|
4658
4687
|
|
|
4659
4688
|
<li class="md-nav__item md-nav__item--nested">
|
|
4660
4689
|
|
|
4661
4690
|
|
|
4662
4691
|
|
|
4663
|
-
|
|
4664
4692
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4665
4693
|
|
|
4666
4694
|
|
|
@@ -4777,16 +4805,14 @@
|
|
|
4777
4805
|
|
|
4778
4806
|
|
|
4779
4807
|
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
4808
|
|
|
4783
4809
|
|
|
4784
4810
|
|
|
4785
|
-
|
|
4811
|
+
|
|
4812
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4786
4813
|
|
|
4787
4814
|
|
|
4788
4815
|
|
|
4789
|
-
|
|
4790
4816
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4791
4817
|
|
|
4792
4818
|
|
|
@@ -4803,7 +4829,7 @@
|
|
|
4803
4829
|
</a>
|
|
4804
4830
|
|
|
4805
4831
|
|
|
4806
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4832
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4807
4833
|
<span class="md-nav__icon md-icon"></span>
|
|
4808
4834
|
</label>
|
|
4809
4835
|
|
|
@@ -4825,13 +4851,14 @@
|
|
|
4825
4851
|
|
|
4826
4852
|
|
|
4827
4853
|
|
|
4854
|
+
|
|
4855
|
+
|
|
4828
4856
|
|
|
4829
4857
|
|
|
4830
4858
|
<li class="md-nav__item md-nav__item--nested">
|
|
4831
4859
|
|
|
4832
4860
|
|
|
4833
4861
|
|
|
4834
|
-
|
|
4835
4862
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4836
4863
|
|
|
4837
4864
|
|
|
@@ -4899,13 +4926,14 @@
|
|
|
4899
4926
|
|
|
4900
4927
|
|
|
4901
4928
|
|
|
4929
|
+
|
|
4930
|
+
|
|
4902
4931
|
|
|
4903
4932
|
|
|
4904
4933
|
<li class="md-nav__item md-nav__item--nested">
|
|
4905
4934
|
|
|
4906
4935
|
|
|
4907
4936
|
|
|
4908
|
-
|
|
4909
4937
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4910
4938
|
|
|
4911
4939
|
|
|
@@ -4986,13 +5014,14 @@
|
|
|
4986
5014
|
|
|
4987
5015
|
|
|
4988
5016
|
|
|
5017
|
+
|
|
5018
|
+
|
|
4989
5019
|
|
|
4990
5020
|
|
|
4991
5021
|
<li class="md-nav__item md-nav__item--nested">
|
|
4992
5022
|
|
|
4993
5023
|
|
|
4994
5024
|
|
|
4995
|
-
|
|
4996
5025
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
4997
5026
|
|
|
4998
5027
|
|
|
@@ -5102,13 +5131,14 @@
|
|
|
5102
5131
|
|
|
5103
5132
|
|
|
5104
5133
|
|
|
5134
|
+
|
|
5135
|
+
|
|
5105
5136
|
|
|
5106
5137
|
|
|
5107
5138
|
<li class="md-nav__item md-nav__item--nested">
|
|
5108
5139
|
|
|
5109
5140
|
|
|
5110
5141
|
|
|
5111
|
-
|
|
5112
5142
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5113
5143
|
|
|
5114
5144
|
|
|
@@ -5294,13 +5324,14 @@
|
|
|
5294
5324
|
|
|
5295
5325
|
|
|
5296
5326
|
|
|
5327
|
+
|
|
5328
|
+
|
|
5297
5329
|
|
|
5298
5330
|
|
|
5299
5331
|
<li class="md-nav__item md-nav__item--nested">
|
|
5300
5332
|
|
|
5301
5333
|
|
|
5302
5334
|
|
|
5303
|
-
|
|
5304
5335
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5305
5336
|
|
|
5306
5337
|
|
|
@@ -5410,13 +5441,14 @@
|
|
|
5410
5441
|
|
|
5411
5442
|
|
|
5412
5443
|
|
|
5444
|
+
|
|
5445
|
+
|
|
5413
5446
|
|
|
5414
5447
|
|
|
5415
5448
|
<li class="md-nav__item md-nav__item--nested">
|
|
5416
5449
|
|
|
5417
5450
|
|
|
5418
5451
|
|
|
5419
|
-
|
|
5420
5452
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5421
5453
|
|
|
5422
5454
|
|
|
@@ -5673,13 +5705,14 @@
|
|
|
5673
5705
|
|
|
5674
5706
|
|
|
5675
5707
|
|
|
5708
|
+
|
|
5709
|
+
|
|
5676
5710
|
|
|
5677
5711
|
|
|
5678
5712
|
<li class="md-nav__item md-nav__item--nested">
|
|
5679
5713
|
|
|
5680
5714
|
|
|
5681
5715
|
|
|
5682
|
-
|
|
5683
5716
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5684
5717
|
|
|
5685
5718
|
|
|
@@ -5852,13 +5885,14 @@
|
|
|
5852
5885
|
|
|
5853
5886
|
|
|
5854
5887
|
|
|
5888
|
+
|
|
5889
|
+
|
|
5855
5890
|
|
|
5856
5891
|
|
|
5857
5892
|
<li class="md-nav__item md-nav__item--nested">
|
|
5858
5893
|
|
|
5859
5894
|
|
|
5860
5895
|
|
|
5861
|
-
|
|
5862
5896
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5863
5897
|
|
|
5864
5898
|
|
|
@@ -6380,13 +6414,14 @@
|
|
|
6380
6414
|
|
|
6381
6415
|
|
|
6382
6416
|
|
|
6417
|
+
|
|
6418
|
+
|
|
6383
6419
|
|
|
6384
6420
|
|
|
6385
6421
|
<li class="md-nav__item md-nav__item--nested">
|
|
6386
6422
|
|
|
6387
6423
|
|
|
6388
6424
|
|
|
6389
|
-
|
|
6390
6425
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6391
6426
|
|
|
6392
6427
|
|
|
@@ -6480,13 +6515,14 @@
|
|
|
6480
6515
|
|
|
6481
6516
|
|
|
6482
6517
|
|
|
6518
|
+
|
|
6519
|
+
|
|
6483
6520
|
|
|
6484
6521
|
|
|
6485
6522
|
<li class="md-nav__item md-nav__item--nested">
|
|
6486
6523
|
|
|
6487
6524
|
|
|
6488
6525
|
|
|
6489
|
-
|
|
6490
6526
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6491
6527
|
|
|
6492
6528
|
|
|
@@ -6617,13 +6653,14 @@
|
|
|
6617
6653
|
|
|
6618
6654
|
|
|
6619
6655
|
|
|
6656
|
+
|
|
6657
|
+
|
|
6620
6658
|
|
|
6621
6659
|
|
|
6622
6660
|
<li class="md-nav__item md-nav__item--nested">
|
|
6623
6661
|
|
|
6624
6662
|
|
|
6625
6663
|
|
|
6626
|
-
|
|
6627
6664
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6628
6665
|
|
|
6629
6666
|
|
|
@@ -6691,13 +6728,14 @@
|
|
|
6691
6728
|
|
|
6692
6729
|
|
|
6693
6730
|
|
|
6731
|
+
|
|
6732
|
+
|
|
6694
6733
|
|
|
6695
6734
|
|
|
6696
6735
|
<li class="md-nav__item md-nav__item--nested">
|
|
6697
6736
|
|
|
6698
6737
|
|
|
6699
6738
|
|
|
6700
|
-
|
|
6701
6739
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6702
6740
|
|
|
6703
6741
|
|
|
@@ -6902,11 +6940,11 @@
|
|
|
6902
6940
|
|
|
6903
6941
|
|
|
6904
6942
|
<li class="md-nav__item">
|
|
6905
|
-
<a href="../../../../development/core/
|
|
6943
|
+
<a href="../../../../development/core/generic-views.html" class="md-nav__link">
|
|
6906
6944
|
|
|
6907
6945
|
|
|
6908
6946
|
<span class="md-ellipsis">
|
|
6909
|
-
|
|
6947
|
+
Generic Views
|
|
6910
6948
|
</span>
|
|
6911
6949
|
|
|
6912
6950
|
|
|
@@ -6923,11 +6961,11 @@
|
|
|
6923
6961
|
|
|
6924
6962
|
|
|
6925
6963
|
<li class="md-nav__item">
|
|
6926
|
-
<a href="../../../../development/core/
|
|
6964
|
+
<a href="../../../../development/core/homepage.html" class="md-nav__link">
|
|
6927
6965
|
|
|
6928
6966
|
|
|
6929
6967
|
<span class="md-ellipsis">
|
|
6930
|
-
|
|
6968
|
+
Home Page Panels
|
|
6931
6969
|
</span>
|
|
6932
6970
|
|
|
6933
6971
|
|
|
@@ -6944,11 +6982,11 @@
|
|
|
6944
6982
|
|
|
6945
6983
|
|
|
6946
6984
|
<li class="md-nav__item">
|
|
6947
|
-
<a href="../../../../development/core/
|
|
6985
|
+
<a href="../../../../development/core/model-checklist.html" class="md-nav__link">
|
|
6948
6986
|
|
|
6949
6987
|
|
|
6950
6988
|
<span class="md-ellipsis">
|
|
6951
|
-
|
|
6989
|
+
Model Development Checklist
|
|
6952
6990
|
</span>
|
|
6953
6991
|
|
|
6954
6992
|
|
|
@@ -7171,16 +7209,14 @@
|
|
|
7171
7209
|
|
|
7172
7210
|
|
|
7173
7211
|
|
|
7174
|
-
|
|
7175
|
-
|
|
7176
7212
|
|
|
7177
7213
|
|
|
7178
7214
|
|
|
7179
|
-
|
|
7215
|
+
|
|
7216
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7180
7217
|
|
|
7181
7218
|
|
|
7182
7219
|
|
|
7183
|
-
|
|
7184
7220
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7185
7221
|
|
|
7186
7222
|
|
|
@@ -7197,7 +7233,7 @@
|
|
|
7197
7233
|
</a>
|
|
7198
7234
|
|
|
7199
7235
|
|
|
7200
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7236
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7201
7237
|
<span class="md-nav__icon md-icon"></span>
|
|
7202
7238
|
</label>
|
|
7203
7239
|
|
|
@@ -7436,16 +7472,14 @@
|
|
|
7436
7472
|
|
|
7437
7473
|
|
|
7438
7474
|
|
|
7439
|
-
|
|
7440
|
-
|
|
7441
7475
|
|
|
7442
7476
|
|
|
7443
7477
|
|
|
7444
|
-
|
|
7478
|
+
|
|
7479
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7445
7480
|
|
|
7446
7481
|
|
|
7447
7482
|
|
|
7448
|
-
|
|
7449
7483
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7450
7484
|
|
|
7451
7485
|
|
|
@@ -7462,7 +7496,7 @@
|
|
|
7462
7496
|
</a>
|
|
7463
7497
|
|
|
7464
7498
|
|
|
7465
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7499
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7466
7500
|
<span class="md-nav__icon md-icon"></span>
|
|
7467
7501
|
</label>
|
|
7468
7502
|
|
|
@@ -7484,13 +7518,14 @@
|
|
|
7484
7518
|
|
|
7485
7519
|
|
|
7486
7520
|
|
|
7521
|
+
|
|
7522
|
+
|
|
7487
7523
|
|
|
7488
7524
|
|
|
7489
7525
|
<li class="md-nav__item md-nav__item--nested">
|
|
7490
7526
|
|
|
7491
7527
|
|
|
7492
7528
|
|
|
7493
|
-
|
|
7494
7529
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7495
7530
|
|
|
7496
7531
|
|
|
@@ -8133,9 +8168,9 @@
|
|
|
8133
8168
|
<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>
|
|
8134
8169
|
|
|
8135
8170
|
|
|
8136
|
-
<script src="../../../../assets/javascripts/bundle.
|
|
8171
|
+
<script src="../../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8137
8172
|
|
|
8138
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8173
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8139
8174
|
|
|
8140
8175
|
|
|
8141
8176
|
</body>
|