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/whats-changed.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
|
|
|
@@ -1273,13 +1279,14 @@
|
|
|
1273
1279
|
|
|
1274
1280
|
|
|
1275
1281
|
|
|
1282
|
+
|
|
1283
|
+
|
|
1276
1284
|
|
|
1277
1285
|
|
|
1278
1286
|
<li class="md-nav__item md-nav__item--nested">
|
|
1279
1287
|
|
|
1280
1288
|
|
|
1281
1289
|
|
|
1282
|
-
|
|
1283
1290
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1284
1291
|
|
|
1285
1292
|
|
|
@@ -1360,13 +1367,14 @@
|
|
|
1360
1367
|
|
|
1361
1368
|
|
|
1362
1369
|
|
|
1370
|
+
|
|
1371
|
+
|
|
1363
1372
|
|
|
1364
1373
|
|
|
1365
1374
|
<li class="md-nav__item md-nav__item--nested">
|
|
1366
1375
|
|
|
1367
1376
|
|
|
1368
1377
|
|
|
1369
|
-
|
|
1370
1378
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1371
1379
|
|
|
1372
1380
|
|
|
@@ -1468,13 +1476,14 @@
|
|
|
1468
1476
|
|
|
1469
1477
|
|
|
1470
1478
|
|
|
1479
|
+
|
|
1480
|
+
|
|
1471
1481
|
|
|
1472
1482
|
|
|
1473
1483
|
<li class="md-nav__item md-nav__item--nested">
|
|
1474
1484
|
|
|
1475
1485
|
|
|
1476
1486
|
|
|
1477
|
-
|
|
1478
1487
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1479
1488
|
|
|
1480
1489
|
|
|
@@ -1584,13 +1593,14 @@
|
|
|
1584
1593
|
|
|
1585
1594
|
|
|
1586
1595
|
|
|
1596
|
+
|
|
1597
|
+
|
|
1587
1598
|
|
|
1588
1599
|
|
|
1589
1600
|
<li class="md-nav__item md-nav__item--nested">
|
|
1590
1601
|
|
|
1591
1602
|
|
|
1592
1603
|
|
|
1593
|
-
|
|
1594
1604
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1595
1605
|
|
|
1596
1606
|
|
|
@@ -1671,13 +1681,14 @@
|
|
|
1671
1681
|
|
|
1672
1682
|
|
|
1673
1683
|
|
|
1684
|
+
|
|
1685
|
+
|
|
1674
1686
|
|
|
1675
1687
|
|
|
1676
1688
|
<li class="md-nav__item md-nav__item--nested">
|
|
1677
1689
|
|
|
1678
1690
|
|
|
1679
1691
|
|
|
1680
|
-
|
|
1681
1692
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1682
1693
|
|
|
1683
1694
|
|
|
@@ -1892,13 +1903,14 @@
|
|
|
1892
1903
|
|
|
1893
1904
|
|
|
1894
1905
|
|
|
1906
|
+
|
|
1907
|
+
|
|
1895
1908
|
|
|
1896
1909
|
|
|
1897
1910
|
<li class="md-nav__item md-nav__item--nested">
|
|
1898
1911
|
|
|
1899
1912
|
|
|
1900
1913
|
|
|
1901
|
-
|
|
1902
1914
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1903
1915
|
|
|
1904
1916
|
|
|
@@ -1929,13 +1941,14 @@
|
|
|
1929
1941
|
|
|
1930
1942
|
|
|
1931
1943
|
|
|
1944
|
+
|
|
1945
|
+
|
|
1932
1946
|
|
|
1933
1947
|
|
|
1934
1948
|
<li class="md-nav__item md-nav__item--nested">
|
|
1935
1949
|
|
|
1936
1950
|
|
|
1937
1951
|
|
|
1938
|
-
|
|
1939
1952
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1940
1953
|
|
|
1941
1954
|
|
|
@@ -2305,13 +2318,14 @@
|
|
|
2305
2318
|
|
|
2306
2319
|
|
|
2307
2320
|
|
|
2321
|
+
|
|
2322
|
+
|
|
2308
2323
|
|
|
2309
2324
|
|
|
2310
2325
|
<li class="md-nav__item md-nav__item--nested">
|
|
2311
2326
|
|
|
2312
2327
|
|
|
2313
2328
|
|
|
2314
|
-
|
|
2315
2329
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2316
2330
|
|
|
2317
2331
|
|
|
@@ -2342,13 +2356,14 @@
|
|
|
2342
2356
|
|
|
2343
2357
|
|
|
2344
2358
|
|
|
2359
|
+
|
|
2360
|
+
|
|
2345
2361
|
|
|
2346
2362
|
|
|
2347
2363
|
<li class="md-nav__item md-nav__item--nested">
|
|
2348
2364
|
|
|
2349
2365
|
|
|
2350
2366
|
|
|
2351
|
-
|
|
2352
2367
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2353
2368
|
|
|
2354
2369
|
|
|
@@ -2408,13 +2423,14 @@
|
|
|
2408
2423
|
|
|
2409
2424
|
|
|
2410
2425
|
|
|
2426
|
+
|
|
2427
|
+
|
|
2411
2428
|
|
|
2412
2429
|
|
|
2413
2430
|
<li class="md-nav__item md-nav__item--nested">
|
|
2414
2431
|
|
|
2415
2432
|
|
|
2416
2433
|
|
|
2417
|
-
|
|
2418
2434
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2419
2435
|
|
|
2420
2436
|
|
|
@@ -2558,13 +2574,14 @@
|
|
|
2558
2574
|
|
|
2559
2575
|
|
|
2560
2576
|
|
|
2577
|
+
|
|
2578
|
+
|
|
2561
2579
|
|
|
2562
2580
|
|
|
2563
2581
|
<li class="md-nav__item md-nav__item--nested">
|
|
2564
2582
|
|
|
2565
2583
|
|
|
2566
2584
|
|
|
2567
|
-
|
|
2568
2585
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2569
2586
|
|
|
2570
2587
|
|
|
@@ -2742,13 +2759,14 @@
|
|
|
2742
2759
|
|
|
2743
2760
|
|
|
2744
2761
|
|
|
2762
|
+
|
|
2763
|
+
|
|
2745
2764
|
|
|
2746
2765
|
|
|
2747
2766
|
<li class="md-nav__item md-nav__item--nested">
|
|
2748
2767
|
|
|
2749
2768
|
|
|
2750
2769
|
|
|
2751
|
-
|
|
2752
2770
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2753
2771
|
|
|
2754
2772
|
|
|
@@ -2963,13 +2981,14 @@
|
|
|
2963
2981
|
|
|
2964
2982
|
|
|
2965
2983
|
|
|
2984
|
+
|
|
2985
|
+
|
|
2966
2986
|
|
|
2967
2987
|
|
|
2968
2988
|
<li class="md-nav__item md-nav__item--nested">
|
|
2969
2989
|
|
|
2970
2990
|
|
|
2971
2991
|
|
|
2972
|
-
|
|
2973
2992
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2974
2993
|
|
|
2975
2994
|
|
|
@@ -3444,13 +3463,14 @@
|
|
|
3444
3463
|
|
|
3445
3464
|
|
|
3446
3465
|
|
|
3466
|
+
|
|
3467
|
+
|
|
3447
3468
|
|
|
3448
3469
|
|
|
3449
3470
|
<li class="md-nav__item md-nav__item--nested">
|
|
3450
3471
|
|
|
3451
3472
|
|
|
3452
3473
|
|
|
3453
|
-
|
|
3454
3474
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3455
3475
|
|
|
3456
3476
|
|
|
@@ -3573,13 +3593,14 @@
|
|
|
3573
3593
|
|
|
3574
3594
|
|
|
3575
3595
|
|
|
3596
|
+
|
|
3597
|
+
|
|
3576
3598
|
|
|
3577
3599
|
|
|
3578
3600
|
<li class="md-nav__item md-nav__item--nested">
|
|
3579
3601
|
|
|
3580
3602
|
|
|
3581
3603
|
|
|
3582
|
-
|
|
3583
3604
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3584
3605
|
|
|
3585
3606
|
|
|
@@ -3807,13 +3828,14 @@
|
|
|
3807
3828
|
|
|
3808
3829
|
|
|
3809
3830
|
|
|
3831
|
+
|
|
3832
|
+
|
|
3810
3833
|
|
|
3811
3834
|
|
|
3812
3835
|
<li class="md-nav__item md-nav__item--nested">
|
|
3813
3836
|
|
|
3814
3837
|
|
|
3815
3838
|
|
|
3816
|
-
|
|
3817
3839
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3818
3840
|
|
|
3819
3841
|
|
|
@@ -3894,13 +3916,14 @@
|
|
|
3894
3916
|
|
|
3895
3917
|
|
|
3896
3918
|
|
|
3919
|
+
|
|
3920
|
+
|
|
3897
3921
|
|
|
3898
3922
|
|
|
3899
3923
|
<li class="md-nav__item md-nav__item--nested">
|
|
3900
3924
|
|
|
3901
3925
|
|
|
3902
3926
|
|
|
3903
|
-
|
|
3904
3927
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3905
3928
|
|
|
3906
3929
|
|
|
@@ -4052,13 +4075,14 @@
|
|
|
4052
4075
|
|
|
4053
4076
|
|
|
4054
4077
|
|
|
4078
|
+
|
|
4079
|
+
|
|
4055
4080
|
|
|
4056
4081
|
|
|
4057
4082
|
<li class="md-nav__item md-nav__item--nested">
|
|
4058
4083
|
|
|
4059
4084
|
|
|
4060
4085
|
|
|
4061
|
-
|
|
4062
4086
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
4063
4087
|
|
|
4064
4088
|
|
|
@@ -4257,13 +4281,14 @@
|
|
|
4257
4281
|
|
|
4258
4282
|
|
|
4259
4283
|
|
|
4284
|
+
|
|
4285
|
+
|
|
4260
4286
|
|
|
4261
4287
|
|
|
4262
4288
|
<li class="md-nav__item md-nav__item--nested">
|
|
4263
4289
|
|
|
4264
4290
|
|
|
4265
4291
|
|
|
4266
|
-
|
|
4267
4292
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4268
4293
|
|
|
4269
4294
|
|
|
@@ -4352,13 +4377,14 @@
|
|
|
4352
4377
|
|
|
4353
4378
|
|
|
4354
4379
|
|
|
4380
|
+
|
|
4381
|
+
|
|
4355
4382
|
|
|
4356
4383
|
|
|
4357
4384
|
<li class="md-nav__item md-nav__item--nested">
|
|
4358
4385
|
|
|
4359
4386
|
|
|
4360
4387
|
|
|
4361
|
-
|
|
4362
4388
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4363
4389
|
|
|
4364
4390
|
|
|
@@ -4552,13 +4578,14 @@
|
|
|
4552
4578
|
|
|
4553
4579
|
|
|
4554
4580
|
|
|
4581
|
+
|
|
4582
|
+
|
|
4555
4583
|
|
|
4556
4584
|
|
|
4557
4585
|
<li class="md-nav__item md-nav__item--nested">
|
|
4558
4586
|
|
|
4559
4587
|
|
|
4560
4588
|
|
|
4561
|
-
|
|
4562
4589
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4563
4590
|
|
|
4564
4591
|
|
|
@@ -4773,13 +4800,14 @@
|
|
|
4773
4800
|
|
|
4774
4801
|
|
|
4775
4802
|
|
|
4803
|
+
|
|
4804
|
+
|
|
4776
4805
|
|
|
4777
4806
|
|
|
4778
4807
|
<li class="md-nav__item md-nav__item--nested">
|
|
4779
4808
|
|
|
4780
4809
|
|
|
4781
4810
|
|
|
4782
|
-
|
|
4783
4811
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4784
4812
|
|
|
4785
4813
|
|
|
@@ -4896,16 +4924,14 @@
|
|
|
4896
4924
|
|
|
4897
4925
|
|
|
4898
4926
|
|
|
4899
|
-
|
|
4900
|
-
|
|
4901
4927
|
|
|
4902
4928
|
|
|
4903
4929
|
|
|
4904
|
-
|
|
4930
|
+
|
|
4931
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4905
4932
|
|
|
4906
4933
|
|
|
4907
4934
|
|
|
4908
|
-
|
|
4909
4935
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4910
4936
|
|
|
4911
4937
|
|
|
@@ -4922,7 +4948,7 @@
|
|
|
4922
4948
|
</a>
|
|
4923
4949
|
|
|
4924
4950
|
|
|
4925
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4951
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4926
4952
|
<span class="md-nav__icon md-icon"></span>
|
|
4927
4953
|
</label>
|
|
4928
4954
|
|
|
@@ -4944,13 +4970,14 @@
|
|
|
4944
4970
|
|
|
4945
4971
|
|
|
4946
4972
|
|
|
4973
|
+
|
|
4974
|
+
|
|
4947
4975
|
|
|
4948
4976
|
|
|
4949
4977
|
<li class="md-nav__item md-nav__item--nested">
|
|
4950
4978
|
|
|
4951
4979
|
|
|
4952
4980
|
|
|
4953
|
-
|
|
4954
4981
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4955
4982
|
|
|
4956
4983
|
|
|
@@ -5018,13 +5045,14 @@
|
|
|
5018
5045
|
|
|
5019
5046
|
|
|
5020
5047
|
|
|
5048
|
+
|
|
5049
|
+
|
|
5021
5050
|
|
|
5022
5051
|
|
|
5023
5052
|
<li class="md-nav__item md-nav__item--nested">
|
|
5024
5053
|
|
|
5025
5054
|
|
|
5026
5055
|
|
|
5027
|
-
|
|
5028
5056
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
5029
5057
|
|
|
5030
5058
|
|
|
@@ -5105,13 +5133,14 @@
|
|
|
5105
5133
|
|
|
5106
5134
|
|
|
5107
5135
|
|
|
5136
|
+
|
|
5137
|
+
|
|
5108
5138
|
|
|
5109
5139
|
|
|
5110
5140
|
<li class="md-nav__item md-nav__item--nested">
|
|
5111
5141
|
|
|
5112
5142
|
|
|
5113
5143
|
|
|
5114
|
-
|
|
5115
5144
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
5116
5145
|
|
|
5117
5146
|
|
|
@@ -5221,13 +5250,14 @@
|
|
|
5221
5250
|
|
|
5222
5251
|
|
|
5223
5252
|
|
|
5253
|
+
|
|
5254
|
+
|
|
5224
5255
|
|
|
5225
5256
|
|
|
5226
5257
|
<li class="md-nav__item md-nav__item--nested">
|
|
5227
5258
|
|
|
5228
5259
|
|
|
5229
5260
|
|
|
5230
|
-
|
|
5231
5261
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5232
5262
|
|
|
5233
5263
|
|
|
@@ -5413,13 +5443,14 @@
|
|
|
5413
5443
|
|
|
5414
5444
|
|
|
5415
5445
|
|
|
5446
|
+
|
|
5447
|
+
|
|
5416
5448
|
|
|
5417
5449
|
|
|
5418
5450
|
<li class="md-nav__item md-nav__item--nested">
|
|
5419
5451
|
|
|
5420
5452
|
|
|
5421
5453
|
|
|
5422
|
-
|
|
5423
5454
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5424
5455
|
|
|
5425
5456
|
|
|
@@ -5529,13 +5560,14 @@
|
|
|
5529
5560
|
|
|
5530
5561
|
|
|
5531
5562
|
|
|
5563
|
+
|
|
5564
|
+
|
|
5532
5565
|
|
|
5533
5566
|
|
|
5534
5567
|
<li class="md-nav__item md-nav__item--nested">
|
|
5535
5568
|
|
|
5536
5569
|
|
|
5537
5570
|
|
|
5538
|
-
|
|
5539
5571
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5540
5572
|
|
|
5541
5573
|
|
|
@@ -5792,13 +5824,14 @@
|
|
|
5792
5824
|
|
|
5793
5825
|
|
|
5794
5826
|
|
|
5827
|
+
|
|
5828
|
+
|
|
5795
5829
|
|
|
5796
5830
|
|
|
5797
5831
|
<li class="md-nav__item md-nav__item--nested">
|
|
5798
5832
|
|
|
5799
5833
|
|
|
5800
5834
|
|
|
5801
|
-
|
|
5802
5835
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5803
5836
|
|
|
5804
5837
|
|
|
@@ -5971,13 +6004,14 @@
|
|
|
5971
6004
|
|
|
5972
6005
|
|
|
5973
6006
|
|
|
6007
|
+
|
|
6008
|
+
|
|
5974
6009
|
|
|
5975
6010
|
|
|
5976
6011
|
<li class="md-nav__item md-nav__item--nested">
|
|
5977
6012
|
|
|
5978
6013
|
|
|
5979
6014
|
|
|
5980
|
-
|
|
5981
6015
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5982
6016
|
|
|
5983
6017
|
|
|
@@ -6499,13 +6533,14 @@
|
|
|
6499
6533
|
|
|
6500
6534
|
|
|
6501
6535
|
|
|
6536
|
+
|
|
6537
|
+
|
|
6502
6538
|
|
|
6503
6539
|
|
|
6504
6540
|
<li class="md-nav__item md-nav__item--nested">
|
|
6505
6541
|
|
|
6506
6542
|
|
|
6507
6543
|
|
|
6508
|
-
|
|
6509
6544
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6510
6545
|
|
|
6511
6546
|
|
|
@@ -6599,13 +6634,14 @@
|
|
|
6599
6634
|
|
|
6600
6635
|
|
|
6601
6636
|
|
|
6637
|
+
|
|
6638
|
+
|
|
6602
6639
|
|
|
6603
6640
|
|
|
6604
6641
|
<li class="md-nav__item md-nav__item--nested">
|
|
6605
6642
|
|
|
6606
6643
|
|
|
6607
6644
|
|
|
6608
|
-
|
|
6609
6645
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6610
6646
|
|
|
6611
6647
|
|
|
@@ -6736,13 +6772,14 @@
|
|
|
6736
6772
|
|
|
6737
6773
|
|
|
6738
6774
|
|
|
6775
|
+
|
|
6776
|
+
|
|
6739
6777
|
|
|
6740
6778
|
|
|
6741
6779
|
<li class="md-nav__item md-nav__item--nested">
|
|
6742
6780
|
|
|
6743
6781
|
|
|
6744
6782
|
|
|
6745
|
-
|
|
6746
6783
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6747
6784
|
|
|
6748
6785
|
|
|
@@ -6810,13 +6847,14 @@
|
|
|
6810
6847
|
|
|
6811
6848
|
|
|
6812
6849
|
|
|
6850
|
+
|
|
6851
|
+
|
|
6813
6852
|
|
|
6814
6853
|
|
|
6815
6854
|
<li class="md-nav__item md-nav__item--nested">
|
|
6816
6855
|
|
|
6817
6856
|
|
|
6818
6857
|
|
|
6819
|
-
|
|
6820
6858
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6821
6859
|
|
|
6822
6860
|
|
|
@@ -7021,11 +7059,11 @@
|
|
|
7021
7059
|
|
|
7022
7060
|
|
|
7023
7061
|
<li class="md-nav__item">
|
|
7024
|
-
<a href="../../../../../development/core/
|
|
7062
|
+
<a href="../../../../../development/core/generic-views.html" class="md-nav__link">
|
|
7025
7063
|
|
|
7026
7064
|
|
|
7027
7065
|
<span class="md-ellipsis">
|
|
7028
|
-
|
|
7066
|
+
Generic Views
|
|
7029
7067
|
</span>
|
|
7030
7068
|
|
|
7031
7069
|
|
|
@@ -7042,11 +7080,11 @@
|
|
|
7042
7080
|
|
|
7043
7081
|
|
|
7044
7082
|
<li class="md-nav__item">
|
|
7045
|
-
<a href="../../../../../development/core/
|
|
7083
|
+
<a href="../../../../../development/core/homepage.html" class="md-nav__link">
|
|
7046
7084
|
|
|
7047
7085
|
|
|
7048
7086
|
<span class="md-ellipsis">
|
|
7049
|
-
|
|
7087
|
+
Home Page Panels
|
|
7050
7088
|
</span>
|
|
7051
7089
|
|
|
7052
7090
|
|
|
@@ -7063,11 +7101,11 @@
|
|
|
7063
7101
|
|
|
7064
7102
|
|
|
7065
7103
|
<li class="md-nav__item">
|
|
7066
|
-
<a href="../../../../../development/core/
|
|
7104
|
+
<a href="../../../../../development/core/model-checklist.html" class="md-nav__link">
|
|
7067
7105
|
|
|
7068
7106
|
|
|
7069
7107
|
<span class="md-ellipsis">
|
|
7070
|
-
|
|
7108
|
+
Model Development Checklist
|
|
7071
7109
|
</span>
|
|
7072
7110
|
|
|
7073
7111
|
|
|
@@ -7290,16 +7328,14 @@
|
|
|
7290
7328
|
|
|
7291
7329
|
|
|
7292
7330
|
|
|
7293
|
-
|
|
7294
|
-
|
|
7295
7331
|
|
|
7296
7332
|
|
|
7297
7333
|
|
|
7298
|
-
|
|
7334
|
+
|
|
7335
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7299
7336
|
|
|
7300
7337
|
|
|
7301
7338
|
|
|
7302
|
-
|
|
7303
7339
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7304
7340
|
|
|
7305
7341
|
|
|
@@ -7316,7 +7352,7 @@
|
|
|
7316
7352
|
</a>
|
|
7317
7353
|
|
|
7318
7354
|
|
|
7319
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7355
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7320
7356
|
<span class="md-nav__icon md-icon"></span>
|
|
7321
7357
|
</label>
|
|
7322
7358
|
|
|
@@ -7555,16 +7591,14 @@
|
|
|
7555
7591
|
|
|
7556
7592
|
|
|
7557
7593
|
|
|
7558
|
-
|
|
7559
|
-
|
|
7560
7594
|
|
|
7561
7595
|
|
|
7562
7596
|
|
|
7563
|
-
|
|
7597
|
+
|
|
7598
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7564
7599
|
|
|
7565
7600
|
|
|
7566
7601
|
|
|
7567
|
-
|
|
7568
7602
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7569
7603
|
|
|
7570
7604
|
|
|
@@ -7581,7 +7615,7 @@
|
|
|
7581
7615
|
</a>
|
|
7582
7616
|
|
|
7583
7617
|
|
|
7584
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7618
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7585
7619
|
<span class="md-nav__icon md-icon"></span>
|
|
7586
7620
|
</label>
|
|
7587
7621
|
|
|
@@ -7603,13 +7637,14 @@
|
|
|
7603
7637
|
|
|
7604
7638
|
|
|
7605
7639
|
|
|
7640
|
+
|
|
7641
|
+
|
|
7606
7642
|
|
|
7607
7643
|
|
|
7608
7644
|
<li class="md-nav__item md-nav__item--nested">
|
|
7609
7645
|
|
|
7610
7646
|
|
|
7611
7647
|
|
|
7612
|
-
|
|
7613
7648
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7614
7649
|
|
|
7615
7650
|
|
|
@@ -8375,9 +8410,9 @@
|
|
|
8375
8410
|
<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>
|
|
8376
8411
|
|
|
8377
8412
|
|
|
8378
|
-
<script src="../../../../../assets/javascripts/bundle.
|
|
8413
|
+
<script src="../../../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8379
8414
|
|
|
8380
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8415
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8381
8416
|
|
|
8382
8417
|
|
|
8383
8418
|
</body>
|