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/for-developers.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
|
|
|
@@ -1240,13 +1246,14 @@
|
|
|
1240
1246
|
|
|
1241
1247
|
|
|
1242
1248
|
|
|
1249
|
+
|
|
1250
|
+
|
|
1243
1251
|
|
|
1244
1252
|
|
|
1245
1253
|
<li class="md-nav__item md-nav__item--nested">
|
|
1246
1254
|
|
|
1247
1255
|
|
|
1248
1256
|
|
|
1249
|
-
|
|
1250
1257
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1251
1258
|
|
|
1252
1259
|
|
|
@@ -1327,13 +1334,14 @@
|
|
|
1327
1334
|
|
|
1328
1335
|
|
|
1329
1336
|
|
|
1337
|
+
|
|
1338
|
+
|
|
1330
1339
|
|
|
1331
1340
|
|
|
1332
1341
|
<li class="md-nav__item md-nav__item--nested">
|
|
1333
1342
|
|
|
1334
1343
|
|
|
1335
1344
|
|
|
1336
|
-
|
|
1337
1345
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1338
1346
|
|
|
1339
1347
|
|
|
@@ -1435,13 +1443,14 @@
|
|
|
1435
1443
|
|
|
1436
1444
|
|
|
1437
1445
|
|
|
1446
|
+
|
|
1447
|
+
|
|
1438
1448
|
|
|
1439
1449
|
|
|
1440
1450
|
<li class="md-nav__item md-nav__item--nested">
|
|
1441
1451
|
|
|
1442
1452
|
|
|
1443
1453
|
|
|
1444
|
-
|
|
1445
1454
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1446
1455
|
|
|
1447
1456
|
|
|
@@ -1551,13 +1560,14 @@
|
|
|
1551
1560
|
|
|
1552
1561
|
|
|
1553
1562
|
|
|
1563
|
+
|
|
1564
|
+
|
|
1554
1565
|
|
|
1555
1566
|
|
|
1556
1567
|
<li class="md-nav__item md-nav__item--nested">
|
|
1557
1568
|
|
|
1558
1569
|
|
|
1559
1570
|
|
|
1560
|
-
|
|
1561
1571
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1562
1572
|
|
|
1563
1573
|
|
|
@@ -1638,13 +1648,14 @@
|
|
|
1638
1648
|
|
|
1639
1649
|
|
|
1640
1650
|
|
|
1651
|
+
|
|
1652
|
+
|
|
1641
1653
|
|
|
1642
1654
|
|
|
1643
1655
|
<li class="md-nav__item md-nav__item--nested">
|
|
1644
1656
|
|
|
1645
1657
|
|
|
1646
1658
|
|
|
1647
|
-
|
|
1648
1659
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1649
1660
|
|
|
1650
1661
|
|
|
@@ -1859,13 +1870,14 @@
|
|
|
1859
1870
|
|
|
1860
1871
|
|
|
1861
1872
|
|
|
1873
|
+
|
|
1874
|
+
|
|
1862
1875
|
|
|
1863
1876
|
|
|
1864
1877
|
<li class="md-nav__item md-nav__item--nested">
|
|
1865
1878
|
|
|
1866
1879
|
|
|
1867
1880
|
|
|
1868
|
-
|
|
1869
1881
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1870
1882
|
|
|
1871
1883
|
|
|
@@ -1896,13 +1908,14 @@
|
|
|
1896
1908
|
|
|
1897
1909
|
|
|
1898
1910
|
|
|
1911
|
+
|
|
1912
|
+
|
|
1899
1913
|
|
|
1900
1914
|
|
|
1901
1915
|
<li class="md-nav__item md-nav__item--nested">
|
|
1902
1916
|
|
|
1903
1917
|
|
|
1904
1918
|
|
|
1905
|
-
|
|
1906
1919
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1907
1920
|
|
|
1908
1921
|
|
|
@@ -2272,13 +2285,14 @@
|
|
|
2272
2285
|
|
|
2273
2286
|
|
|
2274
2287
|
|
|
2288
|
+
|
|
2289
|
+
|
|
2275
2290
|
|
|
2276
2291
|
|
|
2277
2292
|
<li class="md-nav__item md-nav__item--nested">
|
|
2278
2293
|
|
|
2279
2294
|
|
|
2280
2295
|
|
|
2281
|
-
|
|
2282
2296
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2283
2297
|
|
|
2284
2298
|
|
|
@@ -2309,13 +2323,14 @@
|
|
|
2309
2323
|
|
|
2310
2324
|
|
|
2311
2325
|
|
|
2326
|
+
|
|
2327
|
+
|
|
2312
2328
|
|
|
2313
2329
|
|
|
2314
2330
|
<li class="md-nav__item md-nav__item--nested">
|
|
2315
2331
|
|
|
2316
2332
|
|
|
2317
2333
|
|
|
2318
|
-
|
|
2319
2334
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2320
2335
|
|
|
2321
2336
|
|
|
@@ -2375,13 +2390,14 @@
|
|
|
2375
2390
|
|
|
2376
2391
|
|
|
2377
2392
|
|
|
2393
|
+
|
|
2394
|
+
|
|
2378
2395
|
|
|
2379
2396
|
|
|
2380
2397
|
<li class="md-nav__item md-nav__item--nested">
|
|
2381
2398
|
|
|
2382
2399
|
|
|
2383
2400
|
|
|
2384
|
-
|
|
2385
2401
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2386
2402
|
|
|
2387
2403
|
|
|
@@ -2525,13 +2541,14 @@
|
|
|
2525
2541
|
|
|
2526
2542
|
|
|
2527
2543
|
|
|
2544
|
+
|
|
2545
|
+
|
|
2528
2546
|
|
|
2529
2547
|
|
|
2530
2548
|
<li class="md-nav__item md-nav__item--nested">
|
|
2531
2549
|
|
|
2532
2550
|
|
|
2533
2551
|
|
|
2534
|
-
|
|
2535
2552
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2536
2553
|
|
|
2537
2554
|
|
|
@@ -2709,13 +2726,14 @@
|
|
|
2709
2726
|
|
|
2710
2727
|
|
|
2711
2728
|
|
|
2729
|
+
|
|
2730
|
+
|
|
2712
2731
|
|
|
2713
2732
|
|
|
2714
2733
|
<li class="md-nav__item md-nav__item--nested">
|
|
2715
2734
|
|
|
2716
2735
|
|
|
2717
2736
|
|
|
2718
|
-
|
|
2719
2737
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2720
2738
|
|
|
2721
2739
|
|
|
@@ -2930,13 +2948,14 @@
|
|
|
2930
2948
|
|
|
2931
2949
|
|
|
2932
2950
|
|
|
2951
|
+
|
|
2952
|
+
|
|
2933
2953
|
|
|
2934
2954
|
|
|
2935
2955
|
<li class="md-nav__item md-nav__item--nested">
|
|
2936
2956
|
|
|
2937
2957
|
|
|
2938
2958
|
|
|
2939
|
-
|
|
2940
2959
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2941
2960
|
|
|
2942
2961
|
|
|
@@ -3411,13 +3430,14 @@
|
|
|
3411
3430
|
|
|
3412
3431
|
|
|
3413
3432
|
|
|
3433
|
+
|
|
3434
|
+
|
|
3414
3435
|
|
|
3415
3436
|
|
|
3416
3437
|
<li class="md-nav__item md-nav__item--nested">
|
|
3417
3438
|
|
|
3418
3439
|
|
|
3419
3440
|
|
|
3420
|
-
|
|
3421
3441
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3422
3442
|
|
|
3423
3443
|
|
|
@@ -3540,13 +3560,14 @@
|
|
|
3540
3560
|
|
|
3541
3561
|
|
|
3542
3562
|
|
|
3563
|
+
|
|
3564
|
+
|
|
3543
3565
|
|
|
3544
3566
|
|
|
3545
3567
|
<li class="md-nav__item md-nav__item--nested">
|
|
3546
3568
|
|
|
3547
3569
|
|
|
3548
3570
|
|
|
3549
|
-
|
|
3550
3571
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3551
3572
|
|
|
3552
3573
|
|
|
@@ -3774,13 +3795,14 @@
|
|
|
3774
3795
|
|
|
3775
3796
|
|
|
3776
3797
|
|
|
3798
|
+
|
|
3799
|
+
|
|
3777
3800
|
|
|
3778
3801
|
|
|
3779
3802
|
<li class="md-nav__item md-nav__item--nested">
|
|
3780
3803
|
|
|
3781
3804
|
|
|
3782
3805
|
|
|
3783
|
-
|
|
3784
3806
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3785
3807
|
|
|
3786
3808
|
|
|
@@ -3861,13 +3883,14 @@
|
|
|
3861
3883
|
|
|
3862
3884
|
|
|
3863
3885
|
|
|
3886
|
+
|
|
3887
|
+
|
|
3864
3888
|
|
|
3865
3889
|
|
|
3866
3890
|
<li class="md-nav__item md-nav__item--nested">
|
|
3867
3891
|
|
|
3868
3892
|
|
|
3869
3893
|
|
|
3870
|
-
|
|
3871
3894
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3872
3895
|
|
|
3873
3896
|
|
|
@@ -4019,13 +4042,14 @@
|
|
|
4019
4042
|
|
|
4020
4043
|
|
|
4021
4044
|
|
|
4045
|
+
|
|
4046
|
+
|
|
4022
4047
|
|
|
4023
4048
|
|
|
4024
4049
|
<li class="md-nav__item md-nav__item--nested">
|
|
4025
4050
|
|
|
4026
4051
|
|
|
4027
4052
|
|
|
4028
|
-
|
|
4029
4053
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
4030
4054
|
|
|
4031
4055
|
|
|
@@ -4224,13 +4248,14 @@
|
|
|
4224
4248
|
|
|
4225
4249
|
|
|
4226
4250
|
|
|
4251
|
+
|
|
4252
|
+
|
|
4227
4253
|
|
|
4228
4254
|
|
|
4229
4255
|
<li class="md-nav__item md-nav__item--nested">
|
|
4230
4256
|
|
|
4231
4257
|
|
|
4232
4258
|
|
|
4233
|
-
|
|
4234
4259
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4235
4260
|
|
|
4236
4261
|
|
|
@@ -4319,13 +4344,14 @@
|
|
|
4319
4344
|
|
|
4320
4345
|
|
|
4321
4346
|
|
|
4347
|
+
|
|
4348
|
+
|
|
4322
4349
|
|
|
4323
4350
|
|
|
4324
4351
|
<li class="md-nav__item md-nav__item--nested">
|
|
4325
4352
|
|
|
4326
4353
|
|
|
4327
4354
|
|
|
4328
|
-
|
|
4329
4355
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4330
4356
|
|
|
4331
4357
|
|
|
@@ -4519,13 +4545,14 @@
|
|
|
4519
4545
|
|
|
4520
4546
|
|
|
4521
4547
|
|
|
4548
|
+
|
|
4549
|
+
|
|
4522
4550
|
|
|
4523
4551
|
|
|
4524
4552
|
<li class="md-nav__item md-nav__item--nested">
|
|
4525
4553
|
|
|
4526
4554
|
|
|
4527
4555
|
|
|
4528
|
-
|
|
4529
4556
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4530
4557
|
|
|
4531
4558
|
|
|
@@ -4740,13 +4767,14 @@
|
|
|
4740
4767
|
|
|
4741
4768
|
|
|
4742
4769
|
|
|
4770
|
+
|
|
4771
|
+
|
|
4743
4772
|
|
|
4744
4773
|
|
|
4745
4774
|
<li class="md-nav__item md-nav__item--nested">
|
|
4746
4775
|
|
|
4747
4776
|
|
|
4748
4777
|
|
|
4749
|
-
|
|
4750
4778
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4751
4779
|
|
|
4752
4780
|
|
|
@@ -4863,16 +4891,14 @@
|
|
|
4863
4891
|
|
|
4864
4892
|
|
|
4865
4893
|
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
4894
|
|
|
4869
4895
|
|
|
4870
4896
|
|
|
4871
|
-
|
|
4897
|
+
|
|
4898
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4872
4899
|
|
|
4873
4900
|
|
|
4874
4901
|
|
|
4875
|
-
|
|
4876
4902
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4877
4903
|
|
|
4878
4904
|
|
|
@@ -4889,7 +4915,7 @@
|
|
|
4889
4915
|
</a>
|
|
4890
4916
|
|
|
4891
4917
|
|
|
4892
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4918
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4893
4919
|
<span class="md-nav__icon md-icon"></span>
|
|
4894
4920
|
</label>
|
|
4895
4921
|
|
|
@@ -4911,13 +4937,14 @@
|
|
|
4911
4937
|
|
|
4912
4938
|
|
|
4913
4939
|
|
|
4940
|
+
|
|
4941
|
+
|
|
4914
4942
|
|
|
4915
4943
|
|
|
4916
4944
|
<li class="md-nav__item md-nav__item--nested">
|
|
4917
4945
|
|
|
4918
4946
|
|
|
4919
4947
|
|
|
4920
|
-
|
|
4921
4948
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4922
4949
|
|
|
4923
4950
|
|
|
@@ -4985,13 +5012,14 @@
|
|
|
4985
5012
|
|
|
4986
5013
|
|
|
4987
5014
|
|
|
5015
|
+
|
|
5016
|
+
|
|
4988
5017
|
|
|
4989
5018
|
|
|
4990
5019
|
<li class="md-nav__item md-nav__item--nested">
|
|
4991
5020
|
|
|
4992
5021
|
|
|
4993
5022
|
|
|
4994
|
-
|
|
4995
5023
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4996
5024
|
|
|
4997
5025
|
|
|
@@ -5072,13 +5100,14 @@
|
|
|
5072
5100
|
|
|
5073
5101
|
|
|
5074
5102
|
|
|
5103
|
+
|
|
5104
|
+
|
|
5075
5105
|
|
|
5076
5106
|
|
|
5077
5107
|
<li class="md-nav__item md-nav__item--nested">
|
|
5078
5108
|
|
|
5079
5109
|
|
|
5080
5110
|
|
|
5081
|
-
|
|
5082
5111
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
5083
5112
|
|
|
5084
5113
|
|
|
@@ -5188,13 +5217,14 @@
|
|
|
5188
5217
|
|
|
5189
5218
|
|
|
5190
5219
|
|
|
5220
|
+
|
|
5221
|
+
|
|
5191
5222
|
|
|
5192
5223
|
|
|
5193
5224
|
<li class="md-nav__item md-nav__item--nested">
|
|
5194
5225
|
|
|
5195
5226
|
|
|
5196
5227
|
|
|
5197
|
-
|
|
5198
5228
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5199
5229
|
|
|
5200
5230
|
|
|
@@ -5380,13 +5410,14 @@
|
|
|
5380
5410
|
|
|
5381
5411
|
|
|
5382
5412
|
|
|
5413
|
+
|
|
5414
|
+
|
|
5383
5415
|
|
|
5384
5416
|
|
|
5385
5417
|
<li class="md-nav__item md-nav__item--nested">
|
|
5386
5418
|
|
|
5387
5419
|
|
|
5388
5420
|
|
|
5389
|
-
|
|
5390
5421
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5391
5422
|
|
|
5392
5423
|
|
|
@@ -5496,13 +5527,14 @@
|
|
|
5496
5527
|
|
|
5497
5528
|
|
|
5498
5529
|
|
|
5530
|
+
|
|
5531
|
+
|
|
5499
5532
|
|
|
5500
5533
|
|
|
5501
5534
|
<li class="md-nav__item md-nav__item--nested">
|
|
5502
5535
|
|
|
5503
5536
|
|
|
5504
5537
|
|
|
5505
|
-
|
|
5506
5538
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5507
5539
|
|
|
5508
5540
|
|
|
@@ -5759,13 +5791,14 @@
|
|
|
5759
5791
|
|
|
5760
5792
|
|
|
5761
5793
|
|
|
5794
|
+
|
|
5795
|
+
|
|
5762
5796
|
|
|
5763
5797
|
|
|
5764
5798
|
<li class="md-nav__item md-nav__item--nested">
|
|
5765
5799
|
|
|
5766
5800
|
|
|
5767
5801
|
|
|
5768
|
-
|
|
5769
5802
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5770
5803
|
|
|
5771
5804
|
|
|
@@ -5938,13 +5971,14 @@
|
|
|
5938
5971
|
|
|
5939
5972
|
|
|
5940
5973
|
|
|
5974
|
+
|
|
5975
|
+
|
|
5941
5976
|
|
|
5942
5977
|
|
|
5943
5978
|
<li class="md-nav__item md-nav__item--nested">
|
|
5944
5979
|
|
|
5945
5980
|
|
|
5946
5981
|
|
|
5947
|
-
|
|
5948
5982
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5949
5983
|
|
|
5950
5984
|
|
|
@@ -6466,13 +6500,14 @@
|
|
|
6466
6500
|
|
|
6467
6501
|
|
|
6468
6502
|
|
|
6503
|
+
|
|
6504
|
+
|
|
6469
6505
|
|
|
6470
6506
|
|
|
6471
6507
|
<li class="md-nav__item md-nav__item--nested">
|
|
6472
6508
|
|
|
6473
6509
|
|
|
6474
6510
|
|
|
6475
|
-
|
|
6476
6511
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6477
6512
|
|
|
6478
6513
|
|
|
@@ -6566,13 +6601,14 @@
|
|
|
6566
6601
|
|
|
6567
6602
|
|
|
6568
6603
|
|
|
6604
|
+
|
|
6605
|
+
|
|
6569
6606
|
|
|
6570
6607
|
|
|
6571
6608
|
<li class="md-nav__item md-nav__item--nested">
|
|
6572
6609
|
|
|
6573
6610
|
|
|
6574
6611
|
|
|
6575
|
-
|
|
6576
6612
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6577
6613
|
|
|
6578
6614
|
|
|
@@ -6703,13 +6739,14 @@
|
|
|
6703
6739
|
|
|
6704
6740
|
|
|
6705
6741
|
|
|
6742
|
+
|
|
6743
|
+
|
|
6706
6744
|
|
|
6707
6745
|
|
|
6708
6746
|
<li class="md-nav__item md-nav__item--nested">
|
|
6709
6747
|
|
|
6710
6748
|
|
|
6711
6749
|
|
|
6712
|
-
|
|
6713
6750
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6714
6751
|
|
|
6715
6752
|
|
|
@@ -6777,13 +6814,14 @@
|
|
|
6777
6814
|
|
|
6778
6815
|
|
|
6779
6816
|
|
|
6817
|
+
|
|
6818
|
+
|
|
6780
6819
|
|
|
6781
6820
|
|
|
6782
6821
|
<li class="md-nav__item md-nav__item--nested">
|
|
6783
6822
|
|
|
6784
6823
|
|
|
6785
6824
|
|
|
6786
|
-
|
|
6787
6825
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6788
6826
|
|
|
6789
6827
|
|
|
@@ -6988,11 +7026,11 @@
|
|
|
6988
7026
|
|
|
6989
7027
|
|
|
6990
7028
|
<li class="md-nav__item">
|
|
6991
|
-
<a href="../../../../../development/core/
|
|
7029
|
+
<a href="../../../../../development/core/generic-views.html" class="md-nav__link">
|
|
6992
7030
|
|
|
6993
7031
|
|
|
6994
7032
|
<span class="md-ellipsis">
|
|
6995
|
-
|
|
7033
|
+
Generic Views
|
|
6996
7034
|
</span>
|
|
6997
7035
|
|
|
6998
7036
|
|
|
@@ -7009,11 +7047,11 @@
|
|
|
7009
7047
|
|
|
7010
7048
|
|
|
7011
7049
|
<li class="md-nav__item">
|
|
7012
|
-
<a href="../../../../../development/core/
|
|
7050
|
+
<a href="../../../../../development/core/homepage.html" class="md-nav__link">
|
|
7013
7051
|
|
|
7014
7052
|
|
|
7015
7053
|
<span class="md-ellipsis">
|
|
7016
|
-
|
|
7054
|
+
Home Page Panels
|
|
7017
7055
|
</span>
|
|
7018
7056
|
|
|
7019
7057
|
|
|
@@ -7030,11 +7068,11 @@
|
|
|
7030
7068
|
|
|
7031
7069
|
|
|
7032
7070
|
<li class="md-nav__item">
|
|
7033
|
-
<a href="../../../../../development/core/
|
|
7071
|
+
<a href="../../../../../development/core/model-checklist.html" class="md-nav__link">
|
|
7034
7072
|
|
|
7035
7073
|
|
|
7036
7074
|
<span class="md-ellipsis">
|
|
7037
|
-
|
|
7075
|
+
Model Development Checklist
|
|
7038
7076
|
</span>
|
|
7039
7077
|
|
|
7040
7078
|
|
|
@@ -7257,16 +7295,14 @@
|
|
|
7257
7295
|
|
|
7258
7296
|
|
|
7259
7297
|
|
|
7260
|
-
|
|
7261
|
-
|
|
7262
7298
|
|
|
7263
7299
|
|
|
7264
7300
|
|
|
7265
|
-
|
|
7301
|
+
|
|
7302
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7266
7303
|
|
|
7267
7304
|
|
|
7268
7305
|
|
|
7269
|
-
|
|
7270
7306
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7271
7307
|
|
|
7272
7308
|
|
|
@@ -7283,7 +7319,7 @@
|
|
|
7283
7319
|
</a>
|
|
7284
7320
|
|
|
7285
7321
|
|
|
7286
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7322
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7287
7323
|
<span class="md-nav__icon md-icon"></span>
|
|
7288
7324
|
</label>
|
|
7289
7325
|
|
|
@@ -7522,16 +7558,14 @@
|
|
|
7522
7558
|
|
|
7523
7559
|
|
|
7524
7560
|
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
7561
|
|
|
7528
7562
|
|
|
7529
7563
|
|
|
7530
|
-
|
|
7564
|
+
|
|
7565
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7531
7566
|
|
|
7532
7567
|
|
|
7533
7568
|
|
|
7534
|
-
|
|
7535
7569
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7536
7570
|
|
|
7537
7571
|
|
|
@@ -7548,7 +7582,7 @@
|
|
|
7548
7582
|
</a>
|
|
7549
7583
|
|
|
7550
7584
|
|
|
7551
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7585
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7552
7586
|
<span class="md-nav__icon md-icon"></span>
|
|
7553
7587
|
</label>
|
|
7554
7588
|
|
|
@@ -7570,13 +7604,14 @@
|
|
|
7570
7604
|
|
|
7571
7605
|
|
|
7572
7606
|
|
|
7607
|
+
|
|
7608
|
+
|
|
7573
7609
|
|
|
7574
7610
|
|
|
7575
7611
|
<li class="md-nav__item md-nav__item--nested">
|
|
7576
7612
|
|
|
7577
7613
|
|
|
7578
7614
|
|
|
7579
|
-
|
|
7580
7615
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7581
7616
|
|
|
7582
7617
|
|
|
@@ -8853,9 +8888,9 @@
|
|
|
8853
8888
|
<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>
|
|
8854
8889
|
|
|
8855
8890
|
|
|
8856
|
-
<script src="../../../../../assets/javascripts/bundle.
|
|
8891
|
+
<script src="../../../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8857
8892
|
|
|
8858
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8893
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8859
8894
|
|
|
8860
8895
|
|
|
8861
8896
|
</body>
|