nautobot 2.2.0__py3-none-any.whl → 2.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/__init__.py +31 -0
- nautobot/circuits/apps.py +1 -1
- nautobot/core/api/routers.py +25 -0
- nautobot/core/cli/__init__.py +18 -11
- nautobot/core/constants.py +85 -0
- nautobot/core/forms/widgets.py +1 -2
- nautobot/core/graphql/schema.py +1 -0
- nautobot/core/models/__init__.py +1 -0
- nautobot/core/settings.py +23 -3
- nautobot/core/settings.yaml +20 -0
- nautobot/core/signals.py +1 -0
- nautobot/core/templates/generic/object_retrieve.html +2 -2
- nautobot/core/templates/inc/javascript.html +4 -4
- nautobot/core/templates/inc/media.html +2 -2
- nautobot/core/templates/nautobot_config.py.j2 +14 -1
- nautobot/core/testing/__init__.py +1 -1
- nautobot/core/testing/filters.py +1 -1
- nautobot/core/tests/integration/test_view_authentication.py +1 -0
- nautobot/core/tests/test_views.py +22 -0
- nautobot/core/utils/data.py +1 -2
- nautobot/core/utils/lookup.py +2 -0
- nautobot/core/views/generic.py +1 -3
- nautobot/core/views/mixins.py +0 -1
- nautobot/core/views/renderers.py +7 -5
- nautobot/dcim/apps.py +8 -4
- nautobot/dcim/elevations.py +5 -1
- nautobot/dcim/tables/devices.py +1 -1
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +12 -4
- nautobot/dcim/templates/dcim/device.html +1 -1
- nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
- nautobot/dcim/tests/test_api.py +36 -0
- nautobot/dcim/tests/test_signals.py +1 -1
- nautobot/dcim/views.py +6 -0
- nautobot/extras/api/serializers.py +20 -1
- nautobot/extras/apps.py +7 -0
- nautobot/extras/context_managers.py +15 -4
- nautobot/extras/filters/customfields.py +14 -9
- nautobot/extras/filters/mixins.py +6 -1
- nautobot/extras/health_checks.py +1 -0
- nautobot/extras/jobs.py +1 -0
- nautobot/extras/managers.py +1 -2
- nautobot/extras/models/contacts.py +1 -0
- nautobot/extras/models/customfields.py +25 -2
- nautobot/extras/models/datasources.py +1 -0
- nautobot/extras/models/mixins.py +1 -0
- nautobot/extras/plugins/__init__.py +2 -1
- nautobot/extras/querysets.py +1 -2
- nautobot/extras/secrets/providers.py +1 -0
- nautobot/extras/signals.py +15 -5
- nautobot/extras/tasks.py +70 -17
- nautobot/extras/tests/test_api.py +0 -4
- nautobot/extras/tests/test_customfields.py +72 -9
- nautobot/extras/views.py +8 -7
- nautobot/ipam/api/serializers.py +10 -0
- nautobot/ipam/apps.py +3 -2
- nautobot/project-static/docs/404.html +102 -70
- nautobot/project-static/docs/apps/index.html +103 -68
- nautobot/project-static/docs/apps/nautobot-apps.html +103 -68
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
- nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +141 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +141 -69
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +104 -69
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +103 -68
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +103 -68
- nautobot/project-static/docs/development/apps/api/configuration-view.html +103 -68
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/global-search.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/graphql.html +103 -68
- nautobot/project-static/docs/development/apps/api/models/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +103 -68
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +103 -68
- nautobot/project-static/docs/development/apps/api/prometheus.html +103 -68
- nautobot/project-static/docs/development/apps/api/setup.html +103 -68
- nautobot/project-static/docs/development/apps/api/testing.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +103 -68
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/base-template.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/index.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/notes.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +103 -68
- nautobot/project-static/docs/development/apps/api/views/urls.html +103 -68
- nautobot/project-static/docs/development/apps/index.html +103 -68
- nautobot/project-static/docs/development/apps/migration/code-updates.html +103 -68
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +103 -68
- nautobot/project-static/docs/development/apps/migration/from-v1.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +103 -68
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +103 -68
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +103 -68
- nautobot/project-static/docs/development/core/application-registry.html +103 -68
- nautobot/project-static/docs/development/core/best-practices.html +121 -76
- nautobot/project-static/docs/development/core/bootstrap-ui.html +103 -68
- nautobot/project-static/docs/development/core/caching.html +103 -68
- nautobot/project-static/docs/development/core/controllers.html +106 -71
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +103 -68
- nautobot/project-static/docs/development/core/extending-models.html +13 -8187
- nautobot/project-static/docs/development/core/generic-views.html +118 -83
- nautobot/project-static/docs/development/core/getting-started.html +103 -68
- nautobot/project-static/docs/development/core/homepage.html +121 -86
- nautobot/project-static/docs/development/core/index.html +103 -68
- nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
- nautobot/project-static/docs/development/core/model-features.html +106 -71
- nautobot/project-static/docs/development/core/natural-keys.html +103 -68
- nautobot/project-static/docs/development/core/navigation-menu.html +103 -68
- nautobot/project-static/docs/development/core/release-checklist.html +103 -68
- nautobot/project-static/docs/development/core/role-internals.html +103 -68
- nautobot/project-static/docs/development/core/settings.html +103 -68
- nautobot/project-static/docs/development/core/style-guide.html +103 -68
- nautobot/project-static/docs/development/core/templates.html +103 -68
- nautobot/project-static/docs/development/core/testing.html +103 -68
- nautobot/project-static/docs/development/core/user-preferences.html +103 -68
- nautobot/project-static/docs/development/extending-models.html +3 -3
- nautobot/project-static/docs/development/index.html +103 -68
- nautobot/project-static/docs/development/jobs/index.html +104 -69
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +103 -68
- nautobot/project-static/docs/index.html +102 -70
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.0.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.1.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.2.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.3.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.4.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.5.html +103 -68
- nautobot/project-static/docs/release-notes/version-1.6.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.0.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.1.html +103 -68
- nautobot/project-static/docs/release-notes/version-2.2.html +334 -97
- nautobot/project-static/docs/requirements.txt +3 -3
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +258 -258
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +168 -68
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +103 -68
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +107 -68
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +103 -68
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +106 -71
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +103 -68
- nautobot/project-static/docs/user-guide/administration/installation/services.html +103 -68
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +103 -68
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +103 -68
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +103 -68
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +103 -68
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +114 -68
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +114 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +103 -68
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +103 -68
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +103 -68
- nautobot/project-static/docs/user-guide/index.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +103 -68
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +103 -68
- nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
- nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
- nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/METADATA +22 -22
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/RECORD +339 -338
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
- nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
- nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
- nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/NOTICE +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/WHEEL +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.1.dist-info}/entry_points.txt +0 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
<link rel="icon" href="../../../../../assets/favicon.ico">
|
|
21
|
-
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
<link rel="stylesheet" href="../../../../../assets/stylesheets/main.
|
|
29
|
+
<link rel="stylesheet" href="../../../../../assets/stylesheets/main.bcfcd587.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -401,16 +401,17 @@
|
|
|
401
401
|
|
|
402
402
|
|
|
403
403
|
|
|
404
|
-
|
|
405
|
-
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
406
407
|
|
|
407
408
|
|
|
409
|
+
|
|
408
410
|
|
|
409
411
|
<li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
|
|
410
412
|
|
|
411
413
|
|
|
412
414
|
|
|
413
|
-
|
|
414
415
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
|
|
415
416
|
|
|
416
417
|
|
|
@@ -451,13 +452,14 @@
|
|
|
451
452
|
|
|
452
453
|
|
|
453
454
|
|
|
455
|
+
|
|
456
|
+
|
|
454
457
|
|
|
455
458
|
|
|
456
459
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
457
460
|
|
|
458
461
|
|
|
459
462
|
|
|
460
|
-
|
|
461
463
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" checked>
|
|
462
464
|
|
|
463
465
|
|
|
@@ -488,13 +490,14 @@
|
|
|
488
490
|
|
|
489
491
|
|
|
490
492
|
|
|
493
|
+
|
|
494
|
+
|
|
491
495
|
|
|
492
496
|
|
|
493
497
|
<li class="md-nav__item md-nav__item--nested">
|
|
494
498
|
|
|
495
499
|
|
|
496
500
|
|
|
497
|
-
|
|
498
501
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
|
|
499
502
|
|
|
500
503
|
|
|
@@ -745,13 +748,14 @@
|
|
|
745
748
|
|
|
746
749
|
|
|
747
750
|
|
|
751
|
+
|
|
752
|
+
|
|
748
753
|
|
|
749
754
|
|
|
750
755
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
751
756
|
|
|
752
757
|
|
|
753
758
|
|
|
754
|
-
|
|
755
759
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" checked>
|
|
756
760
|
|
|
757
761
|
|
|
@@ -826,13 +830,14 @@
|
|
|
826
830
|
|
|
827
831
|
|
|
828
832
|
|
|
833
|
+
|
|
834
|
+
|
|
829
835
|
|
|
830
836
|
|
|
831
837
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
832
838
|
|
|
833
839
|
|
|
834
840
|
|
|
835
|
-
|
|
836
841
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" checked>
|
|
837
842
|
|
|
838
843
|
|
|
@@ -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
|
|
|
@@ -1165,13 +1171,14 @@
|
|
|
1165
1171
|
|
|
1166
1172
|
|
|
1167
1173
|
|
|
1174
|
+
|
|
1175
|
+
|
|
1168
1176
|
|
|
1169
1177
|
|
|
1170
1178
|
<li class="md-nav__item md-nav__item--nested">
|
|
1171
1179
|
|
|
1172
1180
|
|
|
1173
1181
|
|
|
1174
|
-
|
|
1175
1182
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1176
1183
|
|
|
1177
1184
|
|
|
@@ -1252,13 +1259,14 @@
|
|
|
1252
1259
|
|
|
1253
1260
|
|
|
1254
1261
|
|
|
1262
|
+
|
|
1263
|
+
|
|
1255
1264
|
|
|
1256
1265
|
|
|
1257
1266
|
<li class="md-nav__item md-nav__item--nested">
|
|
1258
1267
|
|
|
1259
1268
|
|
|
1260
1269
|
|
|
1261
|
-
|
|
1262
1270
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1263
1271
|
|
|
1264
1272
|
|
|
@@ -1360,13 +1368,14 @@
|
|
|
1360
1368
|
|
|
1361
1369
|
|
|
1362
1370
|
|
|
1371
|
+
|
|
1372
|
+
|
|
1363
1373
|
|
|
1364
1374
|
|
|
1365
1375
|
<li class="md-nav__item md-nav__item--nested">
|
|
1366
1376
|
|
|
1367
1377
|
|
|
1368
1378
|
|
|
1369
|
-
|
|
1370
1379
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1371
1380
|
|
|
1372
1381
|
|
|
@@ -1476,13 +1485,14 @@
|
|
|
1476
1485
|
|
|
1477
1486
|
|
|
1478
1487
|
|
|
1488
|
+
|
|
1489
|
+
|
|
1479
1490
|
|
|
1480
1491
|
|
|
1481
1492
|
<li class="md-nav__item md-nav__item--nested">
|
|
1482
1493
|
|
|
1483
1494
|
|
|
1484
1495
|
|
|
1485
|
-
|
|
1486
1496
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1487
1497
|
|
|
1488
1498
|
|
|
@@ -1563,13 +1573,14 @@
|
|
|
1563
1573
|
|
|
1564
1574
|
|
|
1565
1575
|
|
|
1576
|
+
|
|
1577
|
+
|
|
1566
1578
|
|
|
1567
1579
|
|
|
1568
1580
|
<li class="md-nav__item md-nav__item--nested">
|
|
1569
1581
|
|
|
1570
1582
|
|
|
1571
1583
|
|
|
1572
|
-
|
|
1573
1584
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1574
1585
|
|
|
1575
1586
|
|
|
@@ -1784,13 +1795,14 @@
|
|
|
1784
1795
|
|
|
1785
1796
|
|
|
1786
1797
|
|
|
1798
|
+
|
|
1799
|
+
|
|
1787
1800
|
|
|
1788
1801
|
|
|
1789
1802
|
<li class="md-nav__item md-nav__item--nested">
|
|
1790
1803
|
|
|
1791
1804
|
|
|
1792
1805
|
|
|
1793
|
-
|
|
1794
1806
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1795
1807
|
|
|
1796
1808
|
|
|
@@ -1821,13 +1833,14 @@
|
|
|
1821
1833
|
|
|
1822
1834
|
|
|
1823
1835
|
|
|
1836
|
+
|
|
1837
|
+
|
|
1824
1838
|
|
|
1825
1839
|
|
|
1826
1840
|
<li class="md-nav__item md-nav__item--nested">
|
|
1827
1841
|
|
|
1828
1842
|
|
|
1829
1843
|
|
|
1830
|
-
|
|
1831
1844
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1832
1845
|
|
|
1833
1846
|
|
|
@@ -2197,13 +2210,14 @@
|
|
|
2197
2210
|
|
|
2198
2211
|
|
|
2199
2212
|
|
|
2213
|
+
|
|
2214
|
+
|
|
2200
2215
|
|
|
2201
2216
|
|
|
2202
2217
|
<li class="md-nav__item md-nav__item--nested">
|
|
2203
2218
|
|
|
2204
2219
|
|
|
2205
2220
|
|
|
2206
|
-
|
|
2207
2221
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2208
2222
|
|
|
2209
2223
|
|
|
@@ -2234,13 +2248,14 @@
|
|
|
2234
2248
|
|
|
2235
2249
|
|
|
2236
2250
|
|
|
2251
|
+
|
|
2252
|
+
|
|
2237
2253
|
|
|
2238
2254
|
|
|
2239
2255
|
<li class="md-nav__item md-nav__item--nested">
|
|
2240
2256
|
|
|
2241
2257
|
|
|
2242
2258
|
|
|
2243
|
-
|
|
2244
2259
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2245
2260
|
|
|
2246
2261
|
|
|
@@ -2300,13 +2315,14 @@
|
|
|
2300
2315
|
|
|
2301
2316
|
|
|
2302
2317
|
|
|
2318
|
+
|
|
2319
|
+
|
|
2303
2320
|
|
|
2304
2321
|
|
|
2305
2322
|
<li class="md-nav__item md-nav__item--nested">
|
|
2306
2323
|
|
|
2307
2324
|
|
|
2308
2325
|
|
|
2309
|
-
|
|
2310
2326
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2311
2327
|
|
|
2312
2328
|
|
|
@@ -2450,13 +2466,14 @@
|
|
|
2450
2466
|
|
|
2451
2467
|
|
|
2452
2468
|
|
|
2469
|
+
|
|
2470
|
+
|
|
2453
2471
|
|
|
2454
2472
|
|
|
2455
2473
|
<li class="md-nav__item md-nav__item--nested">
|
|
2456
2474
|
|
|
2457
2475
|
|
|
2458
2476
|
|
|
2459
|
-
|
|
2460
2477
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2461
2478
|
|
|
2462
2479
|
|
|
@@ -2634,13 +2651,14 @@
|
|
|
2634
2651
|
|
|
2635
2652
|
|
|
2636
2653
|
|
|
2654
|
+
|
|
2655
|
+
|
|
2637
2656
|
|
|
2638
2657
|
|
|
2639
2658
|
<li class="md-nav__item md-nav__item--nested">
|
|
2640
2659
|
|
|
2641
2660
|
|
|
2642
2661
|
|
|
2643
|
-
|
|
2644
2662
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2645
2663
|
|
|
2646
2664
|
|
|
@@ -2855,13 +2873,14 @@
|
|
|
2855
2873
|
|
|
2856
2874
|
|
|
2857
2875
|
|
|
2876
|
+
|
|
2877
|
+
|
|
2858
2878
|
|
|
2859
2879
|
|
|
2860
2880
|
<li class="md-nav__item md-nav__item--nested">
|
|
2861
2881
|
|
|
2862
2882
|
|
|
2863
2883
|
|
|
2864
|
-
|
|
2865
2884
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2866
2885
|
|
|
2867
2886
|
|
|
@@ -3336,13 +3355,14 @@
|
|
|
3336
3355
|
|
|
3337
3356
|
|
|
3338
3357
|
|
|
3358
|
+
|
|
3359
|
+
|
|
3339
3360
|
|
|
3340
3361
|
|
|
3341
3362
|
<li class="md-nav__item md-nav__item--nested">
|
|
3342
3363
|
|
|
3343
3364
|
|
|
3344
3365
|
|
|
3345
|
-
|
|
3346
3366
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3347
3367
|
|
|
3348
3368
|
|
|
@@ -3465,13 +3485,14 @@
|
|
|
3465
3485
|
|
|
3466
3486
|
|
|
3467
3487
|
|
|
3488
|
+
|
|
3489
|
+
|
|
3468
3490
|
|
|
3469
3491
|
|
|
3470
3492
|
<li class="md-nav__item md-nav__item--nested">
|
|
3471
3493
|
|
|
3472
3494
|
|
|
3473
3495
|
|
|
3474
|
-
|
|
3475
3496
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3476
3497
|
|
|
3477
3498
|
|
|
@@ -3699,13 +3720,14 @@
|
|
|
3699
3720
|
|
|
3700
3721
|
|
|
3701
3722
|
|
|
3723
|
+
|
|
3724
|
+
|
|
3702
3725
|
|
|
3703
3726
|
|
|
3704
3727
|
<li class="md-nav__item md-nav__item--nested">
|
|
3705
3728
|
|
|
3706
3729
|
|
|
3707
3730
|
|
|
3708
|
-
|
|
3709
3731
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3710
3732
|
|
|
3711
3733
|
|
|
@@ -3786,13 +3808,14 @@
|
|
|
3786
3808
|
|
|
3787
3809
|
|
|
3788
3810
|
|
|
3811
|
+
|
|
3812
|
+
|
|
3789
3813
|
|
|
3790
3814
|
|
|
3791
3815
|
<li class="md-nav__item md-nav__item--nested">
|
|
3792
3816
|
|
|
3793
3817
|
|
|
3794
3818
|
|
|
3795
|
-
|
|
3796
3819
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3797
3820
|
|
|
3798
3821
|
|
|
@@ -3944,13 +3967,14 @@
|
|
|
3944
3967
|
|
|
3945
3968
|
|
|
3946
3969
|
|
|
3970
|
+
|
|
3971
|
+
|
|
3947
3972
|
|
|
3948
3973
|
|
|
3949
3974
|
<li class="md-nav__item md-nav__item--nested">
|
|
3950
3975
|
|
|
3951
3976
|
|
|
3952
3977
|
|
|
3953
|
-
|
|
3954
3978
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
3955
3979
|
|
|
3956
3980
|
|
|
@@ -4149,13 +4173,14 @@
|
|
|
4149
4173
|
|
|
4150
4174
|
|
|
4151
4175
|
|
|
4176
|
+
|
|
4177
|
+
|
|
4152
4178
|
|
|
4153
4179
|
|
|
4154
4180
|
<li class="md-nav__item md-nav__item--nested">
|
|
4155
4181
|
|
|
4156
4182
|
|
|
4157
4183
|
|
|
4158
|
-
|
|
4159
4184
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4160
4185
|
|
|
4161
4186
|
|
|
@@ -4244,13 +4269,14 @@
|
|
|
4244
4269
|
|
|
4245
4270
|
|
|
4246
4271
|
|
|
4272
|
+
|
|
4273
|
+
|
|
4247
4274
|
|
|
4248
4275
|
|
|
4249
4276
|
<li class="md-nav__item md-nav__item--nested">
|
|
4250
4277
|
|
|
4251
4278
|
|
|
4252
4279
|
|
|
4253
|
-
|
|
4254
4280
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4255
4281
|
|
|
4256
4282
|
|
|
@@ -4444,13 +4470,14 @@
|
|
|
4444
4470
|
|
|
4445
4471
|
|
|
4446
4472
|
|
|
4473
|
+
|
|
4474
|
+
|
|
4447
4475
|
|
|
4448
4476
|
|
|
4449
4477
|
<li class="md-nav__item md-nav__item--nested">
|
|
4450
4478
|
|
|
4451
4479
|
|
|
4452
4480
|
|
|
4453
|
-
|
|
4454
4481
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4455
4482
|
|
|
4456
4483
|
|
|
@@ -4665,13 +4692,14 @@
|
|
|
4665
4692
|
|
|
4666
4693
|
|
|
4667
4694
|
|
|
4695
|
+
|
|
4696
|
+
|
|
4668
4697
|
|
|
4669
4698
|
|
|
4670
4699
|
<li class="md-nav__item md-nav__item--nested">
|
|
4671
4700
|
|
|
4672
4701
|
|
|
4673
4702
|
|
|
4674
|
-
|
|
4675
4703
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4676
4704
|
|
|
4677
4705
|
|
|
@@ -4788,16 +4816,14 @@
|
|
|
4788
4816
|
|
|
4789
4817
|
|
|
4790
4818
|
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
4819
|
|
|
4794
4820
|
|
|
4795
4821
|
|
|
4796
|
-
|
|
4822
|
+
|
|
4823
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4797
4824
|
|
|
4798
4825
|
|
|
4799
4826
|
|
|
4800
|
-
|
|
4801
4827
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4802
4828
|
|
|
4803
4829
|
|
|
@@ -4814,7 +4840,7 @@
|
|
|
4814
4840
|
</a>
|
|
4815
4841
|
|
|
4816
4842
|
|
|
4817
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4843
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4818
4844
|
<span class="md-nav__icon md-icon"></span>
|
|
4819
4845
|
</label>
|
|
4820
4846
|
|
|
@@ -4836,13 +4862,14 @@
|
|
|
4836
4862
|
|
|
4837
4863
|
|
|
4838
4864
|
|
|
4865
|
+
|
|
4866
|
+
|
|
4839
4867
|
|
|
4840
4868
|
|
|
4841
4869
|
<li class="md-nav__item md-nav__item--nested">
|
|
4842
4870
|
|
|
4843
4871
|
|
|
4844
4872
|
|
|
4845
|
-
|
|
4846
4873
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4847
4874
|
|
|
4848
4875
|
|
|
@@ -4910,13 +4937,14 @@
|
|
|
4910
4937
|
|
|
4911
4938
|
|
|
4912
4939
|
|
|
4940
|
+
|
|
4941
|
+
|
|
4913
4942
|
|
|
4914
4943
|
|
|
4915
4944
|
<li class="md-nav__item md-nav__item--nested">
|
|
4916
4945
|
|
|
4917
4946
|
|
|
4918
4947
|
|
|
4919
|
-
|
|
4920
4948
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4921
4949
|
|
|
4922
4950
|
|
|
@@ -4997,13 +5025,14 @@
|
|
|
4997
5025
|
|
|
4998
5026
|
|
|
4999
5027
|
|
|
5028
|
+
|
|
5029
|
+
|
|
5000
5030
|
|
|
5001
5031
|
|
|
5002
5032
|
<li class="md-nav__item md-nav__item--nested">
|
|
5003
5033
|
|
|
5004
5034
|
|
|
5005
5035
|
|
|
5006
|
-
|
|
5007
5036
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
5008
5037
|
|
|
5009
5038
|
|
|
@@ -5113,13 +5142,14 @@
|
|
|
5113
5142
|
|
|
5114
5143
|
|
|
5115
5144
|
|
|
5145
|
+
|
|
5146
|
+
|
|
5116
5147
|
|
|
5117
5148
|
|
|
5118
5149
|
<li class="md-nav__item md-nav__item--nested">
|
|
5119
5150
|
|
|
5120
5151
|
|
|
5121
5152
|
|
|
5122
|
-
|
|
5123
5153
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5124
5154
|
|
|
5125
5155
|
|
|
@@ -5305,13 +5335,14 @@
|
|
|
5305
5335
|
|
|
5306
5336
|
|
|
5307
5337
|
|
|
5338
|
+
|
|
5339
|
+
|
|
5308
5340
|
|
|
5309
5341
|
|
|
5310
5342
|
<li class="md-nav__item md-nav__item--nested">
|
|
5311
5343
|
|
|
5312
5344
|
|
|
5313
5345
|
|
|
5314
|
-
|
|
5315
5346
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5316
5347
|
|
|
5317
5348
|
|
|
@@ -5421,13 +5452,14 @@
|
|
|
5421
5452
|
|
|
5422
5453
|
|
|
5423
5454
|
|
|
5455
|
+
|
|
5456
|
+
|
|
5424
5457
|
|
|
5425
5458
|
|
|
5426
5459
|
<li class="md-nav__item md-nav__item--nested">
|
|
5427
5460
|
|
|
5428
5461
|
|
|
5429
5462
|
|
|
5430
|
-
|
|
5431
5463
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5432
5464
|
|
|
5433
5465
|
|
|
@@ -5684,13 +5716,14 @@
|
|
|
5684
5716
|
|
|
5685
5717
|
|
|
5686
5718
|
|
|
5719
|
+
|
|
5720
|
+
|
|
5687
5721
|
|
|
5688
5722
|
|
|
5689
5723
|
<li class="md-nav__item md-nav__item--nested">
|
|
5690
5724
|
|
|
5691
5725
|
|
|
5692
5726
|
|
|
5693
|
-
|
|
5694
5727
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5695
5728
|
|
|
5696
5729
|
|
|
@@ -5863,13 +5896,14 @@
|
|
|
5863
5896
|
|
|
5864
5897
|
|
|
5865
5898
|
|
|
5899
|
+
|
|
5900
|
+
|
|
5866
5901
|
|
|
5867
5902
|
|
|
5868
5903
|
<li class="md-nav__item md-nav__item--nested">
|
|
5869
5904
|
|
|
5870
5905
|
|
|
5871
5906
|
|
|
5872
|
-
|
|
5873
5907
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5874
5908
|
|
|
5875
5909
|
|
|
@@ -6391,13 +6425,14 @@
|
|
|
6391
6425
|
|
|
6392
6426
|
|
|
6393
6427
|
|
|
6428
|
+
|
|
6429
|
+
|
|
6394
6430
|
|
|
6395
6431
|
|
|
6396
6432
|
<li class="md-nav__item md-nav__item--nested">
|
|
6397
6433
|
|
|
6398
6434
|
|
|
6399
6435
|
|
|
6400
|
-
|
|
6401
6436
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6402
6437
|
|
|
6403
6438
|
|
|
@@ -6491,13 +6526,14 @@
|
|
|
6491
6526
|
|
|
6492
6527
|
|
|
6493
6528
|
|
|
6529
|
+
|
|
6530
|
+
|
|
6494
6531
|
|
|
6495
6532
|
|
|
6496
6533
|
<li class="md-nav__item md-nav__item--nested">
|
|
6497
6534
|
|
|
6498
6535
|
|
|
6499
6536
|
|
|
6500
|
-
|
|
6501
6537
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6502
6538
|
|
|
6503
6539
|
|
|
@@ -6628,13 +6664,14 @@
|
|
|
6628
6664
|
|
|
6629
6665
|
|
|
6630
6666
|
|
|
6667
|
+
|
|
6668
|
+
|
|
6631
6669
|
|
|
6632
6670
|
|
|
6633
6671
|
<li class="md-nav__item md-nav__item--nested">
|
|
6634
6672
|
|
|
6635
6673
|
|
|
6636
6674
|
|
|
6637
|
-
|
|
6638
6675
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6639
6676
|
|
|
6640
6677
|
|
|
@@ -6702,13 +6739,14 @@
|
|
|
6702
6739
|
|
|
6703
6740
|
|
|
6704
6741
|
|
|
6742
|
+
|
|
6743
|
+
|
|
6705
6744
|
|
|
6706
6745
|
|
|
6707
6746
|
<li class="md-nav__item md-nav__item--nested">
|
|
6708
6747
|
|
|
6709
6748
|
|
|
6710
6749
|
|
|
6711
|
-
|
|
6712
6750
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6713
6751
|
|
|
6714
6752
|
|
|
@@ -6913,11 +6951,11 @@
|
|
|
6913
6951
|
|
|
6914
6952
|
|
|
6915
6953
|
<li class="md-nav__item">
|
|
6916
|
-
<a href="../../../../../development/core/
|
|
6954
|
+
<a href="../../../../../development/core/generic-views.html" class="md-nav__link">
|
|
6917
6955
|
|
|
6918
6956
|
|
|
6919
6957
|
<span class="md-ellipsis">
|
|
6920
|
-
|
|
6958
|
+
Generic Views
|
|
6921
6959
|
</span>
|
|
6922
6960
|
|
|
6923
6961
|
|
|
@@ -6934,11 +6972,11 @@
|
|
|
6934
6972
|
|
|
6935
6973
|
|
|
6936
6974
|
<li class="md-nav__item">
|
|
6937
|
-
<a href="../../../../../development/core/
|
|
6975
|
+
<a href="../../../../../development/core/homepage.html" class="md-nav__link">
|
|
6938
6976
|
|
|
6939
6977
|
|
|
6940
6978
|
<span class="md-ellipsis">
|
|
6941
|
-
|
|
6979
|
+
Home Page Panels
|
|
6942
6980
|
</span>
|
|
6943
6981
|
|
|
6944
6982
|
|
|
@@ -6955,11 +6993,11 @@
|
|
|
6955
6993
|
|
|
6956
6994
|
|
|
6957
6995
|
<li class="md-nav__item">
|
|
6958
|
-
<a href="../../../../../development/core/
|
|
6996
|
+
<a href="../../../../../development/core/model-checklist.html" class="md-nav__link">
|
|
6959
6997
|
|
|
6960
6998
|
|
|
6961
6999
|
<span class="md-ellipsis">
|
|
6962
|
-
|
|
7000
|
+
Model Development Checklist
|
|
6963
7001
|
</span>
|
|
6964
7002
|
|
|
6965
7003
|
|
|
@@ -7182,16 +7220,14 @@
|
|
|
7182
7220
|
|
|
7183
7221
|
|
|
7184
7222
|
|
|
7185
|
-
|
|
7186
|
-
|
|
7187
7223
|
|
|
7188
7224
|
|
|
7189
7225
|
|
|
7190
|
-
|
|
7226
|
+
|
|
7227
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7191
7228
|
|
|
7192
7229
|
|
|
7193
7230
|
|
|
7194
|
-
|
|
7195
7231
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7196
7232
|
|
|
7197
7233
|
|
|
@@ -7208,7 +7244,7 @@
|
|
|
7208
7244
|
</a>
|
|
7209
7245
|
|
|
7210
7246
|
|
|
7211
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7247
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7212
7248
|
<span class="md-nav__icon md-icon"></span>
|
|
7213
7249
|
</label>
|
|
7214
7250
|
|
|
@@ -7447,16 +7483,14 @@
|
|
|
7447
7483
|
|
|
7448
7484
|
|
|
7449
7485
|
|
|
7450
|
-
|
|
7451
|
-
|
|
7452
7486
|
|
|
7453
7487
|
|
|
7454
7488
|
|
|
7455
|
-
|
|
7489
|
+
|
|
7490
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7456
7491
|
|
|
7457
7492
|
|
|
7458
7493
|
|
|
7459
|
-
|
|
7460
7494
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7461
7495
|
|
|
7462
7496
|
|
|
@@ -7473,7 +7507,7 @@
|
|
|
7473
7507
|
</a>
|
|
7474
7508
|
|
|
7475
7509
|
|
|
7476
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7510
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7477
7511
|
<span class="md-nav__icon md-icon"></span>
|
|
7478
7512
|
</label>
|
|
7479
7513
|
|
|
@@ -7495,13 +7529,14 @@
|
|
|
7495
7529
|
|
|
7496
7530
|
|
|
7497
7531
|
|
|
7532
|
+
|
|
7533
|
+
|
|
7498
7534
|
|
|
7499
7535
|
|
|
7500
7536
|
<li class="md-nav__item md-nav__item--nested">
|
|
7501
7537
|
|
|
7502
7538
|
|
|
7503
7539
|
|
|
7504
|
-
|
|
7505
7540
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7506
7541
|
|
|
7507
7542
|
|
|
@@ -8104,9 +8139,9 @@
|
|
|
8104
8139
|
<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>
|
|
8105
8140
|
|
|
8106
8141
|
|
|
8107
|
-
<script src="../../../../../assets/javascripts/bundle.
|
|
8142
|
+
<script src="../../../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8108
8143
|
|
|
8109
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8144
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8110
8145
|
|
|
8111
8146
|
|
|
8112
8147
|
</body>
|