nautobot 2.2.0__py3-none-any.whl → 2.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/__init__.py +31 -0
- nautobot/circuits/apps.py +1 -1
- nautobot/core/api/routers.py +25 -0
- nautobot/core/cli/__init__.py +18 -11
- nautobot/core/constants.py +85 -0
- nautobot/core/forms/widgets.py +1 -2
- nautobot/core/graphql/schema.py +1 -0
- nautobot/core/models/__init__.py +1 -0
- nautobot/core/settings.py +23 -3
- nautobot/core/settings.yaml +20 -0
- nautobot/core/signals.py +1 -0
- nautobot/core/templates/generic/object_retrieve.html +2 -2
- nautobot/core/templates/inc/javascript.html +4 -4
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/nautobot_config.py.j2 +14 -1
- nautobot/core/testing/__init__.py +1 -1
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/test_views.py +22 -0
- nautobot/core/utils/data.py +1 -2
- nautobot/core/utils/lookup.py +2 -0
- nautobot/core/views/generic.py +1 -3
- nautobot/core/views/mixins.py +0 -1
- nautobot/core/views/renderers.py +7 -5
- nautobot/dcim/apps.py +8 -4
- nautobot/dcim/elevations.py +5 -1
- nautobot/dcim/tables/devices.py +1 -1
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +12 -4
- nautobot/dcim/templates/dcim/device.html +1 -1
- nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
- nautobot/dcim/tests/test_api.py +36 -0
- nautobot/dcim/tests/test_signals.py +1 -1
- nautobot/dcim/views.py +6 -0
- nautobot/extras/api/serializers.py +20 -1
- nautobot/extras/apps.py +7 -0
- nautobot/extras/context_managers.py +15 -4
- nautobot/extras/filters/customfields.py +14 -9
- nautobot/extras/filters/mixins.py +6 -1
- nautobot/extras/health_checks.py +1 -0
- nautobot/extras/jobs.py +1 -0
- nautobot/extras/managers.py +1 -2
- nautobot/extras/models/contacts.py +1 -0
- nautobot/extras/models/customfields.py +25 -2
- nautobot/extras/models/datasources.py +1 -0
- nautobot/extras/models/mixins.py +1 -0
- nautobot/extras/plugins/__init__.py +2 -1
- nautobot/extras/querysets.py +1 -2
- nautobot/extras/secrets/providers.py +1 -0
- nautobot/extras/signals.py +15 -5
- nautobot/extras/tasks.py +70 -17
- nautobot/extras/tests/test_api.py +0 -4
- nautobot/extras/tests/test_customfields.py +72 -9
- nautobot/extras/views.py +8 -7
- nautobot/ipam/api/serializers.py +10 -0
- nautobot/ipam/apps.py +3 -2
- nautobot/project-static/docs/404.html +102 -70
- nautobot/project-static/docs/apps/index.html +103 -68
- nautobot/project-static/docs/apps/nautobot-apps.html +103 -68
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +141 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +141 -69
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +104 -69
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +103 -68
- nautobot/project-static/docs/development/apps/api/configuration-view.html +103 -68
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/global-search.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/graphql.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +103 -68
- nautobot/project-static/docs/development/apps/api/prometheus.html +103 -68
- nautobot/project-static/docs/development/apps/api/setup.html +103 -68
- nautobot/project-static/docs/development/apps/api/testing.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/base-template.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/notes.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/urls.html +103 -68
- nautobot/project-static/docs/development/apps/index.html +103 -68
- nautobot/project-static/docs/development/apps/migration/code-updates.html +103 -68
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +103 -68
- nautobot/project-static/docs/development/apps/migration/from-v1.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +103 -68
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +103 -68
- nautobot/project-static/docs/development/core/application-registry.html +103 -68
- nautobot/project-static/docs/development/core/best-practices.html +121 -76
- nautobot/project-static/docs/development/core/bootstrap-ui.html +103 -68
- nautobot/project-static/docs/development/core/caching.html +103 -68
- nautobot/project-static/docs/development/core/controllers.html +106 -71
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +103 -68
- nautobot/project-static/docs/development/core/extending-models.html +13 -8187
- nautobot/project-static/docs/development/core/generic-views.html +118 -83
- nautobot/project-static/docs/development/core/getting-started.html +103 -68
- nautobot/project-static/docs/development/core/homepage.html +121 -86
- nautobot/project-static/docs/development/core/index.html +103 -68
- nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
- nautobot/project-static/docs/development/core/model-features.html +106 -71
- nautobot/project-static/docs/development/core/natural-keys.html +103 -68
- nautobot/project-static/docs/development/core/navigation-menu.html +103 -68
- nautobot/project-static/docs/development/core/release-checklist.html +103 -68
- nautobot/project-static/docs/development/core/role-internals.html +103 -68
- nautobot/project-static/docs/development/core/settings.html +103 -68
- nautobot/project-static/docs/development/core/style-guide.html +103 -68
- nautobot/project-static/docs/development/core/templates.html +103 -68
- nautobot/project-static/docs/development/core/testing.html +103 -68
- nautobot/project-static/docs/development/core/user-preferences.html +103 -68
- nautobot/project-static/docs/development/extending-models.html +3 -3
- nautobot/project-static/docs/development/index.html +103 -68
- nautobot/project-static/docs/development/jobs/index.html +104 -69
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +103 -68
- nautobot/project-static/docs/index.html +102 -70
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.0.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.1.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.2.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.3.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.4.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.5.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.6.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.0.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.1.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.2.html +334 -97
- nautobot/project-static/docs/requirements.txt +3 -3
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +258 -258
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +168 -68
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +107 -68
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +106 -71
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/services.html +103 -68
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +103 -68
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +103 -68
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +103 -68
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +114 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +114 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +103 -68
- nautobot/project-static/docs/user-guide/index.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +103 -68
- nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/METADATA +22 -22
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/RECORD +339 -338
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
- nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/NOTICE +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/WHEEL +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/entry_points.txt +0 -0
nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../../../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../../../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../../../../assets/stylesheets/main.bcfcd587.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -401,16 +401,17 @@
|
|
|
401
401
|
|
|
402
402
|
|
|
403
403
|
|
|
404
|
-
|
|
405
|
-
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
406
407
|
|
|
407
408
|
|
|
409
|
+
|
|
408
410
|
|
|
409
411
|
<li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
|
|
410
412
|
|
|
411
413
|
|
|
412
414
|
|
|
413
|
-
|
|
414
415
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
|
|
415
416
|
|
|
416
417
|
|
|
@@ -451,13 +452,14 @@
|
|
|
451
452
|
|
|
452
453
|
|
|
453
454
|
|
|
455
|
+
|
|
456
|
+
|
|
454
457
|
|
|
455
458
|
|
|
456
459
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
457
460
|
|
|
458
461
|
|
|
459
462
|
|
|
460
|
-
|
|
461
463
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" checked>
|
|
462
464
|
|
|
463
465
|
|
|
@@ -488,13 +490,14 @@
|
|
|
488
490
|
|
|
489
491
|
|
|
490
492
|
|
|
493
|
+
|
|
494
|
+
|
|
491
495
|
|
|
492
496
|
|
|
493
497
|
<li class="md-nav__item md-nav__item--nested">
|
|
494
498
|
|
|
495
499
|
|
|
496
500
|
|
|
497
|
-
|
|
498
501
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
|
|
499
502
|
|
|
500
503
|
|
|
@@ -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
|
|
|
@@ -894,13 +899,14 @@
|
|
|
894
899
|
|
|
895
900
|
|
|
896
901
|
|
|
902
|
+
|
|
903
|
+
|
|
897
904
|
|
|
898
905
|
|
|
899
906
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
900
907
|
|
|
901
908
|
|
|
902
909
|
|
|
903
|
-
|
|
904
910
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" checked>
|
|
905
911
|
|
|
906
912
|
|
|
@@ -1147,13 +1153,14 @@
|
|
|
1147
1153
|
|
|
1148
1154
|
|
|
1149
1155
|
|
|
1156
|
+
|
|
1157
|
+
|
|
1150
1158
|
|
|
1151
1159
|
|
|
1152
1160
|
<li class="md-nav__item md-nav__item--nested">
|
|
1153
1161
|
|
|
1154
1162
|
|
|
1155
1163
|
|
|
1156
|
-
|
|
1157
1164
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1158
1165
|
|
|
1159
1166
|
|
|
@@ -1234,13 +1241,14 @@
|
|
|
1234
1241
|
|
|
1235
1242
|
|
|
1236
1243
|
|
|
1244
|
+
|
|
1245
|
+
|
|
1237
1246
|
|
|
1238
1247
|
|
|
1239
1248
|
<li class="md-nav__item md-nav__item--nested">
|
|
1240
1249
|
|
|
1241
1250
|
|
|
1242
1251
|
|
|
1243
|
-
|
|
1244
1252
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1245
1253
|
|
|
1246
1254
|
|
|
@@ -1342,13 +1350,14 @@
|
|
|
1342
1350
|
|
|
1343
1351
|
|
|
1344
1352
|
|
|
1353
|
+
|
|
1354
|
+
|
|
1345
1355
|
|
|
1346
1356
|
|
|
1347
1357
|
<li class="md-nav__item md-nav__item--nested">
|
|
1348
1358
|
|
|
1349
1359
|
|
|
1350
1360
|
|
|
1351
|
-
|
|
1352
1361
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1353
1362
|
|
|
1354
1363
|
|
|
@@ -1458,13 +1467,14 @@
|
|
|
1458
1467
|
|
|
1459
1468
|
|
|
1460
1469
|
|
|
1470
|
+
|
|
1471
|
+
|
|
1461
1472
|
|
|
1462
1473
|
|
|
1463
1474
|
<li class="md-nav__item md-nav__item--nested">
|
|
1464
1475
|
|
|
1465
1476
|
|
|
1466
1477
|
|
|
1467
|
-
|
|
1468
1478
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1469
1479
|
|
|
1470
1480
|
|
|
@@ -1545,13 +1555,14 @@
|
|
|
1545
1555
|
|
|
1546
1556
|
|
|
1547
1557
|
|
|
1558
|
+
|
|
1559
|
+
|
|
1548
1560
|
|
|
1549
1561
|
|
|
1550
1562
|
<li class="md-nav__item md-nav__item--nested">
|
|
1551
1563
|
|
|
1552
1564
|
|
|
1553
1565
|
|
|
1554
|
-
|
|
1555
1566
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1556
1567
|
|
|
1557
1568
|
|
|
@@ -1766,13 +1777,14 @@
|
|
|
1766
1777
|
|
|
1767
1778
|
|
|
1768
1779
|
|
|
1780
|
+
|
|
1781
|
+
|
|
1769
1782
|
|
|
1770
1783
|
|
|
1771
1784
|
<li class="md-nav__item md-nav__item--nested">
|
|
1772
1785
|
|
|
1773
1786
|
|
|
1774
1787
|
|
|
1775
|
-
|
|
1776
1788
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1777
1789
|
|
|
1778
1790
|
|
|
@@ -1803,13 +1815,14 @@
|
|
|
1803
1815
|
|
|
1804
1816
|
|
|
1805
1817
|
|
|
1818
|
+
|
|
1819
|
+
|
|
1806
1820
|
|
|
1807
1821
|
|
|
1808
1822
|
<li class="md-nav__item md-nav__item--nested">
|
|
1809
1823
|
|
|
1810
1824
|
|
|
1811
1825
|
|
|
1812
|
-
|
|
1813
1826
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1814
1827
|
|
|
1815
1828
|
|
|
@@ -2179,13 +2192,14 @@
|
|
|
2179
2192
|
|
|
2180
2193
|
|
|
2181
2194
|
|
|
2195
|
+
|
|
2196
|
+
|
|
2182
2197
|
|
|
2183
2198
|
|
|
2184
2199
|
<li class="md-nav__item md-nav__item--nested">
|
|
2185
2200
|
|
|
2186
2201
|
|
|
2187
2202
|
|
|
2188
|
-
|
|
2189
2203
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2190
2204
|
|
|
2191
2205
|
|
|
@@ -2216,13 +2230,14 @@
|
|
|
2216
2230
|
|
|
2217
2231
|
|
|
2218
2232
|
|
|
2233
|
+
|
|
2234
|
+
|
|
2219
2235
|
|
|
2220
2236
|
|
|
2221
2237
|
<li class="md-nav__item md-nav__item--nested">
|
|
2222
2238
|
|
|
2223
2239
|
|
|
2224
2240
|
|
|
2225
|
-
|
|
2226
2241
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2227
2242
|
|
|
2228
2243
|
|
|
@@ -2282,13 +2297,14 @@
|
|
|
2282
2297
|
|
|
2283
2298
|
|
|
2284
2299
|
|
|
2300
|
+
|
|
2301
|
+
|
|
2285
2302
|
|
|
2286
2303
|
|
|
2287
2304
|
<li class="md-nav__item md-nav__item--nested">
|
|
2288
2305
|
|
|
2289
2306
|
|
|
2290
2307
|
|
|
2291
|
-
|
|
2292
2308
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2293
2309
|
|
|
2294
2310
|
|
|
@@ -2432,13 +2448,14 @@
|
|
|
2432
2448
|
|
|
2433
2449
|
|
|
2434
2450
|
|
|
2451
|
+
|
|
2452
|
+
|
|
2435
2453
|
|
|
2436
2454
|
|
|
2437
2455
|
<li class="md-nav__item md-nav__item--nested">
|
|
2438
2456
|
|
|
2439
2457
|
|
|
2440
2458
|
|
|
2441
|
-
|
|
2442
2459
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2443
2460
|
|
|
2444
2461
|
|
|
@@ -2616,13 +2633,14 @@
|
|
|
2616
2633
|
|
|
2617
2634
|
|
|
2618
2635
|
|
|
2636
|
+
|
|
2637
|
+
|
|
2619
2638
|
|
|
2620
2639
|
|
|
2621
2640
|
<li class="md-nav__item md-nav__item--nested">
|
|
2622
2641
|
|
|
2623
2642
|
|
|
2624
2643
|
|
|
2625
|
-
|
|
2626
2644
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2627
2645
|
|
|
2628
2646
|
|
|
@@ -2837,13 +2855,14 @@
|
|
|
2837
2855
|
|
|
2838
2856
|
|
|
2839
2857
|
|
|
2858
|
+
|
|
2859
|
+
|
|
2840
2860
|
|
|
2841
2861
|
|
|
2842
2862
|
<li class="md-nav__item md-nav__item--nested">
|
|
2843
2863
|
|
|
2844
2864
|
|
|
2845
2865
|
|
|
2846
|
-
|
|
2847
2866
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2848
2867
|
|
|
2849
2868
|
|
|
@@ -3318,13 +3337,14 @@
|
|
|
3318
3337
|
|
|
3319
3338
|
|
|
3320
3339
|
|
|
3340
|
+
|
|
3341
|
+
|
|
3321
3342
|
|
|
3322
3343
|
|
|
3323
3344
|
<li class="md-nav__item md-nav__item--nested">
|
|
3324
3345
|
|
|
3325
3346
|
|
|
3326
3347
|
|
|
3327
|
-
|
|
3328
3348
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3329
3349
|
|
|
3330
3350
|
|
|
@@ -3447,13 +3467,14 @@
|
|
|
3447
3467
|
|
|
3448
3468
|
|
|
3449
3469
|
|
|
3470
|
+
|
|
3471
|
+
|
|
3450
3472
|
|
|
3451
3473
|
|
|
3452
3474
|
<li class="md-nav__item md-nav__item--nested">
|
|
3453
3475
|
|
|
3454
3476
|
|
|
3455
3477
|
|
|
3456
|
-
|
|
3457
3478
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3458
3479
|
|
|
3459
3480
|
|
|
@@ -3681,13 +3702,14 @@
|
|
|
3681
3702
|
|
|
3682
3703
|
|
|
3683
3704
|
|
|
3705
|
+
|
|
3706
|
+
|
|
3684
3707
|
|
|
3685
3708
|
|
|
3686
3709
|
<li class="md-nav__item md-nav__item--nested">
|
|
3687
3710
|
|
|
3688
3711
|
|
|
3689
3712
|
|
|
3690
|
-
|
|
3691
3713
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3692
3714
|
|
|
3693
3715
|
|
|
@@ -3768,13 +3790,14 @@
|
|
|
3768
3790
|
|
|
3769
3791
|
|
|
3770
3792
|
|
|
3793
|
+
|
|
3794
|
+
|
|
3771
3795
|
|
|
3772
3796
|
|
|
3773
3797
|
<li class="md-nav__item md-nav__item--nested">
|
|
3774
3798
|
|
|
3775
3799
|
|
|
3776
3800
|
|
|
3777
|
-
|
|
3778
3801
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3779
3802
|
|
|
3780
3803
|
|
|
@@ -3926,13 +3949,14 @@
|
|
|
3926
3949
|
|
|
3927
3950
|
|
|
3928
3951
|
|
|
3952
|
+
|
|
3953
|
+
|
|
3929
3954
|
|
|
3930
3955
|
|
|
3931
3956
|
<li class="md-nav__item md-nav__item--nested">
|
|
3932
3957
|
|
|
3933
3958
|
|
|
3934
3959
|
|
|
3935
|
-
|
|
3936
3960
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
3937
3961
|
|
|
3938
3962
|
|
|
@@ -4131,13 +4155,14 @@
|
|
|
4131
4155
|
|
|
4132
4156
|
|
|
4133
4157
|
|
|
4158
|
+
|
|
4159
|
+
|
|
4134
4160
|
|
|
4135
4161
|
|
|
4136
4162
|
<li class="md-nav__item md-nav__item--nested">
|
|
4137
4163
|
|
|
4138
4164
|
|
|
4139
4165
|
|
|
4140
|
-
|
|
4141
4166
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4142
4167
|
|
|
4143
4168
|
|
|
@@ -4226,13 +4251,14 @@
|
|
|
4226
4251
|
|
|
4227
4252
|
|
|
4228
4253
|
|
|
4254
|
+
|
|
4255
|
+
|
|
4229
4256
|
|
|
4230
4257
|
|
|
4231
4258
|
<li class="md-nav__item md-nav__item--nested">
|
|
4232
4259
|
|
|
4233
4260
|
|
|
4234
4261
|
|
|
4235
|
-
|
|
4236
4262
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4237
4263
|
|
|
4238
4264
|
|
|
@@ -4426,13 +4452,14 @@
|
|
|
4426
4452
|
|
|
4427
4453
|
|
|
4428
4454
|
|
|
4455
|
+
|
|
4456
|
+
|
|
4429
4457
|
|
|
4430
4458
|
|
|
4431
4459
|
<li class="md-nav__item md-nav__item--nested">
|
|
4432
4460
|
|
|
4433
4461
|
|
|
4434
4462
|
|
|
4435
|
-
|
|
4436
4463
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4437
4464
|
|
|
4438
4465
|
|
|
@@ -4647,13 +4674,14 @@
|
|
|
4647
4674
|
|
|
4648
4675
|
|
|
4649
4676
|
|
|
4677
|
+
|
|
4678
|
+
|
|
4650
4679
|
|
|
4651
4680
|
|
|
4652
4681
|
<li class="md-nav__item md-nav__item--nested">
|
|
4653
4682
|
|
|
4654
4683
|
|
|
4655
4684
|
|
|
4656
|
-
|
|
4657
4685
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4658
4686
|
|
|
4659
4687
|
|
|
@@ -4770,16 +4798,14 @@
|
|
|
4770
4798
|
|
|
4771
4799
|
|
|
4772
4800
|
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
4801
|
|
|
4776
4802
|
|
|
4777
4803
|
|
|
4778
|
-
|
|
4804
|
+
|
|
4805
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4779
4806
|
|
|
4780
4807
|
|
|
4781
4808
|
|
|
4782
|
-
|
|
4783
4809
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4784
4810
|
|
|
4785
4811
|
|
|
@@ -4796,7 +4822,7 @@
|
|
|
4796
4822
|
</a>
|
|
4797
4823
|
|
|
4798
4824
|
|
|
4799
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4825
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4800
4826
|
<span class="md-nav__icon md-icon"></span>
|
|
4801
4827
|
</label>
|
|
4802
4828
|
|
|
@@ -4818,13 +4844,14 @@
|
|
|
4818
4844
|
|
|
4819
4845
|
|
|
4820
4846
|
|
|
4847
|
+
|
|
4848
|
+
|
|
4821
4849
|
|
|
4822
4850
|
|
|
4823
4851
|
<li class="md-nav__item md-nav__item--nested">
|
|
4824
4852
|
|
|
4825
4853
|
|
|
4826
4854
|
|
|
4827
|
-
|
|
4828
4855
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4829
4856
|
|
|
4830
4857
|
|
|
@@ -4892,13 +4919,14 @@
|
|
|
4892
4919
|
|
|
4893
4920
|
|
|
4894
4921
|
|
|
4922
|
+
|
|
4923
|
+
|
|
4895
4924
|
|
|
4896
4925
|
|
|
4897
4926
|
<li class="md-nav__item md-nav__item--nested">
|
|
4898
4927
|
|
|
4899
4928
|
|
|
4900
4929
|
|
|
4901
|
-
|
|
4902
4930
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4903
4931
|
|
|
4904
4932
|
|
|
@@ -4979,13 +5007,14 @@
|
|
|
4979
5007
|
|
|
4980
5008
|
|
|
4981
5009
|
|
|
5010
|
+
|
|
5011
|
+
|
|
4982
5012
|
|
|
4983
5013
|
|
|
4984
5014
|
<li class="md-nav__item md-nav__item--nested">
|
|
4985
5015
|
|
|
4986
5016
|
|
|
4987
5017
|
|
|
4988
|
-
|
|
4989
5018
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
4990
5019
|
|
|
4991
5020
|
|
|
@@ -5095,13 +5124,14 @@
|
|
|
5095
5124
|
|
|
5096
5125
|
|
|
5097
5126
|
|
|
5127
|
+
|
|
5128
|
+
|
|
5098
5129
|
|
|
5099
5130
|
|
|
5100
5131
|
<li class="md-nav__item md-nav__item--nested">
|
|
5101
5132
|
|
|
5102
5133
|
|
|
5103
5134
|
|
|
5104
|
-
|
|
5105
5135
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5106
5136
|
|
|
5107
5137
|
|
|
@@ -5287,13 +5317,14 @@
|
|
|
5287
5317
|
|
|
5288
5318
|
|
|
5289
5319
|
|
|
5320
|
+
|
|
5321
|
+
|
|
5290
5322
|
|
|
5291
5323
|
|
|
5292
5324
|
<li class="md-nav__item md-nav__item--nested">
|
|
5293
5325
|
|
|
5294
5326
|
|
|
5295
5327
|
|
|
5296
|
-
|
|
5297
5328
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5298
5329
|
|
|
5299
5330
|
|
|
@@ -5403,13 +5434,14 @@
|
|
|
5403
5434
|
|
|
5404
5435
|
|
|
5405
5436
|
|
|
5437
|
+
|
|
5438
|
+
|
|
5406
5439
|
|
|
5407
5440
|
|
|
5408
5441
|
<li class="md-nav__item md-nav__item--nested">
|
|
5409
5442
|
|
|
5410
5443
|
|
|
5411
5444
|
|
|
5412
|
-
|
|
5413
5445
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5414
5446
|
|
|
5415
5447
|
|
|
@@ -5666,13 +5698,14 @@
|
|
|
5666
5698
|
|
|
5667
5699
|
|
|
5668
5700
|
|
|
5701
|
+
|
|
5702
|
+
|
|
5669
5703
|
|
|
5670
5704
|
|
|
5671
5705
|
<li class="md-nav__item md-nav__item--nested">
|
|
5672
5706
|
|
|
5673
5707
|
|
|
5674
5708
|
|
|
5675
|
-
|
|
5676
5709
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5677
5710
|
|
|
5678
5711
|
|
|
@@ -5845,13 +5878,14 @@
|
|
|
5845
5878
|
|
|
5846
5879
|
|
|
5847
5880
|
|
|
5881
|
+
|
|
5882
|
+
|
|
5848
5883
|
|
|
5849
5884
|
|
|
5850
5885
|
<li class="md-nav__item md-nav__item--nested">
|
|
5851
5886
|
|
|
5852
5887
|
|
|
5853
5888
|
|
|
5854
|
-
|
|
5855
5889
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5856
5890
|
|
|
5857
5891
|
|
|
@@ -6373,13 +6407,14 @@
|
|
|
6373
6407
|
|
|
6374
6408
|
|
|
6375
6409
|
|
|
6410
|
+
|
|
6411
|
+
|
|
6376
6412
|
|
|
6377
6413
|
|
|
6378
6414
|
<li class="md-nav__item md-nav__item--nested">
|
|
6379
6415
|
|
|
6380
6416
|
|
|
6381
6417
|
|
|
6382
|
-
|
|
6383
6418
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6384
6419
|
|
|
6385
6420
|
|
|
@@ -6473,13 +6508,14 @@
|
|
|
6473
6508
|
|
|
6474
6509
|
|
|
6475
6510
|
|
|
6511
|
+
|
|
6512
|
+
|
|
6476
6513
|
|
|
6477
6514
|
|
|
6478
6515
|
<li class="md-nav__item md-nav__item--nested">
|
|
6479
6516
|
|
|
6480
6517
|
|
|
6481
6518
|
|
|
6482
|
-
|
|
6483
6519
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6484
6520
|
|
|
6485
6521
|
|
|
@@ -6610,13 +6646,14 @@
|
|
|
6610
6646
|
|
|
6611
6647
|
|
|
6612
6648
|
|
|
6649
|
+
|
|
6650
|
+
|
|
6613
6651
|
|
|
6614
6652
|
|
|
6615
6653
|
<li class="md-nav__item md-nav__item--nested">
|
|
6616
6654
|
|
|
6617
6655
|
|
|
6618
6656
|
|
|
6619
|
-
|
|
6620
6657
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6621
6658
|
|
|
6622
6659
|
|
|
@@ -6684,13 +6721,14 @@
|
|
|
6684
6721
|
|
|
6685
6722
|
|
|
6686
6723
|
|
|
6724
|
+
|
|
6725
|
+
|
|
6687
6726
|
|
|
6688
6727
|
|
|
6689
6728
|
<li class="md-nav__item md-nav__item--nested">
|
|
6690
6729
|
|
|
6691
6730
|
|
|
6692
6731
|
|
|
6693
|
-
|
|
6694
6732
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6695
6733
|
|
|
6696
6734
|
|
|
@@ -6895,11 +6933,11 @@
|
|
|
6895
6933
|
|
|
6896
6934
|
|
|
6897
6935
|
<li class="md-nav__item">
|
|
6898
|
-
<a href="../../../../../development/core/
|
|
6936
|
+
<a href="../../../../../development/core/generic-views.html" class="md-nav__link">
|
|
6899
6937
|
|
|
6900
6938
|
|
|
6901
6939
|
<span class="md-ellipsis">
|
|
6902
|
-
|
|
6940
|
+
Generic Views
|
|
6903
6941
|
</span>
|
|
6904
6942
|
|
|
6905
6943
|
|
|
@@ -6916,11 +6954,11 @@
|
|
|
6916
6954
|
|
|
6917
6955
|
|
|
6918
6956
|
<li class="md-nav__item">
|
|
6919
|
-
<a href="../../../../../development/core/
|
|
6957
|
+
<a href="../../../../../development/core/homepage.html" class="md-nav__link">
|
|
6920
6958
|
|
|
6921
6959
|
|
|
6922
6960
|
<span class="md-ellipsis">
|
|
6923
|
-
|
|
6961
|
+
Home Page Panels
|
|
6924
6962
|
</span>
|
|
6925
6963
|
|
|
6926
6964
|
|
|
@@ -6937,11 +6975,11 @@
|
|
|
6937
6975
|
|
|
6938
6976
|
|
|
6939
6977
|
<li class="md-nav__item">
|
|
6940
|
-
<a href="../../../../../development/core/
|
|
6978
|
+
<a href="../../../../../development/core/model-checklist.html" class="md-nav__link">
|
|
6941
6979
|
|
|
6942
6980
|
|
|
6943
6981
|
<span class="md-ellipsis">
|
|
6944
|
-
|
|
6982
|
+
Model Development Checklist
|
|
6945
6983
|
</span>
|
|
6946
6984
|
|
|
6947
6985
|
|
|
@@ -7164,16 +7202,14 @@
|
|
|
7164
7202
|
|
|
7165
7203
|
|
|
7166
7204
|
|
|
7167
|
-
|
|
7168
|
-
|
|
7169
7205
|
|
|
7170
7206
|
|
|
7171
7207
|
|
|
7172
|
-
|
|
7208
|
+
|
|
7209
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7173
7210
|
|
|
7174
7211
|
|
|
7175
7212
|
|
|
7176
|
-
|
|
7177
7213
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7178
7214
|
|
|
7179
7215
|
|
|
@@ -7190,7 +7226,7 @@
|
|
|
7190
7226
|
</a>
|
|
7191
7227
|
|
|
7192
7228
|
|
|
7193
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7229
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7194
7230
|
<span class="md-nav__icon md-icon"></span>
|
|
7195
7231
|
</label>
|
|
7196
7232
|
|
|
@@ -7429,16 +7465,14 @@
|
|
|
7429
7465
|
|
|
7430
7466
|
|
|
7431
7467
|
|
|
7432
|
-
|
|
7433
|
-
|
|
7434
7468
|
|
|
7435
7469
|
|
|
7436
7470
|
|
|
7437
|
-
|
|
7471
|
+
|
|
7472
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7438
7473
|
|
|
7439
7474
|
|
|
7440
7475
|
|
|
7441
|
-
|
|
7442
7476
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7443
7477
|
|
|
7444
7478
|
|
|
@@ -7455,7 +7489,7 @@
|
|
|
7455
7489
|
</a>
|
|
7456
7490
|
|
|
7457
7491
|
|
|
7458
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7492
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7459
7493
|
<span class="md-nav__icon md-icon"></span>
|
|
7460
7494
|
</label>
|
|
7461
7495
|
|
|
@@ -7477,13 +7511,14 @@
|
|
|
7477
7511
|
|
|
7478
7512
|
|
|
7479
7513
|
|
|
7514
|
+
|
|
7515
|
+
|
|
7480
7516
|
|
|
7481
7517
|
|
|
7482
7518
|
<li class="md-nav__item md-nav__item--nested">
|
|
7483
7519
|
|
|
7484
7520
|
|
|
7485
7521
|
|
|
7486
|
-
|
|
7487
7522
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7488
7523
|
|
|
7489
7524
|
|
|
@@ -8045,9 +8080,9 @@
|
|
|
8045
8080
|
<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>
|
|
8046
8081
|
|
|
8047
8082
|
|
|
8048
|
-
<script src="../../../../../assets/javascripts/bundle.
|
|
8083
|
+
<script src="../../../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8049
8084
|
|
|
8050
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8085
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8051
8086
|
|
|
8052
8087
|
|
|
8053
8088
|
</body>
|