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
|
|
|
@@ -743,13 +746,14 @@
|
|
|
743
746
|
|
|
744
747
|
|
|
745
748
|
|
|
749
|
+
|
|
750
|
+
|
|
746
751
|
|
|
747
752
|
|
|
748
753
|
<li class="md-nav__item md-nav__item--nested">
|
|
749
754
|
|
|
750
755
|
|
|
751
756
|
|
|
752
|
-
|
|
753
757
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
|
|
754
758
|
|
|
755
759
|
|
|
@@ -822,13 +826,14 @@
|
|
|
822
826
|
|
|
823
827
|
|
|
824
828
|
|
|
829
|
+
|
|
830
|
+
|
|
825
831
|
|
|
826
832
|
|
|
827
833
|
<li class="md-nav__item md-nav__item--nested">
|
|
828
834
|
|
|
829
835
|
|
|
830
836
|
|
|
831
|
-
|
|
832
837
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
|
|
833
838
|
|
|
834
839
|
|
|
@@ -888,13 +893,14 @@
|
|
|
888
893
|
|
|
889
894
|
|
|
890
895
|
|
|
896
|
+
|
|
897
|
+
|
|
891
898
|
|
|
892
899
|
|
|
893
900
|
<li class="md-nav__item md-nav__item--nested">
|
|
894
901
|
|
|
895
902
|
|
|
896
903
|
|
|
897
|
-
|
|
898
904
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
|
|
899
905
|
|
|
900
906
|
|
|
@@ -1041,13 +1047,14 @@
|
|
|
1041
1047
|
|
|
1042
1048
|
|
|
1043
1049
|
|
|
1050
|
+
|
|
1051
|
+
|
|
1044
1052
|
|
|
1045
1053
|
|
|
1046
1054
|
<li class="md-nav__item md-nav__item--nested">
|
|
1047
1055
|
|
|
1048
1056
|
|
|
1049
1057
|
|
|
1050
|
-
|
|
1051
1058
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
|
|
1052
1059
|
|
|
1053
1060
|
|
|
@@ -1128,13 +1135,14 @@
|
|
|
1128
1135
|
|
|
1129
1136
|
|
|
1130
1137
|
|
|
1138
|
+
|
|
1139
|
+
|
|
1131
1140
|
|
|
1132
1141
|
|
|
1133
1142
|
<li class="md-nav__item md-nav__item--nested">
|
|
1134
1143
|
|
|
1135
1144
|
|
|
1136
1145
|
|
|
1137
|
-
|
|
1138
1146
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
|
|
1139
1147
|
|
|
1140
1148
|
|
|
@@ -1236,13 +1244,14 @@
|
|
|
1236
1244
|
|
|
1237
1245
|
|
|
1238
1246
|
|
|
1247
|
+
|
|
1248
|
+
|
|
1239
1249
|
|
|
1240
1250
|
|
|
1241
1251
|
<li class="md-nav__item md-nav__item--nested">
|
|
1242
1252
|
|
|
1243
1253
|
|
|
1244
1254
|
|
|
1245
|
-
|
|
1246
1255
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
|
|
1247
1256
|
|
|
1248
1257
|
|
|
@@ -1352,13 +1361,14 @@
|
|
|
1352
1361
|
|
|
1353
1362
|
|
|
1354
1363
|
|
|
1364
|
+
|
|
1365
|
+
|
|
1355
1366
|
|
|
1356
1367
|
|
|
1357
1368
|
<li class="md-nav__item md-nav__item--nested">
|
|
1358
1369
|
|
|
1359
1370
|
|
|
1360
1371
|
|
|
1361
|
-
|
|
1362
1372
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
|
|
1363
1373
|
|
|
1364
1374
|
|
|
@@ -1441,13 +1451,14 @@
|
|
|
1441
1451
|
|
|
1442
1452
|
|
|
1443
1453
|
|
|
1454
|
+
|
|
1455
|
+
|
|
1444
1456
|
|
|
1445
1457
|
|
|
1446
1458
|
<li class="md-nav__item md-nav__item--active md-nav__item--nested">
|
|
1447
1459
|
|
|
1448
1460
|
|
|
1449
1461
|
|
|
1450
|
-
|
|
1451
1462
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" checked>
|
|
1452
1463
|
|
|
1453
1464
|
|
|
@@ -1753,13 +1764,14 @@
|
|
|
1753
1764
|
|
|
1754
1765
|
|
|
1755
1766
|
|
|
1767
|
+
|
|
1768
|
+
|
|
1756
1769
|
|
|
1757
1770
|
|
|
1758
1771
|
<li class="md-nav__item md-nav__item--nested">
|
|
1759
1772
|
|
|
1760
1773
|
|
|
1761
1774
|
|
|
1762
|
-
|
|
1763
1775
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
|
|
1764
1776
|
|
|
1765
1777
|
|
|
@@ -1790,13 +1802,14 @@
|
|
|
1790
1802
|
|
|
1791
1803
|
|
|
1792
1804
|
|
|
1805
|
+
|
|
1806
|
+
|
|
1793
1807
|
|
|
1794
1808
|
|
|
1795
1809
|
<li class="md-nav__item md-nav__item--nested">
|
|
1796
1810
|
|
|
1797
1811
|
|
|
1798
1812
|
|
|
1799
|
-
|
|
1800
1813
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
|
|
1801
1814
|
|
|
1802
1815
|
|
|
@@ -2166,13 +2179,14 @@
|
|
|
2166
2179
|
|
|
2167
2180
|
|
|
2168
2181
|
|
|
2182
|
+
|
|
2183
|
+
|
|
2169
2184
|
|
|
2170
2185
|
|
|
2171
2186
|
<li class="md-nav__item md-nav__item--nested">
|
|
2172
2187
|
|
|
2173
2188
|
|
|
2174
2189
|
|
|
2175
|
-
|
|
2176
2190
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
|
|
2177
2191
|
|
|
2178
2192
|
|
|
@@ -2203,13 +2217,14 @@
|
|
|
2203
2217
|
|
|
2204
2218
|
|
|
2205
2219
|
|
|
2220
|
+
|
|
2221
|
+
|
|
2206
2222
|
|
|
2207
2223
|
|
|
2208
2224
|
<li class="md-nav__item md-nav__item--nested">
|
|
2209
2225
|
|
|
2210
2226
|
|
|
2211
2227
|
|
|
2212
|
-
|
|
2213
2228
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
|
|
2214
2229
|
|
|
2215
2230
|
|
|
@@ -2269,13 +2284,14 @@
|
|
|
2269
2284
|
|
|
2270
2285
|
|
|
2271
2286
|
|
|
2287
|
+
|
|
2288
|
+
|
|
2272
2289
|
|
|
2273
2290
|
|
|
2274
2291
|
<li class="md-nav__item md-nav__item--nested">
|
|
2275
2292
|
|
|
2276
2293
|
|
|
2277
2294
|
|
|
2278
|
-
|
|
2279
2295
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
|
|
2280
2296
|
|
|
2281
2297
|
|
|
@@ -2419,13 +2435,14 @@
|
|
|
2419
2435
|
|
|
2420
2436
|
|
|
2421
2437
|
|
|
2438
|
+
|
|
2439
|
+
|
|
2422
2440
|
|
|
2423
2441
|
|
|
2424
2442
|
<li class="md-nav__item md-nav__item--nested">
|
|
2425
2443
|
|
|
2426
2444
|
|
|
2427
2445
|
|
|
2428
|
-
|
|
2429
2446
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
|
|
2430
2447
|
|
|
2431
2448
|
|
|
@@ -2603,13 +2620,14 @@
|
|
|
2603
2620
|
|
|
2604
2621
|
|
|
2605
2622
|
|
|
2623
|
+
|
|
2624
|
+
|
|
2606
2625
|
|
|
2607
2626
|
|
|
2608
2627
|
<li class="md-nav__item md-nav__item--nested">
|
|
2609
2628
|
|
|
2610
2629
|
|
|
2611
2630
|
|
|
2612
|
-
|
|
2613
2631
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
|
|
2614
2632
|
|
|
2615
2633
|
|
|
@@ -2824,13 +2842,14 @@
|
|
|
2824
2842
|
|
|
2825
2843
|
|
|
2826
2844
|
|
|
2845
|
+
|
|
2846
|
+
|
|
2827
2847
|
|
|
2828
2848
|
|
|
2829
2849
|
<li class="md-nav__item md-nav__item--nested">
|
|
2830
2850
|
|
|
2831
2851
|
|
|
2832
2852
|
|
|
2833
|
-
|
|
2834
2853
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
|
|
2835
2854
|
|
|
2836
2855
|
|
|
@@ -3305,13 +3324,14 @@
|
|
|
3305
3324
|
|
|
3306
3325
|
|
|
3307
3326
|
|
|
3327
|
+
|
|
3328
|
+
|
|
3308
3329
|
|
|
3309
3330
|
|
|
3310
3331
|
<li class="md-nav__item md-nav__item--nested">
|
|
3311
3332
|
|
|
3312
3333
|
|
|
3313
3334
|
|
|
3314
|
-
|
|
3315
3335
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
|
|
3316
3336
|
|
|
3317
3337
|
|
|
@@ -3434,13 +3454,14 @@
|
|
|
3434
3454
|
|
|
3435
3455
|
|
|
3436
3456
|
|
|
3457
|
+
|
|
3458
|
+
|
|
3437
3459
|
|
|
3438
3460
|
|
|
3439
3461
|
<li class="md-nav__item md-nav__item--nested">
|
|
3440
3462
|
|
|
3441
3463
|
|
|
3442
3464
|
|
|
3443
|
-
|
|
3444
3465
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
|
|
3445
3466
|
|
|
3446
3467
|
|
|
@@ -3668,13 +3689,14 @@
|
|
|
3668
3689
|
|
|
3669
3690
|
|
|
3670
3691
|
|
|
3692
|
+
|
|
3693
|
+
|
|
3671
3694
|
|
|
3672
3695
|
|
|
3673
3696
|
<li class="md-nav__item md-nav__item--nested">
|
|
3674
3697
|
|
|
3675
3698
|
|
|
3676
3699
|
|
|
3677
|
-
|
|
3678
3700
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
|
|
3679
3701
|
|
|
3680
3702
|
|
|
@@ -3755,13 +3777,14 @@
|
|
|
3755
3777
|
|
|
3756
3778
|
|
|
3757
3779
|
|
|
3780
|
+
|
|
3781
|
+
|
|
3758
3782
|
|
|
3759
3783
|
|
|
3760
3784
|
<li class="md-nav__item md-nav__item--nested">
|
|
3761
3785
|
|
|
3762
3786
|
|
|
3763
3787
|
|
|
3764
|
-
|
|
3765
3788
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
|
|
3766
3789
|
|
|
3767
3790
|
|
|
@@ -3913,13 +3936,14 @@
|
|
|
3913
3936
|
|
|
3914
3937
|
|
|
3915
3938
|
|
|
3939
|
+
|
|
3940
|
+
|
|
3916
3941
|
|
|
3917
3942
|
|
|
3918
3943
|
<li class="md-nav__item md-nav__item--nested">
|
|
3919
3944
|
|
|
3920
3945
|
|
|
3921
3946
|
|
|
3922
|
-
|
|
3923
3947
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
|
|
3924
3948
|
|
|
3925
3949
|
|
|
@@ -4118,13 +4142,14 @@
|
|
|
4118
4142
|
|
|
4119
4143
|
|
|
4120
4144
|
|
|
4145
|
+
|
|
4146
|
+
|
|
4121
4147
|
|
|
4122
4148
|
|
|
4123
4149
|
<li class="md-nav__item md-nav__item--nested">
|
|
4124
4150
|
|
|
4125
4151
|
|
|
4126
4152
|
|
|
4127
|
-
|
|
4128
4153
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
|
|
4129
4154
|
|
|
4130
4155
|
|
|
@@ -4213,13 +4238,14 @@
|
|
|
4213
4238
|
|
|
4214
4239
|
|
|
4215
4240
|
|
|
4241
|
+
|
|
4242
|
+
|
|
4216
4243
|
|
|
4217
4244
|
|
|
4218
4245
|
<li class="md-nav__item md-nav__item--nested">
|
|
4219
4246
|
|
|
4220
4247
|
|
|
4221
4248
|
|
|
4222
|
-
|
|
4223
4249
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
|
|
4224
4250
|
|
|
4225
4251
|
|
|
@@ -4413,13 +4439,14 @@
|
|
|
4413
4439
|
|
|
4414
4440
|
|
|
4415
4441
|
|
|
4442
|
+
|
|
4443
|
+
|
|
4416
4444
|
|
|
4417
4445
|
|
|
4418
4446
|
<li class="md-nav__item md-nav__item--nested">
|
|
4419
4447
|
|
|
4420
4448
|
|
|
4421
4449
|
|
|
4422
|
-
|
|
4423
4450
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
|
|
4424
4451
|
|
|
4425
4452
|
|
|
@@ -4634,13 +4661,14 @@
|
|
|
4634
4661
|
|
|
4635
4662
|
|
|
4636
4663
|
|
|
4664
|
+
|
|
4665
|
+
|
|
4637
4666
|
|
|
4638
4667
|
|
|
4639
4668
|
<li class="md-nav__item md-nav__item--nested">
|
|
4640
4669
|
|
|
4641
4670
|
|
|
4642
4671
|
|
|
4643
|
-
|
|
4644
4672
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
|
|
4645
4673
|
|
|
4646
4674
|
|
|
@@ -4757,16 +4785,14 @@
|
|
|
4757
4785
|
|
|
4758
4786
|
|
|
4759
4787
|
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
4788
|
|
|
4763
4789
|
|
|
4764
4790
|
|
|
4765
|
-
|
|
4791
|
+
|
|
4792
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
4766
4793
|
|
|
4767
4794
|
|
|
4768
4795
|
|
|
4769
|
-
|
|
4770
4796
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
|
|
4771
4797
|
|
|
4772
4798
|
|
|
@@ -4783,7 +4809,7 @@
|
|
|
4783
4809
|
</a>
|
|
4784
4810
|
|
|
4785
4811
|
|
|
4786
|
-
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
|
|
4812
|
+
<label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
|
|
4787
4813
|
<span class="md-nav__icon md-icon"></span>
|
|
4788
4814
|
</label>
|
|
4789
4815
|
|
|
@@ -4805,13 +4831,14 @@
|
|
|
4805
4831
|
|
|
4806
4832
|
|
|
4807
4833
|
|
|
4834
|
+
|
|
4835
|
+
|
|
4808
4836
|
|
|
4809
4837
|
|
|
4810
4838
|
<li class="md-nav__item md-nav__item--nested">
|
|
4811
4839
|
|
|
4812
4840
|
|
|
4813
4841
|
|
|
4814
|
-
|
|
4815
4842
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
|
|
4816
4843
|
|
|
4817
4844
|
|
|
@@ -4879,13 +4906,14 @@
|
|
|
4879
4906
|
|
|
4880
4907
|
|
|
4881
4908
|
|
|
4909
|
+
|
|
4910
|
+
|
|
4882
4911
|
|
|
4883
4912
|
|
|
4884
4913
|
<li class="md-nav__item md-nav__item--nested">
|
|
4885
4914
|
|
|
4886
4915
|
|
|
4887
4916
|
|
|
4888
|
-
|
|
4889
4917
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
|
|
4890
4918
|
|
|
4891
4919
|
|
|
@@ -4966,13 +4994,14 @@
|
|
|
4966
4994
|
|
|
4967
4995
|
|
|
4968
4996
|
|
|
4997
|
+
|
|
4998
|
+
|
|
4969
4999
|
|
|
4970
5000
|
|
|
4971
5001
|
<li class="md-nav__item md-nav__item--nested">
|
|
4972
5002
|
|
|
4973
5003
|
|
|
4974
5004
|
|
|
4975
|
-
|
|
4976
5005
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
|
|
4977
5006
|
|
|
4978
5007
|
|
|
@@ -5082,13 +5111,14 @@
|
|
|
5082
5111
|
|
|
5083
5112
|
|
|
5084
5113
|
|
|
5114
|
+
|
|
5115
|
+
|
|
5085
5116
|
|
|
5086
5117
|
|
|
5087
5118
|
<li class="md-nav__item md-nav__item--nested">
|
|
5088
5119
|
|
|
5089
5120
|
|
|
5090
5121
|
|
|
5091
|
-
|
|
5092
5122
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
|
|
5093
5123
|
|
|
5094
5124
|
|
|
@@ -5274,13 +5304,14 @@
|
|
|
5274
5304
|
|
|
5275
5305
|
|
|
5276
5306
|
|
|
5307
|
+
|
|
5308
|
+
|
|
5277
5309
|
|
|
5278
5310
|
|
|
5279
5311
|
<li class="md-nav__item md-nav__item--nested">
|
|
5280
5312
|
|
|
5281
5313
|
|
|
5282
5314
|
|
|
5283
|
-
|
|
5284
5315
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
|
|
5285
5316
|
|
|
5286
5317
|
|
|
@@ -5390,13 +5421,14 @@
|
|
|
5390
5421
|
|
|
5391
5422
|
|
|
5392
5423
|
|
|
5424
|
+
|
|
5425
|
+
|
|
5393
5426
|
|
|
5394
5427
|
|
|
5395
5428
|
<li class="md-nav__item md-nav__item--nested">
|
|
5396
5429
|
|
|
5397
5430
|
|
|
5398
5431
|
|
|
5399
|
-
|
|
5400
5432
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
|
|
5401
5433
|
|
|
5402
5434
|
|
|
@@ -5653,13 +5685,14 @@
|
|
|
5653
5685
|
|
|
5654
5686
|
|
|
5655
5687
|
|
|
5688
|
+
|
|
5689
|
+
|
|
5656
5690
|
|
|
5657
5691
|
|
|
5658
5692
|
<li class="md-nav__item md-nav__item--nested">
|
|
5659
5693
|
|
|
5660
5694
|
|
|
5661
5695
|
|
|
5662
|
-
|
|
5663
5696
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
|
|
5664
5697
|
|
|
5665
5698
|
|
|
@@ -5832,13 +5865,14 @@
|
|
|
5832
5865
|
|
|
5833
5866
|
|
|
5834
5867
|
|
|
5868
|
+
|
|
5869
|
+
|
|
5835
5870
|
|
|
5836
5871
|
|
|
5837
5872
|
<li class="md-nav__item md-nav__item--nested">
|
|
5838
5873
|
|
|
5839
5874
|
|
|
5840
5875
|
|
|
5841
|
-
|
|
5842
5876
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
|
|
5843
5877
|
|
|
5844
5878
|
|
|
@@ -6360,13 +6394,14 @@
|
|
|
6360
6394
|
|
|
6361
6395
|
|
|
6362
6396
|
|
|
6397
|
+
|
|
6398
|
+
|
|
6363
6399
|
|
|
6364
6400
|
|
|
6365
6401
|
<li class="md-nav__item md-nav__item--nested">
|
|
6366
6402
|
|
|
6367
6403
|
|
|
6368
6404
|
|
|
6369
|
-
|
|
6370
6405
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
|
|
6371
6406
|
|
|
6372
6407
|
|
|
@@ -6460,13 +6495,14 @@
|
|
|
6460
6495
|
|
|
6461
6496
|
|
|
6462
6497
|
|
|
6498
|
+
|
|
6499
|
+
|
|
6463
6500
|
|
|
6464
6501
|
|
|
6465
6502
|
<li class="md-nav__item md-nav__item--nested">
|
|
6466
6503
|
|
|
6467
6504
|
|
|
6468
6505
|
|
|
6469
|
-
|
|
6470
6506
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
|
|
6471
6507
|
|
|
6472
6508
|
|
|
@@ -6597,13 +6633,14 @@
|
|
|
6597
6633
|
|
|
6598
6634
|
|
|
6599
6635
|
|
|
6636
|
+
|
|
6637
|
+
|
|
6600
6638
|
|
|
6601
6639
|
|
|
6602
6640
|
<li class="md-nav__item md-nav__item--nested">
|
|
6603
6641
|
|
|
6604
6642
|
|
|
6605
6643
|
|
|
6606
|
-
|
|
6607
6644
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
|
|
6608
6645
|
|
|
6609
6646
|
|
|
@@ -6671,13 +6708,14 @@
|
|
|
6671
6708
|
|
|
6672
6709
|
|
|
6673
6710
|
|
|
6711
|
+
|
|
6712
|
+
|
|
6674
6713
|
|
|
6675
6714
|
|
|
6676
6715
|
<li class="md-nav__item md-nav__item--nested">
|
|
6677
6716
|
|
|
6678
6717
|
|
|
6679
6718
|
|
|
6680
|
-
|
|
6681
6719
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
|
|
6682
6720
|
|
|
6683
6721
|
|
|
@@ -6882,11 +6920,11 @@
|
|
|
6882
6920
|
|
|
6883
6921
|
|
|
6884
6922
|
<li class="md-nav__item">
|
|
6885
|
-
<a href="../../../development/core/
|
|
6923
|
+
<a href="../../../development/core/generic-views.html" class="md-nav__link">
|
|
6886
6924
|
|
|
6887
6925
|
|
|
6888
6926
|
<span class="md-ellipsis">
|
|
6889
|
-
|
|
6927
|
+
Generic Views
|
|
6890
6928
|
</span>
|
|
6891
6929
|
|
|
6892
6930
|
|
|
@@ -6903,11 +6941,11 @@
|
|
|
6903
6941
|
|
|
6904
6942
|
|
|
6905
6943
|
<li class="md-nav__item">
|
|
6906
|
-
<a href="../../../development/core/
|
|
6944
|
+
<a href="../../../development/core/homepage.html" class="md-nav__link">
|
|
6907
6945
|
|
|
6908
6946
|
|
|
6909
6947
|
<span class="md-ellipsis">
|
|
6910
|
-
|
|
6948
|
+
Home Page Panels
|
|
6911
6949
|
</span>
|
|
6912
6950
|
|
|
6913
6951
|
|
|
@@ -6924,11 +6962,11 @@
|
|
|
6924
6962
|
|
|
6925
6963
|
|
|
6926
6964
|
<li class="md-nav__item">
|
|
6927
|
-
<a href="../../../development/core/
|
|
6965
|
+
<a href="../../../development/core/model-checklist.html" class="md-nav__link">
|
|
6928
6966
|
|
|
6929
6967
|
|
|
6930
6968
|
<span class="md-ellipsis">
|
|
6931
|
-
|
|
6969
|
+
Model Development Checklist
|
|
6932
6970
|
</span>
|
|
6933
6971
|
|
|
6934
6972
|
|
|
@@ -7151,16 +7189,14 @@
|
|
|
7151
7189
|
|
|
7152
7190
|
|
|
7153
7191
|
|
|
7154
|
-
|
|
7155
|
-
|
|
7156
7192
|
|
|
7157
7193
|
|
|
7158
7194
|
|
|
7159
|
-
|
|
7195
|
+
|
|
7196
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7160
7197
|
|
|
7161
7198
|
|
|
7162
7199
|
|
|
7163
|
-
|
|
7164
7200
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
|
|
7165
7201
|
|
|
7166
7202
|
|
|
@@ -7177,7 +7213,7 @@
|
|
|
7177
7213
|
</a>
|
|
7178
7214
|
|
|
7179
7215
|
|
|
7180
|
-
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
|
|
7216
|
+
<label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
|
|
7181
7217
|
<span class="md-nav__icon md-icon"></span>
|
|
7182
7218
|
</label>
|
|
7183
7219
|
|
|
@@ -7416,16 +7452,14 @@
|
|
|
7416
7452
|
|
|
7417
7453
|
|
|
7418
7454
|
|
|
7419
|
-
|
|
7420
|
-
|
|
7421
7455
|
|
|
7422
7456
|
|
|
7423
7457
|
|
|
7424
|
-
|
|
7458
|
+
|
|
7459
|
+
<li class="md-nav__item md-nav__item--nested">
|
|
7425
7460
|
|
|
7426
7461
|
|
|
7427
7462
|
|
|
7428
|
-
|
|
7429
7463
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
|
|
7430
7464
|
|
|
7431
7465
|
|
|
@@ -7442,7 +7476,7 @@
|
|
|
7442
7476
|
</a>
|
|
7443
7477
|
|
|
7444
7478
|
|
|
7445
|
-
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
|
|
7479
|
+
<label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
|
|
7446
7480
|
<span class="md-nav__icon md-icon"></span>
|
|
7447
7481
|
</label>
|
|
7448
7482
|
|
|
@@ -7464,13 +7498,14 @@
|
|
|
7464
7498
|
|
|
7465
7499
|
|
|
7466
7500
|
|
|
7501
|
+
|
|
7502
|
+
|
|
7467
7503
|
|
|
7468
7504
|
|
|
7469
7505
|
<li class="md-nav__item md-nav__item--nested">
|
|
7470
7506
|
|
|
7471
7507
|
|
|
7472
7508
|
|
|
7473
|
-
|
|
7474
7509
|
<input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
|
|
7475
7510
|
|
|
7476
7511
|
|
|
@@ -7852,6 +7887,10 @@
|
|
|
7852
7887
|
<a id="__codelineno-0-13" name="__codelineno-0-13" href="#__codelineno-0-13"></a> <span class="p">}</span>
|
|
7853
7888
|
<a id="__codelineno-0-14" name="__codelineno-0-14" href="#__codelineno-0-14"></a><span class="p">}</span>
|
|
7854
7889
|
</code></pre></div>
|
|
7890
|
+
<div class="admonition version-added">
|
|
7891
|
+
<p class="admonition-title">Added in version 2.2.1</p>
|
|
7892
|
+
<p>In case the <code>/metrics</code> endpoint is not performant or not required, you can disable specific apps with the <a href="../configuration/optional-settings.html#metrics_disabled_apps"><code>METRICS_DISABLED_APPS</code></a> configuration setting.</p>
|
|
7893
|
+
</div>
|
|
7855
7894
|
<p>For more information see the <a href="https://github.com/korfuri/django-prometheus">django-prometheus</a> docs.</p>
|
|
7856
7895
|
<h2 id="authentication">Authentication<a class="headerlink" href="#authentication" title="Permanent link">¶</a></h2>
|
|
7857
7896
|
<div class="admonition version-added">
|
|
@@ -8033,9 +8072,9 @@
|
|
|
8033
8072
|
<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>
|
|
8034
8073
|
|
|
8035
8074
|
|
|
8036
|
-
<script src="../../../assets/javascripts/bundle.
|
|
8075
|
+
<script src="../../../assets/javascripts/bundle.bd41221c.min.js"></script>
|
|
8037
8076
|
|
|
8038
|
-
<script src="https://code.jquery.com/jquery-3.
|
|
8077
|
+
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
8039
8078
|
|
|
8040
8079
|
|
|
8041
8080
|
</body>
|