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
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
<link rel="icon" href="/projects/core/en/stable/assets/favicon.ico">
|
|
15
|
-
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.
|
|
15
|
+
<meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
<link rel="stylesheet" href="/projects/core/en/stable/assets/stylesheets/main.
|
|
23
|
+
<link rel="stylesheet" href="/projects/core/en/stable/assets/stylesheets/main.bcfcd587.min.css">
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
<link rel="stylesheet" href="/projects/core/en/stable/assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -386,16 +386,14 @@
|
|
|
386
386
|
|
|
387
387
|
|
|
388
388
|
|
|
389
|
-
|
|
390
|
-
|
|
391
389
|
|
|
392
390
|
|
|
393
391
|
|
|
394
|
-
|
|
392
|
+
|
|
393
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
395
394
|
|
|
396
395
|
|
|
397
396
|
|
|
398
|
-
|
|
399
397
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" >
|
|
400
398
|
|
|
401
399
|
|
|
@@ -412,7 +410,7 @@
|
|
|
412
410
|
</a>
|
|
413
411
|
|
|
414
412
|
|
|
415
|
-
<label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="">
|
|
413
|
+
<label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="0">
|
|
416
414
|
<span class="md-nav__icon md-icon"></span>
|
|
417
415
|
</label>
|
|
418
416
|
|
|
@@ -434,13 +432,14 @@
|
|
|
434
432
|
|
|
435
433
|
|
|
436
434
|
|
|
435
|
+
|
|
436
|
+
|
|
437
437
|
|
|
438
438
|
|
|
439
439
|
<li class="md-nav__item md-nav__item--nested">
|
|
440
440
|
|
|
441
441
|
|
|
442
442
|
|
|
443
|
-
|
|
444
443
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" >
|
|
445
444
|
|
|
446
445
|
|
|
@@ -471,13 +470,14 @@
|
|
|
471
470
|
|
|
472
471
|
|
|
473
472
|
|
|
473
|
+
|
|
474
|
+
|
|
474
475
|
|
|
475
476
|
|
|
476
477
|
<li class="md-nav__item md-nav__item--nested">
|
|
477
478
|
|
|
478
479
|
|
|
479
480
|
|
|
480
|
-
|
|
481
481
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
|
|
482
482
|
|
|
483
483
|
|
|
@@ -726,13 +726,14 @@
|
|
|
726
726
|
|
|
727
727
|
|
|
728
728
|
|
|
729
|
+
|
|
730
|
+
|
|
729
731
|
|
|
730
732
|
|
|
731
733
|
<li class="md-nav__item md-nav__item--nested">
|
|
732
734
|
|
|
733
735
|
|
|
734
736
|
|
|
735
|
-
|
|
736
737
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
|
|
737
738
|
|
|
738
739
|
|
|
@@ -805,13 +806,14 @@
|
|
|
805
806
|
|
|
806
807
|
|
|
807
808
|
|
|
809
|
+
|
|
810
|
+
|
|
808
811
|
|
|
809
812
|
|
|
810
813
|
<li class="md-nav__item md-nav__item--nested">
|
|
811
814
|
|
|
812
815
|
|
|
813
816
|
|
|
814
|
-
|
|
815
817
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
|
|
816
818
|
|
|
817
819
|
|
|
@@ -871,13 +873,14 @@
|
|
|
871
873
|
|
|
872
874
|
|
|
873
875
|
|
|
876
|
+
|
|
877
|
+
|
|
874
878
|
|
|
875
879
|
|
|
876
880
|
<li class="md-nav__item md-nav__item--nested">
|
|
877
881
|
|
|
878
882
|
|
|
879
883
|
|
|
880
|
-
|
|
881
884
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
|
|
882
885
|
|
|
883
886
|
|
|
@@ -1024,13 +1027,14 @@
|
|
|
1024
1027
|
|
|
1025
1028
|
|
|
1026
1029
|
|
|
1030
|
+
|
|
1031
|
+
|
|
1027
1032
|
|
|
1028
1033
|
|
|
1029
1034
|
<li class="md-nav__item md-nav__item--nested">
|
|
1030
1035
|
|
|
1031
1036
|
|
|
1032
1037
|
|
|
1033
|
-
|
|
1034
1038
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1035
1039
|
|
|
1036
1040
|
|
|
@@ -1111,13 +1115,14 @@
|
|
|
1111
1115
|
|
|
1112
1116
|
|
|
1113
1117
|
|
|
1118
|
+
|
|
1119
|
+
|
|
1114
1120
|
|
|
1115
1121
|
|
|
1116
1122
|
<li class="md-nav__item md-nav__item--nested">
|
|
1117
1123
|
|
|
1118
1124
|
|
|
1119
1125
|
|
|
1120
|
-
|
|
1121
1126
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1122
1127
|
|
|
1123
1128
|
|
|
@@ -1219,13 +1224,14 @@
|
|
|
1219
1224
|
|
|
1220
1225
|
|
|
1221
1226
|
|
|
1227
|
+
|
|
1228
|
+
|
|
1222
1229
|
|
|
1223
1230
|
|
|
1224
1231
|
<li class="md-nav__item md-nav__item--nested">
|
|
1225
1232
|
|
|
1226
1233
|
|
|
1227
1234
|
|
|
1228
|
-
|
|
1229
1235
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1230
1236
|
|
|
1231
1237
|
|
|
@@ -1335,13 +1341,14 @@
|
|
|
1335
1341
|
|
|
1336
1342
|
|
|
1337
1343
|
|
|
1344
|
+
|
|
1345
|
+
|
|
1338
1346
|
|
|
1339
1347
|
|
|
1340
1348
|
<li class="md-nav__item md-nav__item--nested">
|
|
1341
1349
|
|
|
1342
1350
|
|
|
1343
1351
|
|
|
1344
|
-
|
|
1345
1352
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1346
1353
|
|
|
1347
1354
|
|
|
@@ -1422,13 +1429,14 @@
|
|
|
1422
1429
|
|
|
1423
1430
|
|
|
1424
1431
|
|
|
1432
|
+
|
|
1433
|
+
|
|
1425
1434
|
|
|
1426
1435
|
|
|
1427
1436
|
<li class="md-nav__item md-nav__item--nested">
|
|
1428
1437
|
|
|
1429
1438
|
|
|
1430
1439
|
|
|
1431
|
-
|
|
1432
1440
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
|
|
1433
1441
|
|
|
1434
1442
|
|
|
@@ -1643,13 +1651,14 @@
|
|
|
1643
1651
|
|
|
1644
1652
|
|
|
1645
1653
|
|
|
1654
|
+
|
|
1655
|
+
|
|
1646
1656
|
|
|
1647
1657
|
|
|
1648
1658
|
<li class="md-nav__item md-nav__item--nested">
|
|
1649
1659
|
|
|
1650
1660
|
|
|
1651
1661
|
|
|
1652
|
-
|
|
1653
1662
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1654
1663
|
|
|
1655
1664
|
|
|
@@ -1680,13 +1689,14 @@
|
|
|
1680
1689
|
|
|
1681
1690
|
|
|
1682
1691
|
|
|
1692
|
+
|
|
1693
|
+
|
|
1683
1694
|
|
|
1684
1695
|
|
|
1685
1696
|
<li class="md-nav__item md-nav__item--nested">
|
|
1686
1697
|
|
|
1687
1698
|
|
|
1688
1699
|
|
|
1689
|
-
|
|
1690
1700
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1691
1701
|
|
|
1692
1702
|
|
|
@@ -2056,13 +2066,14 @@
|
|
|
2056
2066
|
|
|
2057
2067
|
|
|
2058
2068
|
|
|
2069
|
+
|
|
2070
|
+
|
|
2059
2071
|
|
|
2060
2072
|
|
|
2061
2073
|
<li class="md-nav__item md-nav__item--nested">
|
|
2062
2074
|
|
|
2063
2075
|
|
|
2064
2076
|
|
|
2065
|
-
|
|
2066
2077
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2067
2078
|
|
|
2068
2079
|
|
|
@@ -2093,13 +2104,14 @@
|
|
|
2093
2104
|
|
|
2094
2105
|
|
|
2095
2106
|
|
|
2107
|
+
|
|
2108
|
+
|
|
2096
2109
|
|
|
2097
2110
|
|
|
2098
2111
|
<li class="md-nav__item md-nav__item--nested">
|
|
2099
2112
|
|
|
2100
2113
|
|
|
2101
2114
|
|
|
2102
|
-
|
|
2103
2115
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2104
2116
|
|
|
2105
2117
|
|
|
@@ -2159,13 +2171,14 @@
|
|
|
2159
2171
|
|
|
2160
2172
|
|
|
2161
2173
|
|
|
2174
|
+
|
|
2175
|
+
|
|
2162
2176
|
|
|
2163
2177
|
|
|
2164
2178
|
<li class="md-nav__item md-nav__item--nested">
|
|
2165
2179
|
|
|
2166
2180
|
|
|
2167
2181
|
|
|
2168
|
-
|
|
2169
2182
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2170
2183
|
|
|
2171
2184
|
|
|
@@ -2309,13 +2322,14 @@
|
|
|
2309
2322
|
|
|
2310
2323
|
|
|
2311
2324
|
|
|
2325
|
+
|
|
2326
|
+
|
|
2312
2327
|
|
|
2313
2328
|
|
|
2314
2329
|
<li class="md-nav__item md-nav__item--nested">
|
|
2315
2330
|
|
|
2316
2331
|
|
|
2317
2332
|
|
|
2318
|
-
|
|
2319
2333
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2320
2334
|
|
|
2321
2335
|
|
|
@@ -2493,13 +2507,14 @@
|
|
|
2493
2507
|
|
|
2494
2508
|
|
|
2495
2509
|
|
|
2510
|
+
|
|
2511
|
+
|
|
2496
2512
|
|
|
2497
2513
|
|
|
2498
2514
|
<li class="md-nav__item md-nav__item--nested">
|
|
2499
2515
|
|
|
2500
2516
|
|
|
2501
2517
|
|
|
2502
|
-
|
|
2503
2518
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2504
2519
|
|
|
2505
2520
|
|
|
@@ -2714,13 +2729,14 @@
|
|
|
2714
2729
|
|
|
2715
2730
|
|
|
2716
2731
|
|
|
2732
|
+
|
|
2733
|
+
|
|
2717
2734
|
|
|
2718
2735
|
|
|
2719
2736
|
<li class="md-nav__item md-nav__item--nested">
|
|
2720
2737
|
|
|
2721
2738
|
|
|
2722
2739
|
|
|
2723
|
-
|
|
2724
2740
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2725
2741
|
|
|
2726
2742
|
|
|
@@ -3195,13 +3211,14 @@
|
|
|
3195
3211
|
|
|
3196
3212
|
|
|
3197
3213
|
|
|
3214
|
+
|
|
3215
|
+
|
|
3198
3216
|
|
|
3199
3217
|
|
|
3200
3218
|
<li class="md-nav__item md-nav__item--nested">
|
|
3201
3219
|
|
|
3202
3220
|
|
|
3203
3221
|
|
|
3204
|
-
|
|
3205
3222
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3206
3223
|
|
|
3207
3224
|
|
|
@@ -3324,13 +3341,14 @@
|
|
|
3324
3341
|
|
|
3325
3342
|
|
|
3326
3343
|
|
|
3344
|
+
|
|
3345
|
+
|
|
3327
3346
|
|
|
3328
3347
|
|
|
3329
3348
|
<li class="md-nav__item md-nav__item--nested">
|
|
3330
3349
|
|
|
3331
3350
|
|
|
3332
3351
|
|
|
3333
|
-
|
|
3334
3352
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3335
3353
|
|
|
3336
3354
|
|
|
@@ -3558,13 +3576,14 @@
|
|
|
3558
3576
|
|
|
3559
3577
|
|
|
3560
3578
|
|
|
3579
|
+
|
|
3580
|
+
|
|
3561
3581
|
|
|
3562
3582
|
|
|
3563
3583
|
<li class="md-nav__item md-nav__item--nested">
|
|
3564
3584
|
|
|
3565
3585
|
|
|
3566
3586
|
|
|
3567
|
-
|
|
3568
3587
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3569
3588
|
|
|
3570
3589
|
|
|
@@ -3645,13 +3664,14 @@
|
|
|
3645
3664
|
|
|
3646
3665
|
|
|
3647
3666
|
|
|
3667
|
+
|
|
3668
|
+
|
|
3648
3669
|
|
|
3649
3670
|
|
|
3650
3671
|
<li class="md-nav__item md-nav__item--nested">
|
|
3651
3672
|
|
|
3652
3673
|
|
|
3653
3674
|
|
|
3654
|
-
|
|
3655
3675
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3656
3676
|
|
|
3657
3677
|
|
|
@@ -3803,13 +3823,14 @@
|
|
|
3803
3823
|
|
|
3804
3824
|
|
|
3805
3825
|
|
|
3826
|
+
|
|
3827
|
+
|
|
3806
3828
|
|
|
3807
3829
|
|
|
3808
3830
|
<li class="md-nav__item md-nav__item--nested">
|
|
3809
3831
|
|
|
3810
3832
|
|
|
3811
3833
|
|
|
3812
|
-
|
|
3813
3834
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
3814
3835
|
|
|
3815
3836
|
|
|
@@ -4008,13 +4029,14 @@
|
|
|
4008
4029
|
|
|
4009
4030
|
|
|
4010
4031
|
|
|
4032
|
+
|
|
4033
|
+
|
|
4011
4034
|
|
|
4012
4035
|
|
|
4013
4036
|
<li class="md-nav__item md-nav__item--nested">
|
|
4014
4037
|
|
|
4015
4038
|
|
|
4016
4039
|
|
|
4017
|
-
|
|
4018
4040
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4019
4041
|
|
|
4020
4042
|
|
|
@@ -4103,13 +4125,14 @@
|
|
|
4103
4125
|
|
|
4104
4126
|
|
|
4105
4127
|
|
|
4128
|
+
|
|
4129
|
+
|
|
4106
4130
|
|
|
4107
4131
|
|
|
4108
4132
|
<li class="md-nav__item md-nav__item--nested">
|
|
4109
4133
|
|
|
4110
4134
|
|
|
4111
4135
|
|
|
4112
|
-
|
|
4113
4136
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4114
4137
|
|
|
4115
4138
|
|
|
@@ -4303,13 +4326,14 @@
|
|
|
4303
4326
|
|
|
4304
4327
|
|
|
4305
4328
|
|
|
4329
|
+
|
|
4330
|
+
|
|
4306
4331
|
|
|
4307
4332
|
|
|
4308
4333
|
<li class="md-nav__item md-nav__item--nested">
|
|
4309
4334
|
|
|
4310
4335
|
|
|
4311
4336
|
|
|
4312
|
-
|
|
4313
4337
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4314
4338
|
|
|
4315
4339
|
|
|
@@ -4524,13 +4548,14 @@
|
|
|
4524
4548
|
|
|
4525
4549
|
|
|
4526
4550
|
|
|
4551
|
+
|
|
4552
|
+
|
|
4527
4553
|
|
|
4528
4554
|
|
|
4529
4555
|
<li class="md-nav__item md-nav__item--nested">
|
|
4530
4556
|
|
|
4531
4557
|
|
|
4532
4558
|
|
|
4533
|
-
|
|
4534
4559
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4535
4560
|
|
|
4536
4561
|
|
|
@@ -4647,16 +4672,14 @@
|
|
|
4647
4672
|
|
|
4648
4673
|
|
|
4649
4674
|
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
4675
|
|
|
4653
4676
|
|
|
4654
4677
|
|
|
4655
|
-
|
|
4678
|
+
|
|
4679
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4656
4680
|
|
|
4657
4681
|
|
|
4658
4682
|
|
|
4659
|
-
|
|
4660
4683
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4661
4684
|
|
|
4662
4685
|
|
|
@@ -4673,7 +4696,7 @@
|
|
|
4673
4696
|
</a>
|
|
4674
4697
|
|
|
4675
4698
|
|
|
4676
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4699
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4677
4700
|
<span class="md-nav__icon md-icon"></span>
|
|
4678
4701
|
</label>
|
|
4679
4702
|
|
|
@@ -4695,13 +4718,14 @@
|
|
|
4695
4718
|
|
|
4696
4719
|
|
|
4697
4720
|
|
|
4721
|
+
|
|
4722
|
+
|
|
4698
4723
|
|
|
4699
4724
|
|
|
4700
4725
|
<li class="md-nav__item md-nav__item--nested">
|
|
4701
4726
|
|
|
4702
4727
|
|
|
4703
4728
|
|
|
4704
|
-
|
|
4705
4729
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4706
4730
|
|
|
4707
4731
|
|
|
@@ -4769,13 +4793,14 @@
|
|
|
4769
4793
|
|
|
4770
4794
|
|
|
4771
4795
|
|
|
4796
|
+
|
|
4797
|
+
|
|
4772
4798
|
|
|
4773
4799
|
|
|
4774
4800
|
<li class="md-nav__item md-nav__item--nested">
|
|
4775
4801
|
|
|
4776
4802
|
|
|
4777
4803
|
|
|
4778
|
-
|
|
4779
4804
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4780
4805
|
|
|
4781
4806
|
|
|
@@ -4856,13 +4881,14 @@
|
|
|
4856
4881
|
|
|
4857
4882
|
|
|
4858
4883
|
|
|
4884
|
+
|
|
4885
|
+
|
|
4859
4886
|
|
|
4860
4887
|
|
|
4861
4888
|
<li class="md-nav__item md-nav__item--nested">
|
|
4862
4889
|
|
|
4863
4890
|
|
|
4864
4891
|
|
|
4865
|
-
|
|
4866
4892
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
4867
4893
|
|
|
4868
4894
|
|
|
@@ -4972,13 +4998,14 @@
|
|
|
4972
4998
|
|
|
4973
4999
|
|
|
4974
5000
|
|
|
5001
|
+
|
|
5002
|
+
|
|
4975
5003
|
|
|
4976
5004
|
|
|
4977
5005
|
<li class="md-nav__item md-nav__item--nested">
|
|
4978
5006
|
|
|
4979
5007
|
|
|
4980
5008
|
|
|
4981
|
-
|
|
4982
5009
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
4983
5010
|
|
|
4984
5011
|
|
|
@@ -5164,13 +5191,14 @@
|
|
|
5164
5191
|
|
|
5165
5192
|
|
|
5166
5193
|
|
|
5194
|
+
|
|
5195
|
+
|
|
5167
5196
|
|
|
5168
5197
|
|
|
5169
5198
|
<li class="md-nav__item md-nav__item--nested">
|
|
5170
5199
|
|
|
5171
5200
|
|
|
5172
5201
|
|
|
5173
|
-
|
|
5174
5202
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5175
5203
|
|
|
5176
5204
|
|
|
@@ -5280,13 +5308,14 @@
|
|
|
5280
5308
|
|
|
5281
5309
|
|
|
5282
5310
|
|
|
5311
|
+
|
|
5312
|
+
|
|
5283
5313
|
|
|
5284
5314
|
|
|
5285
5315
|
<li class="md-nav__item md-nav__item--nested">
|
|
5286
5316
|
|
|
5287
5317
|
|
|
5288
5318
|
|
|
5289
|
-
|
|
5290
5319
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5291
5320
|
|
|
5292
5321
|
|
|
@@ -5543,13 +5572,14 @@
|
|
|
5543
5572
|
|
|
5544
5573
|
|
|
5545
5574
|
|
|
5575
|
+
|
|
5576
|
+
|
|
5546
5577
|
|
|
5547
5578
|
|
|
5548
5579
|
<li class="md-nav__item md-nav__item--nested">
|
|
5549
5580
|
|
|
5550
5581
|
|
|
5551
5582
|
|
|
5552
|
-
|
|
5553
5583
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5554
5584
|
|
|
5555
5585
|
|
|
@@ -5722,13 +5752,14 @@
|
|
|
5722
5752
|
|
|
5723
5753
|
|
|
5724
5754
|
|
|
5755
|
+
|
|
5756
|
+
|
|
5725
5757
|
|
|
5726
5758
|
|
|
5727
5759
|
<li class="md-nav__item md-nav__item--nested">
|
|
5728
5760
|
|
|
5729
5761
|
|
|
5730
5762
|
|
|
5731
|
-
|
|
5732
5763
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5733
5764
|
|
|
5734
5765
|
|
|
@@ -6250,13 +6281,14 @@
|
|
|
6250
6281
|
|
|
6251
6282
|
|
|
6252
6283
|
|
|
6284
|
+
|
|
6285
|
+
|
|
6253
6286
|
|
|
6254
6287
|
|
|
6255
6288
|
<li class="md-nav__item md-nav__item--nested">
|
|
6256
6289
|
|
|
6257
6290
|
|
|
6258
6291
|
|
|
6259
|
-
|
|
6260
6292
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6261
6293
|
|
|
6262
6294
|
|
|
@@ -6350,13 +6382,14 @@
|
|
|
6350
6382
|
|
|
6351
6383
|
|
|
6352
6384
|
|
|
6385
|
+
|
|
6386
|
+
|
|
6353
6387
|
|
|
6354
6388
|
|
|
6355
6389
|
<li class="md-nav__item md-nav__item--nested">
|
|
6356
6390
|
|
|
6357
6391
|
|
|
6358
6392
|
|
|
6359
|
-
|
|
6360
6393
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6361
6394
|
|
|
6362
6395
|
|
|
@@ -6487,13 +6520,14 @@
|
|
|
6487
6520
|
|
|
6488
6521
|
|
|
6489
6522
|
|
|
6523
|
+
|
|
6524
|
+
|
|
6490
6525
|
|
|
6491
6526
|
|
|
6492
6527
|
<li class="md-nav__item md-nav__item--nested">
|
|
6493
6528
|
|
|
6494
6529
|
|
|
6495
6530
|
|
|
6496
|
-
|
|
6497
6531
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6498
6532
|
|
|
6499
6533
|
|
|
@@ -6561,13 +6595,14 @@
|
|
|
6561
6595
|
|
|
6562
6596
|
|
|
6563
6597
|
|
|
6598
|
+
|
|
6599
|
+
|
|
6564
6600
|
|
|
6565
6601
|
|
|
6566
6602
|
<li class="md-nav__item md-nav__item--nested">
|
|
6567
6603
|
|
|
6568
6604
|
|
|
6569
6605
|
|
|
6570
|
-
|
|
6571
6606
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6572
6607
|
|
|
6573
6608
|
|
|
@@ -6772,11 +6807,11 @@
|
|
|
6772
6807
|
|
|
6773
6808
|
|
|
6774
6809
|
<li class="md-nav__item">
|
|
6775
|
-
<a href="/projects/core/en/stable/development/core/
|
|
6810
|
+
<a href="/projects/core/en/stable/development/core/generic-views.html" class="md-nav__link">
|
|
6776
6811
|
|
|
6777
6812
|
|
|
6778
6813
|
<span class="md-ellipsis">
|
|
6779
|
-
|
|
6814
|
+
Generic Views
|
|
6780
6815
|
</span>
|
|
6781
6816
|
|
|
6782
6817
|
|
|
@@ -6793,11 +6828,11 @@
|
|
|
6793
6828
|
|
|
6794
6829
|
|
|
6795
6830
|
<li class="md-nav__item">
|
|
6796
|
-
<a href="/projects/core/en/stable/development/core/
|
|
6831
|
+
<a href="/projects/core/en/stable/development/core/homepage.html" class="md-nav__link">
|
|
6797
6832
|
|
|
6798
6833
|
|
|
6799
6834
|
<span class="md-ellipsis">
|
|
6800
|
-
|
|
6835
|
+
Home Page Panels
|
|
6801
6836
|
</span>
|
|
6802
6837
|
|
|
6803
6838
|
|
|
@@ -6814,11 +6849,11 @@
|
|
|
6814
6849
|
|
|
6815
6850
|
|
|
6816
6851
|
<li class="md-nav__item">
|
|
6817
|
-
<a href="/projects/core/en/stable/development/core/
|
|
6852
|
+
<a href="/projects/core/en/stable/development/core/model-checklist.html" class="md-nav__link">
|
|
6818
6853
|
|
|
6819
6854
|
|
|
6820
6855
|
<span class="md-ellipsis">
|
|
6821
|
-
|
|
6856
|
+
Model Development Checklist
|
|
6822
6857
|
</span>
|
|
6823
6858
|
|
|
6824
6859
|
|
|
@@ -7041,16 +7076,14 @@
|
|
|
7041
7076
|
|
|
7042
7077
|
|
|
7043
7078
|
|
|
7044
|
-
|
|
7045
|
-
|
|
7046
7079
|
|
|
7047
7080
|
|
|
7048
7081
|
|
|
7049
|
-
|
|
7082
|
+
|
|
7083
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7050
7084
|
|
|
7051
7085
|
|
|
7052
7086
|
|
|
7053
|
-
|
|
7054
7087
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7055
7088
|
|
|
7056
7089
|
|
|
@@ -7067,7 +7100,7 @@
|
|
|
7067
7100
|
</a>
|
|
7068
7101
|
|
|
7069
7102
|
|
|
7070
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7103
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7071
7104
|
<span class="md-nav__icon md-icon"></span>
|
|
7072
7105
|
</label>
|
|
7073
7106
|
|
|
@@ -7306,16 +7339,14 @@
|
|
|
7306
7339
|
|
|
7307
7340
|
|
|
7308
7341
|
|
|
7309
|
-
|
|
7310
|
-
|
|
7311
7342
|
|
|
7312
7343
|
|
|
7313
7344
|
|
|
7314
|
-
|
|
7345
|
+
|
|
7346
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7315
7347
|
|
|
7316
7348
|
|
|
7317
7349
|
|
|
7318
|
-
|
|
7319
7350
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7320
7351
|
|
|
7321
7352
|
|
|
@@ -7332,7 +7363,7 @@
|
|
|
7332
7363
|
</a>
|
|
7333
7364
|
|
|
7334
7365
|
|
|
7335
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7366
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7336
7367
|
<span class="md-nav__icon md-icon"></span>
|
|
7337
7368
|
</label>
|
|
7338
7369
|
|
|
@@ -7354,13 +7385,14 @@
|
|
|
7354
7385
|
|
|
7355
7386
|
|
|
7356
7387
|
|
|
7388
|
+
|
|
7389
|
+
|
|
7357
7390
|
|
|
7358
7391
|
|
|
7359
7392
|
<li class="md-nav__item md-nav__item--nested">
|
|
7360
7393
|
|
|
7361
7394
|
|
|
7362
7395
|
|
|
7363
|
-
|
|
7364
7396
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7365
7397
|
|
|
7366
7398
|
|
|
@@ -7750,9 +7782,9 @@
|
|
|
7750
7782
|
<script id="__config" type="application/json">{"base": "/projects/core/en/stable/", "features": ["content.code.copy", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "/projects/core/en/stable/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>
|
|
7751
7783
|
|
|
7752
7784
|
|
|
7753
|
-
<script src="/projects/core/en/stable/assets/javascripts/bundle.
|
|
7785
|
+
<script src="/projects/core/en/stable/assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
7754
7786
|
|
|
7755
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
7787
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
7756
7788
|
|
|
7757
7789
|
|
|
7758
7790
|
</body>
|