nautobot 2.4.14__py3-none-any.whl → 2.4.15__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/apps/choices.py +8 -0
- nautobot/apps/ui.py +14 -0
- nautobot/core/api/views.py +2 -0
- nautobot/core/choices.py +4 -0
- nautobot/core/filters.py +21 -41
- nautobot/core/management/commands/check_job_approval_status.py +47 -0
- nautobot/core/management/commands/generate_test_data.py +1 -1
- nautobot/core/management/commands/migrate.py +1 -1
- nautobot/core/models/tree_queries.py +17 -0
- nautobot/core/settings.py +2 -2
- nautobot/core/tables.py +25 -2
- nautobot/core/templates/base_django.html +1 -1
- nautobot/core/templates/components/panel/header_extra_content_table.html +1 -1
- nautobot/core/templates/generic/object_list.html +17 -20
- nautobot/core/templates/inc/breadcrumbs.html +14 -0
- nautobot/core/templatetags/buttons.py +2 -4
- nautobot/core/templatetags/helpers.py +29 -6
- nautobot/core/templatetags/ui_framework.py +21 -0
- nautobot/core/testing/filters.py +20 -3
- nautobot/core/testing/forms.py +1 -1
- nautobot/core/tests/integration/test_filters.py +2 -2
- nautobot/core/tests/test_breadcrumbs.py +366 -0
- nautobot/core/tests/test_commands.py +40 -0
- nautobot/core/tests/test_filters.py +51 -1
- nautobot/core/tests/test_forms.py +1 -1
- nautobot/core/tests/test_graphql.py +4 -4
- nautobot/core/tests/test_titles.py +183 -0
- nautobot/core/tests/test_tree_queries.py +30 -0
- nautobot/core/tests/test_views.py +2 -2
- nautobot/core/tests/test_views_utils.py +1 -1
- nautobot/core/ui/breadcrumbs.py +538 -0
- nautobot/core/ui/bulk_buttons.py +53 -0
- nautobot/core/ui/object_detail.py +31 -8
- nautobot/core/ui/titles.py +127 -0
- nautobot/core/ui/utils.py +25 -0
- nautobot/core/utils/migrations.py +1 -1
- nautobot/core/views/__init__.py +1 -1
- nautobot/core/views/mixins.py +26 -1
- nautobot/core/views/renderers.py +20 -2
- nautobot/core/views/utils.py +13 -12
- nautobot/dcim/api/serializers.py +9 -0
- nautobot/dcim/choices.py +53 -0
- nautobot/dcim/filters/__init__.py +15 -3
- nautobot/dcim/forms.py +120 -7
- nautobot/dcim/management/commands/trace_paths.py +1 -1
- nautobot/dcim/migrations/0072_alter_powerfeed_options_and_more.py +97 -0
- nautobot/dcim/models/device_component_templates.py +8 -0
- nautobot/dcim/models/device_components.py +31 -12
- nautobot/dcim/models/devices.py +1 -1
- nautobot/dcim/models/power.py +171 -10
- nautobot/dcim/models/racks.py +7 -4
- nautobot/dcim/tables/devices.py +2 -0
- nautobot/dcim/tables/devicetypes.py +1 -0
- nautobot/dcim/tables/power.py +30 -2
- nautobot/dcim/templates/dcim/device.html +2 -2
- nautobot/dcim/templates/dcim/devicetype_retrieve.html +1 -214
- nautobot/dcim/templates/dcim/location_retrieve.html +2 -2
- nautobot/dcim/templates/dcim/powerfeed_edit.html +8 -0
- nautobot/dcim/templates/dcim/powerfeed_retrieve.html +1 -1
- nautobot/dcim/tests/integration/test_device_bulk_operations.py +61 -0
- nautobot/dcim/tests/test_api.py +24 -4
- nautobot/dcim/tests/test_filters.py +91 -13
- nautobot/dcim/tests/test_models.py +262 -0
- nautobot/dcim/tests/test_views.py +20 -12
- nautobot/dcim/utils.py +9 -0
- nautobot/dcim/views.py +390 -77
- nautobot/extras/factory.py +19 -20
- nautobot/extras/filters/__init__.py +3 -2
- nautobot/extras/filters/mixins.py +15 -1
- nautobot/extras/forms/__init__.py +2 -1
- nautobot/extras/forms/forms.py +62 -0
- nautobot/extras/managers.py +4 -1
- nautobot/extras/migrations/0125_jobresult_date_started.py +18 -0
- nautobot/extras/models/customfields.py +1 -2
- nautobot/extras/models/datasources.py +1 -2
- nautobot/extras/models/jobs.py +7 -3
- nautobot/extras/plugins/views.py +24 -1
- nautobot/extras/secrets/__init__.py +1 -1
- nautobot/extras/tables.py +9 -0
- nautobot/extras/templates/extras/customfield.html +2 -129
- nautobot/extras/templates/extras/customfield_edit.html +2 -108
- nautobot/extras/templates/extras/customfield_retrieve.html +129 -0
- nautobot/extras/templates/extras/customfield_update.html +108 -0
- nautobot/extras/templates/extras/inc/jobresult.html +7 -3
- nautobot/extras/templates/extras/jobresult.html +2 -155
- nautobot/extras/templates/extras/jobresult_retrieve.html +155 -0
- nautobot/extras/templates/extras/marketplace.html +5 -6
- nautobot/extras/templates/extras/note.html +2 -53
- nautobot/extras/templates/extras/note_retrieve.html +53 -0
- nautobot/extras/templates/extras/plugins_list.html +5 -6
- nautobot/extras/templatetags/custom_links.py +2 -2
- nautobot/extras/templatetags/job_buttons.py +1 -1
- nautobot/extras/templatetags/plugins.py +1 -1
- nautobot/extras/tests/integration/test_computedfields.py +2 -2
- nautobot/extras/tests/integration/test_customfields.py +14 -11
- nautobot/extras/tests/integration/test_dynamicgroups.py +1 -1
- nautobot/extras/tests/integration/test_notes.py +1 -1
- nautobot/extras/tests/integration/test_plugins.py +6 -6
- nautobot/extras/tests/integration/test_relationships.py +2 -2
- nautobot/extras/tests/test_filters.py +9 -0
- nautobot/extras/tests/test_forms.py +2 -2
- nautobot/extras/tests/test_plugins.py +2 -3
- nautobot/extras/tests/test_relationships.py +7 -7
- nautobot/extras/tests/test_views.py +172 -1
- nautobot/extras/urls.py +3 -59
- nautobot/extras/utils.py +1 -1
- nautobot/extras/views.py +77 -178
- nautobot/ipam/tables.py +8 -15
- nautobot/ipam/tests/migration/test_migrations.py +8 -8
- nautobot/ipam/tests/test_api.py +2 -2
- nautobot/ipam/tests/test_models.py +1 -1
- nautobot/project-static/docs/404.html +23 -0
- nautobot/project-static/docs/apps/index.html +23 -0
- nautobot/project-static/docs/apps/nautobot-apps.html +23 -0
- nautobot/project-static/docs/assets/_mkdocstrings.css +44 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +28 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +25 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +128 -20
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +37 -4
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +39 -6
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +25 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +24 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +32 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +41 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +39 -7
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +43 -10
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +74 -59
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +143 -28
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +43 -12
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +135 -53
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +229 -36
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +27 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +30 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +162 -18
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +258 -51
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +5987 -2620
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +25 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +154 -55
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +150 -35
- nautobot/project-static/docs/development/apps/api/configuration-view.html +23 -0
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +23 -0
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +23 -0
- nautobot/project-static/docs/development/apps/api/models/global-search.html +23 -0
- nautobot/project-static/docs/development/apps/api/models/graphql.html +23 -0
- nautobot/project-static/docs/development/apps/api/models/index.html +23 -0
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +23 -0
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +23 -0
- nautobot/project-static/docs/development/apps/api/prometheus.html +23 -0
- nautobot/project-static/docs/development/apps/api/setup.html +23 -0
- nautobot/project-static/docs/development/apps/api/testing.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +23 -0
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/base-template.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/index.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +31 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/notes.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +23 -0
- nautobot/project-static/docs/development/apps/api/views/urls.html +23 -0
- nautobot/project-static/docs/development/apps/index.html +23 -0
- nautobot/project-static/docs/development/apps/migration/code-updates.html +23 -0
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +23 -0
- nautobot/project-static/docs/development/apps/migration/from-v1.html +23 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +23 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +23 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +23 -0
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +23 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +26 -3
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/breadcrumbs-titles.html +10544 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +23 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +23 -0
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +23 -0
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +26 -3
- nautobot/project-static/docs/development/core/application-registry.html +23 -0
- nautobot/project-static/docs/development/core/best-practices.html +23 -0
- nautobot/project-static/docs/development/core/bootstrap-ui.html +23 -0
- nautobot/project-static/docs/development/core/caching.html +23 -0
- nautobot/project-static/docs/development/core/controllers.html +23 -0
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +23 -0
- nautobot/project-static/docs/development/core/generic-views.html +23 -0
- nautobot/project-static/docs/development/core/getting-started.html +23 -0
- nautobot/project-static/docs/development/core/homepage.html +23 -0
- nautobot/project-static/docs/development/core/index.html +23 -0
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +23 -0
- nautobot/project-static/docs/development/core/model-checklist.html +23 -0
- nautobot/project-static/docs/development/core/model-features.html +23 -0
- nautobot/project-static/docs/development/core/natural-keys.html +23 -0
- nautobot/project-static/docs/development/core/navigation-menu.html +23 -0
- nautobot/project-static/docs/development/core/release-checklist.html +23 -0
- nautobot/project-static/docs/development/core/role-internals.html +23 -0
- nautobot/project-static/docs/development/core/settings.html +23 -0
- nautobot/project-static/docs/development/core/style-guide.html +23 -0
- nautobot/project-static/docs/development/core/templates.html +23 -0
- nautobot/project-static/docs/development/core/testing.html +23 -0
- nautobot/project-static/docs/development/core/ui-component-framework.html +713 -255
- nautobot/project-static/docs/development/core/user-preferences.html +23 -0
- nautobot/project-static/docs/development/index.html +23 -0
- nautobot/project-static/docs/development/jobs/getting-started.html +23 -0
- nautobot/project-static/docs/development/jobs/index.html +23 -0
- nautobot/project-static/docs/development/jobs/installation.html +23 -0
- nautobot/project-static/docs/development/jobs/job-extensions.html +23 -0
- nautobot/project-static/docs/development/jobs/job-logging.html +23 -0
- nautobot/project-static/docs/development/jobs/job-patterns.html +23 -0
- nautobot/project-static/docs/development/jobs/job-structure.html +23 -0
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +23 -0
- nautobot/project-static/docs/development/jobs/testing.html +23 -0
- nautobot/project-static/docs/index.html +23 -0
- nautobot/project-static/docs/media/development/core/ui-component-framework/breadcrumbs-titles-data-flow.png +0 -0
- nautobot/project-static/docs/media/power_distribution.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +23 -0
- nautobot/project-static/docs/overview/design_philosophy.html +23 -0
- nautobot/project-static/docs/release-notes/index.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.0.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.1.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.2.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.3.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.4.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.5.html +23 -0
- nautobot/project-static/docs/release-notes/version-1.6.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.0.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.1.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.2.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.3.html +23 -0
- nautobot/project-static/docs/release-notes/version-2.4.html +231 -0
- nautobot/project-static/docs/requirements.txt +2 -2
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +303 -299
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +23 -0
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +23 -0
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/index.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +23 -0
- nautobot/project-static/docs/user-guide/administration/installation/services.html +23 -0
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +23 -0
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +23 -0
- nautobot/project-static/docs/user-guide/administration/security/index.html +23 -0
- nautobot/project-static/docs/user-guide/administration/security/notices.html +23 -0
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +284 -219
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +23 -0
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulefamily.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +305 -5
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +24 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +136 -3
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +41 -1
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +40 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +23 -0
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +23 -0
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +23 -0
- nautobot/project-static/docs/user-guide/index.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +24 -1
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +23 -0
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +23 -0
- nautobot/users/tests/test_api.py +2 -2
- nautobot/virtualization/templates/virtualization/virtualmachine.html +2 -252
- nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +2 -75
- nautobot/virtualization/templates/virtualization/virtualmachine_retrieve.html +252 -0
- nautobot/virtualization/templates/virtualization/virtualmachine_update.html +75 -0
- nautobot/virtualization/urls.py +3 -61
- nautobot/virtualization/views.py +48 -72
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/METADATA +24 -24
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/RECORD +433 -416
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/NOTICE +0 -0
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/WHEEL +0 -0
- {nautobot-2.4.14.dist-info → nautobot-2.4.15.dist-info}/entry_points.txt +0 -0
|
@@ -9616,6 +9616,29 @@
|
|
|
9616
9616
|
|
|
9617
9617
|
|
|
9618
9618
|
|
|
9619
|
+
|
|
9620
|
+
|
|
9621
|
+
|
|
9622
|
+
|
|
9623
|
+
|
|
9624
|
+
|
|
9625
|
+
<li class="md-nav__item">
|
|
9626
|
+
<a href="../../../development/apps/migration/ui-component-framework/breadcrumbs-titles.html" class="md-nav__link">
|
|
9627
|
+
|
|
9628
|
+
|
|
9629
|
+
|
|
9630
|
+
<span class="md-ellipsis">
|
|
9631
|
+
Breadcrumbs and titles
|
|
9632
|
+
|
|
9633
|
+
</span>
|
|
9634
|
+
|
|
9635
|
+
|
|
9636
|
+
</a>
|
|
9637
|
+
</li>
|
|
9638
|
+
|
|
9639
|
+
|
|
9640
|
+
|
|
9641
|
+
|
|
9619
9642
|
</ul>
|
|
9620
9643
|
</nav>
|
|
9621
9644
|
|
|
@@ -11931,6 +11954,7 @@
|
|
|
11931
11954
|
|
|
11932
11955
|
|
|
11933
11956
|
|
|
11957
|
+
|
|
11934
11958
|
<div class="doc doc-children">
|
|
11935
11959
|
|
|
11936
11960
|
|
|
@@ -11953,7 +11977,7 @@
|
|
|
11953
11977
|
|
|
11954
11978
|
<div class="doc doc-contents ">
|
|
11955
11979
|
<p class="doc doc-class-bases">
|
|
11956
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.widgets.SelectWithDisabled" href="#nautobot.apps.forms.SelectWithDisabled">SelectWithDisabled</a></code></p>
|
|
11980
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.SelectWithDisabled (nautobot.core.forms.widgets.SelectWithDisabled)" href="#nautobot.apps.forms.SelectWithDisabled">SelectWithDisabled</a></code></p>
|
|
11957
11981
|
|
|
11958
11982
|
|
|
11959
11983
|
<p>A select widget populated via an API call</p>
|
|
@@ -11975,7 +11999,7 @@
|
|
|
11975
11999
|
<code>api_url</code>
|
|
11976
12000
|
</td>
|
|
11977
12001
|
<td>
|
|
11978
|
-
<code>str</code>
|
|
12002
|
+
<code><span title="str">str</span></code>
|
|
11979
12003
|
</td>
|
|
11980
12004
|
<td>
|
|
11981
12005
|
<div class="doc-md-description">
|
|
@@ -11991,7 +12015,7 @@
|
|
|
11991
12015
|
<code>api_version</code>
|
|
11992
12016
|
</td>
|
|
11993
12017
|
<td>
|
|
11994
|
-
<code>str</code>
|
|
12018
|
+
<code><span title="str">str</span></code>
|
|
11995
12019
|
</td>
|
|
11996
12020
|
<td>
|
|
11997
12021
|
<div class="doc-md-description">
|
|
@@ -12013,6 +12037,7 @@
|
|
|
12013
12037
|
|
|
12014
12038
|
|
|
12015
12039
|
|
|
12040
|
+
|
|
12016
12041
|
<div class="doc doc-children">
|
|
12017
12042
|
|
|
12018
12043
|
|
|
@@ -12038,6 +12063,7 @@
|
|
|
12038
12063
|
<p>:param name: The name of the query param
|
|
12039
12064
|
:param value: The value of the query param</p>
|
|
12040
12065
|
|
|
12066
|
+
|
|
12041
12067
|
</div>
|
|
12042
12068
|
|
|
12043
12069
|
</div>
|
|
@@ -12076,6 +12102,7 @@
|
|
|
12076
12102
|
|
|
12077
12103
|
|
|
12078
12104
|
|
|
12105
|
+
|
|
12079
12106
|
<div class="doc doc-children">
|
|
12080
12107
|
|
|
12081
12108
|
|
|
@@ -12107,7 +12134,7 @@
|
|
|
12107
12134
|
|
|
12108
12135
|
<div class="doc doc-contents ">
|
|
12109
12136
|
<p class="doc doc-class-bases">
|
|
12110
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.widgets.SlugWidget" href="#nautobot.apps.forms.SlugWidget">SlugWidget</a></code></p>
|
|
12137
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.SlugWidget (nautobot.core.forms.widgets.SlugWidget)" href="#nautobot.apps.forms.SlugWidget">SlugWidget</a></code></p>
|
|
12111
12138
|
|
|
12112
12139
|
|
|
12113
12140
|
<p>Subclass SlugWidget and add support for auto-populate JavaScript logic from <code>form.js</code>.</p>
|
|
@@ -12120,6 +12147,7 @@
|
|
|
12120
12147
|
|
|
12121
12148
|
|
|
12122
12149
|
|
|
12150
|
+
|
|
12123
12151
|
<div class="doc doc-children">
|
|
12124
12152
|
|
|
12125
12153
|
|
|
@@ -12170,6 +12198,7 @@
|
|
|
12170
12198
|
|
|
12171
12199
|
|
|
12172
12200
|
|
|
12201
|
+
|
|
12173
12202
|
<div class="doc doc-children">
|
|
12174
12203
|
|
|
12175
12204
|
|
|
@@ -12216,6 +12245,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12216
12245
|
|
|
12217
12246
|
|
|
12218
12247
|
|
|
12248
|
+
|
|
12219
12249
|
<div class="doc doc-children">
|
|
12220
12250
|
|
|
12221
12251
|
|
|
@@ -12239,6 +12269,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12239
12269
|
|
|
12240
12270
|
<p>Post save action</p>
|
|
12241
12271
|
|
|
12272
|
+
|
|
12242
12273
|
</div>
|
|
12243
12274
|
|
|
12244
12275
|
</div>
|
|
@@ -12277,6 +12308,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12277
12308
|
|
|
12278
12309
|
|
|
12279
12310
|
|
|
12311
|
+
|
|
12280
12312
|
<div class="doc doc-children">
|
|
12281
12313
|
|
|
12282
12314
|
|
|
@@ -12321,6 +12353,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12321
12353
|
|
|
12322
12354
|
|
|
12323
12355
|
|
|
12356
|
+
|
|
12324
12357
|
<div class="doc doc-children">
|
|
12325
12358
|
|
|
12326
12359
|
|
|
@@ -12366,6 +12399,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12366
12399
|
|
|
12367
12400
|
|
|
12368
12401
|
|
|
12402
|
+
|
|
12369
12403
|
<div class="doc doc-children">
|
|
12370
12404
|
|
|
12371
12405
|
|
|
@@ -12397,7 +12431,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12397
12431
|
|
|
12398
12432
|
<div class="doc doc-contents ">
|
|
12399
12433
|
<p class="doc doc-class-bases">
|
|
12400
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.fields.CSVModelChoiceField" href="#nautobot.apps.forms.CSVModelChoiceField">CSVModelChoiceField</a></code></p>
|
|
12434
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.CSVModelChoiceField (nautobot.core.forms.fields.CSVModelChoiceField)" href="#nautobot.apps.forms.CSVModelChoiceField">CSVModelChoiceField</a></code></p>
|
|
12401
12435
|
|
|
12402
12436
|
|
|
12403
12437
|
<p>Reference a ContentType in the form <code>{app_label}.{model}</code>.</p>
|
|
@@ -12411,6 +12445,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12411
12445
|
|
|
12412
12446
|
|
|
12413
12447
|
|
|
12448
|
+
|
|
12414
12449
|
<div class="doc doc-children">
|
|
12415
12450
|
|
|
12416
12451
|
|
|
@@ -12435,6 +12470,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12435
12470
|
<p>Allow this field to support <code>{app_label}.{model}</code> style, null values, or PK-based lookups
|
|
12436
12471
|
depending on how the field is used.</p>
|
|
12437
12472
|
|
|
12473
|
+
|
|
12438
12474
|
</div>
|
|
12439
12475
|
|
|
12440
12476
|
</div>
|
|
@@ -12485,7 +12521,7 @@ as that is now handled by the NautobotCSVParser class and the REST API serialize
|
|
|
12485
12521
|
<code>required_field_names</code>
|
|
12486
12522
|
</td>
|
|
12487
12523
|
<td>
|
|
12488
|
-
<code>list[str]</code>
|
|
12524
|
+
<code><span title="list">list</span>[<span title="str">str</span>]</code>
|
|
12489
12525
|
</td>
|
|
12490
12526
|
<td>
|
|
12491
12527
|
<div class="doc-md-description">
|
|
@@ -12507,6 +12543,7 @@ as that is now handled by the NautobotCSVParser class and the REST API serialize
|
|
|
12507
12543
|
|
|
12508
12544
|
|
|
12509
12545
|
|
|
12546
|
+
|
|
12510
12547
|
<div class="doc doc-children">
|
|
12511
12548
|
|
|
12512
12549
|
|
|
@@ -12553,6 +12590,7 @@ as that is now handled by the NautobotCSVParser class and the REST API serialize
|
|
|
12553
12590
|
|
|
12554
12591
|
|
|
12555
12592
|
|
|
12593
|
+
|
|
12556
12594
|
<div class="doc doc-children">
|
|
12557
12595
|
|
|
12558
12596
|
|
|
@@ -12576,6 +12614,7 @@ as that is now handled by the NautobotCSVParser class and the REST API serialize
|
|
|
12576
12614
|
|
|
12577
12615
|
<p>For parity with CSVDataField, this returns the CSV text rather than an UploadedFile object.</p>
|
|
12578
12616
|
|
|
12617
|
+
|
|
12579
12618
|
</div>
|
|
12580
12619
|
|
|
12581
12620
|
</div>
|
|
@@ -12616,6 +12655,7 @@ nothing to do with CSV data.</p>
|
|
|
12616
12655
|
|
|
12617
12656
|
|
|
12618
12657
|
|
|
12658
|
+
|
|
12619
12659
|
<div class="doc doc-children">
|
|
12620
12660
|
|
|
12621
12661
|
|
|
@@ -12662,6 +12702,7 @@ JSON/YAML imports of DeviceTypes and their component templates.</p>
|
|
|
12662
12702
|
|
|
12663
12703
|
|
|
12664
12704
|
|
|
12705
|
+
|
|
12665
12706
|
<div class="doc doc-children">
|
|
12666
12707
|
|
|
12667
12708
|
|
|
@@ -12693,7 +12734,7 @@ JSON/YAML imports of DeviceTypes and their component templates.</p>
|
|
|
12693
12734
|
|
|
12694
12735
|
<div class="doc doc-contents ">
|
|
12695
12736
|
<p class="doc doc-class-bases">
|
|
12696
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.fields.CSVChoiceField" href="#nautobot.apps.forms.CSVChoiceField">CSVChoiceField</a></code></p>
|
|
12737
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.CSVChoiceField (nautobot.core.forms.fields.CSVChoiceField)" href="#nautobot.apps.forms.CSVChoiceField">CSVChoiceField</a></code></p>
|
|
12697
12738
|
|
|
12698
12739
|
|
|
12699
12740
|
<p>A version of CSVChoiceField that supports and emits a list of choice values.</p>
|
|
@@ -12708,6 +12749,7 @@ JSON/YAML import of DeviceTypes still.</p>
|
|
|
12708
12749
|
|
|
12709
12750
|
|
|
12710
12751
|
|
|
12752
|
+
|
|
12711
12753
|
<div class="doc doc-children">
|
|
12712
12754
|
|
|
12713
12755
|
|
|
@@ -12731,6 +12773,7 @@ JSON/YAML import of DeviceTypes still.</p>
|
|
|
12731
12773
|
|
|
12732
12774
|
<p>Return a list of strings.</p>
|
|
12733
12775
|
|
|
12776
|
+
|
|
12734
12777
|
</div>
|
|
12735
12778
|
|
|
12736
12779
|
</div>
|
|
@@ -12748,6 +12791,7 @@ JSON/YAML import of DeviceTypes still.</p>
|
|
|
12748
12791
|
|
|
12749
12792
|
<p>Validate that each of the input values is in self.choices.</p>
|
|
12750
12793
|
|
|
12794
|
+
|
|
12751
12795
|
</div>
|
|
12752
12796
|
|
|
12753
12797
|
</div>
|
|
@@ -12773,7 +12817,7 @@ JSON/YAML import of DeviceTypes still.</p>
|
|
|
12773
12817
|
|
|
12774
12818
|
<div class="doc doc-contents ">
|
|
12775
12819
|
<p class="doc doc-class-bases">
|
|
12776
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.fields.MultipleContentTypeField" href="#nautobot.apps.forms.MultipleContentTypeField">MultipleContentTypeField</a></code></p>
|
|
12820
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.MultipleContentTypeField (nautobot.core.forms.fields.MultipleContentTypeField)" href="#nautobot.apps.forms.MultipleContentTypeField">MultipleContentTypeField</a></code></p>
|
|
12777
12821
|
|
|
12778
12822
|
|
|
12779
12823
|
<p>Reference a list of <code>ContentType</code> objects in the form `{app_label}.{model}'.</p>
|
|
@@ -12788,6 +12832,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12788
12832
|
|
|
12789
12833
|
|
|
12790
12834
|
|
|
12835
|
+
|
|
12791
12836
|
<div class="doc doc-children">
|
|
12792
12837
|
|
|
12793
12838
|
|
|
@@ -12811,6 +12856,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12811
12856
|
|
|
12812
12857
|
<p>Parse a comma-separated string of model names into a list of PKs.</p>
|
|
12813
12858
|
|
|
12859
|
+
|
|
12814
12860
|
</div>
|
|
12815
12861
|
|
|
12816
12862
|
</div>
|
|
@@ -12849,6 +12895,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12849
12895
|
|
|
12850
12896
|
|
|
12851
12897
|
|
|
12898
|
+
|
|
12852
12899
|
<div class="doc doc-children">
|
|
12853
12900
|
|
|
12854
12901
|
|
|
@@ -12893,6 +12940,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12893
12940
|
|
|
12894
12941
|
|
|
12895
12942
|
|
|
12943
|
+
|
|
12896
12944
|
<div class="doc doc-children">
|
|
12897
12945
|
|
|
12898
12946
|
|
|
@@ -12924,7 +12972,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12924
12972
|
|
|
12925
12973
|
<div class="doc doc-contents ">
|
|
12926
12974
|
<p class="doc doc-class-bases">
|
|
12927
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.forms.BootstrapMixin" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.forms.ReturnURLForm" href="#nautobot.apps.forms.ReturnURLForm">ReturnURLForm</a></code></p>
|
|
12975
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BootstrapMixin (nautobot.core.forms.forms.BootstrapMixin)" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.ReturnURLForm (nautobot.core.forms.forms.ReturnURLForm)" href="#nautobot.apps.forms.ReturnURLForm">ReturnURLForm</a></code></p>
|
|
12928
12976
|
|
|
12929
12977
|
|
|
12930
12978
|
<p>A generic confirmation form. The form is not valid unless the confirm field is checked.</p>
|
|
@@ -12937,6 +12985,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12937
12985
|
|
|
12938
12986
|
|
|
12939
12987
|
|
|
12988
|
+
|
|
12940
12989
|
<div class="doc doc-children">
|
|
12941
12990
|
|
|
12942
12991
|
|
|
@@ -12981,6 +13030,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12981
13030
|
|
|
12982
13031
|
|
|
12983
13032
|
|
|
13033
|
+
|
|
12984
13034
|
<div class="doc doc-children">
|
|
12985
13035
|
|
|
12986
13036
|
|
|
@@ -13012,7 +13062,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
13012
13062
|
|
|
13013
13063
|
<div class="doc doc-contents ">
|
|
13014
13064
|
<p class="doc doc-class-bases">
|
|
13015
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.widgets.StaticSelect2" href="#nautobot.apps.forms.StaticSelect2">StaticSelect2</a></code></p>
|
|
13065
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.StaticSelect2 (nautobot.core.forms.widgets.StaticSelect2)" href="#nautobot.apps.forms.StaticSelect2">StaticSelect2</a></code></p>
|
|
13016
13066
|
|
|
13017
13067
|
|
|
13018
13068
|
<p>Appends an <code>api-value</code> attribute equal to the slugified model name for each ContentType. For example:
|
|
@@ -13027,6 +13077,7 @@ This attribute can be used to reference the relevant API endpoint for a particul
|
|
|
13027
13077
|
|
|
13028
13078
|
|
|
13029
13079
|
|
|
13080
|
+
|
|
13030
13081
|
<div class="doc doc-children">
|
|
13031
13082
|
|
|
13032
13083
|
|
|
@@ -13058,7 +13109,7 @@ This attribute can be used to reference the relevant API endpoint for a particul
|
|
|
13058
13109
|
|
|
13059
13110
|
<div class="doc doc-contents ">
|
|
13060
13111
|
<p class="doc doc-class-bases">
|
|
13061
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.CSVModelForm" href="#nautobot.apps.forms.CSVModelForm">CSVModelForm</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.CustomFieldModelFormMixin" href="#nautobot.apps.forms.CustomFieldModelFormMixin">CustomFieldModelFormMixin</a></code></p>
|
|
13112
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.CSVModelForm (nautobot.core.forms.CSVModelForm)" href="#nautobot.apps.forms.CSVModelForm">CSVModelForm</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.CustomFieldModelFormMixin (nautobot.extras.forms.mixins.CustomFieldModelFormMixin)" href="#nautobot.apps.forms.CustomFieldModelFormMixin">CustomFieldModelFormMixin</a></code></p>
|
|
13062
13113
|
|
|
13063
13114
|
|
|
13064
13115
|
<p>Base class for CSV/JSON/YAML import of models that support custom fields.</p>
|
|
@@ -13074,6 +13125,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13074
13125
|
|
|
13075
13126
|
|
|
13076
13127
|
|
|
13128
|
+
|
|
13077
13129
|
<div class="doc doc-children">
|
|
13078
13130
|
|
|
13079
13131
|
|
|
@@ -13116,6 +13168,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13116
13168
|
|
|
13117
13169
|
|
|
13118
13170
|
|
|
13171
|
+
|
|
13119
13172
|
<div class="doc doc-children">
|
|
13120
13173
|
|
|
13121
13174
|
|
|
@@ -13160,6 +13213,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13160
13213
|
|
|
13161
13214
|
|
|
13162
13215
|
|
|
13216
|
+
|
|
13163
13217
|
<div class="doc doc-children">
|
|
13164
13218
|
|
|
13165
13219
|
|
|
@@ -13204,6 +13258,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13204
13258
|
|
|
13205
13259
|
|
|
13206
13260
|
|
|
13261
|
+
|
|
13207
13262
|
<div class="doc doc-children">
|
|
13208
13263
|
|
|
13209
13264
|
|
|
@@ -13235,7 +13290,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13235
13290
|
|
|
13236
13291
|
<div class="doc doc-contents ">
|
|
13237
13292
|
<p class="doc doc-class-bases">
|
|
13238
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.forms.BootstrapMixin" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><span title="django.forms.Form">Form</span></code></p>
|
|
13293
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BootstrapMixin (nautobot.core.forms.forms.BootstrapMixin)" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><span title="django.forms.Form">Form</span></code></p>
|
|
13239
13294
|
|
|
13240
13295
|
|
|
13241
13296
|
<p>Form for dynamically inputting filter values for an object list.</p>
|
|
@@ -13248,6 +13303,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13248
13303
|
|
|
13249
13304
|
|
|
13250
13305
|
|
|
13306
|
+
|
|
13251
13307
|
<div class="doc doc-children">
|
|
13252
13308
|
|
|
13253
13309
|
|
|
@@ -13292,6 +13348,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13292
13348
|
|
|
13293
13349
|
|
|
13294
13350
|
|
|
13351
|
+
|
|
13295
13352
|
<div class="doc doc-children">
|
|
13296
13353
|
|
|
13297
13354
|
|
|
@@ -13323,7 +13380,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13323
13380
|
|
|
13324
13381
|
<div class="doc doc-contents ">
|
|
13325
13382
|
<p class="doc doc-class-bases">
|
|
13326
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.fields.DynamicModelChoiceMixin" href="#nautobot.apps.forms.DynamicModelChoiceMixin">DynamicModelChoiceMixin</a></code>, <code><span title="django.forms.ModelChoiceField">ModelChoiceField</span></code></p>
|
|
13383
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.DynamicModelChoiceMixin (nautobot.core.forms.fields.DynamicModelChoiceMixin)" href="#nautobot.apps.forms.DynamicModelChoiceMixin">DynamicModelChoiceMixin</a></code>, <code><span title="django.forms.ModelChoiceField">ModelChoiceField</span></code></p>
|
|
13327
13384
|
|
|
13328
13385
|
|
|
13329
13386
|
<p>Override get_bound_field() to avoid pre-populating field choices with a SQL query. The field will be
|
|
@@ -13337,6 +13394,7 @@ rendered only with choices set via bound data. Choices are populated on-demand v
|
|
|
13337
13394
|
|
|
13338
13395
|
|
|
13339
13396
|
|
|
13397
|
+
|
|
13340
13398
|
<div class="doc doc-children">
|
|
13341
13399
|
|
|
13342
13400
|
|
|
@@ -13361,6 +13419,7 @@ rendered only with choices set via bound data. Choices are populated on-demand v
|
|
|
13361
13419
|
<p>When null option is enabled and "None" is sent as part of a form to be submitted, it is sent as the
|
|
13362
13420
|
string 'null'. This will check for that condition and gracefully handle the conversion to a NoneType.</p>
|
|
13363
13421
|
|
|
13422
|
+
|
|
13364
13423
|
</div>
|
|
13365
13424
|
|
|
13366
13425
|
</div>
|
|
@@ -13403,6 +13462,7 @@ string 'null'. This will check for that condition and gracefully handle the con
|
|
|
13403
13462
|
|
|
13404
13463
|
|
|
13405
13464
|
|
|
13465
|
+
|
|
13406
13466
|
<div class="doc doc-children">
|
|
13407
13467
|
|
|
13408
13468
|
|
|
@@ -13429,6 +13489,7 @@ string 'null'. This will check for that condition and gracefully handle the con
|
|
|
13429
13489
|
from the given PK, so that the base class will get the appropriate field value rather than just keeping the PK,
|
|
13430
13490
|
because the rendered form field needs this in order to correctly prepopulate a default selection.</p>
|
|
13431
13491
|
|
|
13492
|
+
|
|
13432
13493
|
</div>
|
|
13433
13494
|
|
|
13434
13495
|
</div>
|
|
@@ -13454,7 +13515,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13454
13515
|
|
|
13455
13516
|
<div class="doc doc-contents ">
|
|
13456
13517
|
<p class="doc doc-class-bases">
|
|
13457
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.fields.DynamicModelChoiceMixin" href="#nautobot.apps.forms.DynamicModelChoiceMixin">DynamicModelChoiceMixin</a></code>, <code><span title="django.forms.ModelMultipleChoiceField">ModelMultipleChoiceField</span></code></p>
|
|
13518
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.DynamicModelChoiceMixin (nautobot.core.forms.fields.DynamicModelChoiceMixin)" href="#nautobot.apps.forms.DynamicModelChoiceMixin">DynamicModelChoiceMixin</a></code>, <code><span title="django.forms.ModelMultipleChoiceField">ModelMultipleChoiceField</span></code></p>
|
|
13458
13519
|
|
|
13459
13520
|
|
|
13460
13521
|
<p>A multiple-choice version of DynamicModelChoiceField.</p>
|
|
@@ -13467,6 +13528,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13467
13528
|
|
|
13468
13529
|
|
|
13469
13530
|
|
|
13531
|
+
|
|
13470
13532
|
<div class="doc doc-children">
|
|
13471
13533
|
|
|
13472
13534
|
|
|
@@ -13512,6 +13574,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13512
13574
|
|
|
13513
13575
|
|
|
13514
13576
|
|
|
13577
|
+
|
|
13515
13578
|
<div class="doc doc-children">
|
|
13516
13579
|
|
|
13517
13580
|
|
|
@@ -13557,6 +13620,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13557
13620
|
|
|
13558
13621
|
|
|
13559
13622
|
|
|
13623
|
+
|
|
13560
13624
|
<div class="doc doc-children">
|
|
13561
13625
|
|
|
13562
13626
|
|
|
@@ -13588,7 +13652,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13588
13652
|
|
|
13589
13653
|
<div class="doc doc-contents ">
|
|
13590
13654
|
<p class="doc doc-class-bases">
|
|
13591
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.forms.BootstrapMixin" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><span title="django.forms.Form">Form</span></code></p>
|
|
13655
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BootstrapMixin (nautobot.core.forms.forms.BootstrapMixin)" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><span title="django.forms.Form">Form</span></code></p>
|
|
13592
13656
|
|
|
13593
13657
|
|
|
13594
13658
|
<p>Generic form for creating an object from JSON/YAML data</p>
|
|
@@ -13601,6 +13665,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13601
13665
|
|
|
13602
13666
|
|
|
13603
13667
|
|
|
13668
|
+
|
|
13604
13669
|
<div class="doc doc-children">
|
|
13605
13670
|
|
|
13606
13671
|
|
|
@@ -13647,6 +13712,7 @@ and each Array element is validated by <code>base_field</code> validators.</p>
|
|
|
13647
13712
|
|
|
13648
13713
|
|
|
13649
13714
|
|
|
13715
|
+
|
|
13650
13716
|
<div class="doc doc-children">
|
|
13651
13717
|
|
|
13652
13718
|
|
|
@@ -13671,6 +13737,7 @@ and each Array element is validated by <code>base_field</code> validators.</p>
|
|
|
13671
13737
|
<p>Validate <code>value</code> and return its "cleaned" value as an appropriate
|
|
13672
13738
|
Python object. Raise ValidationError for any errors.</p>
|
|
13673
13739
|
|
|
13740
|
+
|
|
13674
13741
|
</div>
|
|
13675
13742
|
|
|
13676
13743
|
</div>
|
|
@@ -13688,6 +13755,7 @@ Python object. Raise ValidationError for any errors.</p>
|
|
|
13688
13755
|
|
|
13689
13756
|
<p>Return True if <code>data</code> differs from <code>initial</code>.</p>
|
|
13690
13757
|
|
|
13758
|
+
|
|
13691
13759
|
</div>
|
|
13692
13760
|
|
|
13693
13761
|
</div>
|
|
@@ -13705,6 +13773,7 @@ Python object. Raise ValidationError for any errors.</p>
|
|
|
13705
13773
|
|
|
13706
13774
|
<p>Return a string of this value.</p>
|
|
13707
13775
|
|
|
13776
|
+
|
|
13708
13777
|
</div>
|
|
13709
13778
|
|
|
13710
13779
|
</div>
|
|
@@ -13723,6 +13792,7 @@ Python object. Raise ValidationError for any errors.</p>
|
|
|
13723
13792
|
<p>Runs all validators against <code>value</code> and raise ValidationError if necessary.
|
|
13724
13793
|
Some validators can't be created at field initialization time.</p>
|
|
13725
13794
|
|
|
13795
|
+
|
|
13726
13796
|
</div>
|
|
13727
13797
|
|
|
13728
13798
|
</div>
|
|
@@ -13741,6 +13811,7 @@ Some validators can't be created at field initialization time.</p>
|
|
|
13741
13811
|
<p>Convert <code>value</code> into JSON, raising django.core.exceptions.ValidationError
|
|
13742
13812
|
if the data can't be converted. Return the converted value.</p>
|
|
13743
13813
|
|
|
13814
|
+
|
|
13744
13815
|
</div>
|
|
13745
13816
|
|
|
13746
13817
|
</div>
|
|
@@ -13758,6 +13829,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13758
13829
|
|
|
13759
13830
|
<p>Check to see if the provided value is a valid choice.</p>
|
|
13760
13831
|
|
|
13832
|
+
|
|
13761
13833
|
</div>
|
|
13762
13834
|
|
|
13763
13835
|
</div>
|
|
@@ -13775,6 +13847,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13775
13847
|
|
|
13776
13848
|
<p>Validate <code>value</code> and raise ValidationError if necessary.</p>
|
|
13777
13849
|
|
|
13850
|
+
|
|
13778
13851
|
</div>
|
|
13779
13852
|
|
|
13780
13853
|
</div>
|
|
@@ -13813,6 +13886,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13813
13886
|
|
|
13814
13887
|
|
|
13815
13888
|
|
|
13889
|
+
|
|
13816
13890
|
<div class="doc doc-children">
|
|
13817
13891
|
|
|
13818
13892
|
|
|
@@ -13858,6 +13932,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13858
13932
|
|
|
13859
13933
|
|
|
13860
13934
|
|
|
13935
|
+
|
|
13861
13936
|
<div class="doc doc-children">
|
|
13862
13937
|
|
|
13863
13938
|
|
|
@@ -13889,7 +13964,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13889
13964
|
|
|
13890
13965
|
<div class="doc doc-contents ">
|
|
13891
13966
|
<p class="doc doc-class-bases">
|
|
13892
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.fields.DynamicModelChoiceMixin" href="#nautobot.apps.forms.DynamicModelChoiceMixin">DynamicModelChoiceMixin</a></code>, <code><span title="django_filters.fields.ModelMultipleChoiceField">ModelMultipleChoiceField</span></code></p>
|
|
13967
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.DynamicModelChoiceMixin (nautobot.core.forms.fields.DynamicModelChoiceMixin)" href="#nautobot.apps.forms.DynamicModelChoiceMixin">DynamicModelChoiceMixin</a></code>, <code><span title="django_filters.fields.ModelMultipleChoiceField">ModelMultipleChoiceField</span></code></p>
|
|
13893
13968
|
|
|
13894
13969
|
|
|
13895
13970
|
<p>Filter field to support matching on the PK <em>or</em> <code>to_field_name</code> fields (defaulting to <code>slug</code> if not specified).</p>
|
|
@@ -13903,6 +13978,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13903
13978
|
|
|
13904
13979
|
|
|
13905
13980
|
|
|
13981
|
+
|
|
13906
13982
|
<div class="doc doc-children">
|
|
13907
13983
|
|
|
13908
13984
|
|
|
@@ -13948,6 +14024,7 @@ Press enter to complete an input.</p>
|
|
|
13948
14024
|
|
|
13949
14025
|
|
|
13950
14026
|
|
|
14027
|
+
|
|
13951
14028
|
<div class="doc doc-children">
|
|
13952
14029
|
|
|
13953
14030
|
|
|
@@ -13993,6 +14070,7 @@ Press enter to create a new entry.</p>
|
|
|
13993
14070
|
|
|
13994
14071
|
|
|
13995
14072
|
|
|
14073
|
+
|
|
13996
14074
|
<div class="doc doc-children">
|
|
13997
14075
|
|
|
13998
14076
|
|
|
@@ -14039,6 +14117,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14039
14117
|
|
|
14040
14118
|
|
|
14041
14119
|
|
|
14120
|
+
|
|
14042
14121
|
<div class="doc doc-children">
|
|
14043
14122
|
|
|
14044
14123
|
|
|
@@ -14079,7 +14158,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14079
14158
|
<code>feature</code>
|
|
14080
14159
|
</td>
|
|
14081
14160
|
<td>
|
|
14082
|
-
<code>str</code>
|
|
14161
|
+
<code><span title="str">str</span></code>
|
|
14083
14162
|
</td>
|
|
14084
14163
|
<td>
|
|
14085
14164
|
<div class="doc-md-description">
|
|
@@ -14095,7 +14174,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14095
14174
|
<code>choices_as_strings</code>
|
|
14096
14175
|
</td>
|
|
14097
14176
|
<td>
|
|
14098
|
-
<code>bool</code>
|
|
14177
|
+
<code><span title="bool">bool</span></code>
|
|
14099
14178
|
</td>
|
|
14100
14179
|
<td>
|
|
14101
14180
|
<div class="doc-md-description">
|
|
@@ -14109,6 +14188,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14109
14188
|
</tbody>
|
|
14110
14189
|
</table>
|
|
14111
14190
|
|
|
14191
|
+
|
|
14112
14192
|
</div>
|
|
14113
14193
|
|
|
14114
14194
|
</div>
|
|
@@ -14134,7 +14214,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14134
14214
|
|
|
14135
14215
|
<div class="doc doc-contents ">
|
|
14136
14216
|
<p class="doc doc-class-bases">
|
|
14137
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.BootstrapMixin" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><span title="nautobot.extras.forms.mixins.CustomFieldModelBulkEditFormMixin">CustomFieldModelBulkEditFormMixin</span></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.NoteModelBulkEditFormMixin" href="#nautobot.apps.forms.NoteModelBulkEditFormMixin">NoteModelBulkEditFormMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.RelationshipModelBulkEditFormMixin" href="#nautobot.apps.forms.RelationshipModelBulkEditFormMixin">RelationshipModelBulkEditFormMixin</a></code></p>
|
|
14217
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BootstrapMixin (nautobot.core.forms.BootstrapMixin)" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><span title="nautobot.extras.forms.mixins.CustomFieldModelBulkEditFormMixin">CustomFieldModelBulkEditFormMixin</span></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.NoteModelBulkEditFormMixin (nautobot.extras.forms.mixins.NoteModelBulkEditFormMixin)" href="#nautobot.apps.forms.NoteModelBulkEditFormMixin">NoteModelBulkEditFormMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.RelationshipModelBulkEditFormMixin (nautobot.extras.forms.mixins.RelationshipModelBulkEditFormMixin)" href="#nautobot.apps.forms.RelationshipModelBulkEditFormMixin">RelationshipModelBulkEditFormMixin</a></code></p>
|
|
14138
14218
|
|
|
14139
14219
|
|
|
14140
14220
|
<p>Base class for bulk-edit forms for models that support relationships, custom fields and notes.</p>
|
|
@@ -14147,6 +14227,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14147
14227
|
|
|
14148
14228
|
|
|
14149
14229
|
|
|
14230
|
+
|
|
14150
14231
|
<div class="doc doc-children">
|
|
14151
14232
|
|
|
14152
14233
|
|
|
@@ -14178,7 +14259,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14178
14259
|
|
|
14179
14260
|
<div class="doc doc-contents ">
|
|
14180
14261
|
<p class="doc doc-class-bases">
|
|
14181
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.BootstrapMixin" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.ContactTeamModelFilterFormMixin" href="#nautobot.apps.forms.ContactTeamModelFilterFormMixin">ContactTeamModelFilterFormMixin</a></code>, <code><span title="nautobot.extras.forms.mixins.CustomFieldModelFilterFormMixin">CustomFieldModelFilterFormMixin</span></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.RelationshipModelFilterFormMixin" href="#nautobot.apps.forms.RelationshipModelFilterFormMixin">RelationshipModelFilterFormMixin</a></code></p>
|
|
14262
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BootstrapMixin (nautobot.core.forms.BootstrapMixin)" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.ContactTeamModelFilterFormMixin (nautobot.extras.forms.mixins.ContactTeamModelFilterFormMixin)" href="#nautobot.apps.forms.ContactTeamModelFilterFormMixin">ContactTeamModelFilterFormMixin</a></code>, <code><span title="nautobot.extras.forms.mixins.CustomFieldModelFilterFormMixin">CustomFieldModelFilterFormMixin</span></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.RelationshipModelFilterFormMixin (nautobot.extras.forms.mixins.RelationshipModelFilterFormMixin)" href="#nautobot.apps.forms.RelationshipModelFilterFormMixin">RelationshipModelFilterFormMixin</a></code></p>
|
|
14182
14263
|
|
|
14183
14264
|
|
|
14184
14265
|
<p>This class exists to combine common functionality and is used to inherit from throughout the
|
|
@@ -14193,6 +14274,7 @@ RelationshipModelFilterFormMixin are needed.</p>
|
|
|
14193
14274
|
|
|
14194
14275
|
|
|
14195
14276
|
|
|
14277
|
+
|
|
14196
14278
|
<div class="doc doc-children">
|
|
14197
14279
|
|
|
14198
14280
|
|
|
@@ -14224,7 +14306,7 @@ RelationshipModelFilterFormMixin are needed.</p>
|
|
|
14224
14306
|
|
|
14225
14307
|
<div class="doc doc-contents ">
|
|
14226
14308
|
<p class="doc doc-class-bases">
|
|
14227
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.BootstrapMixin" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.CustomFieldModelFormMixin" href="#nautobot.apps.forms.CustomFieldModelFormMixin">CustomFieldModelFormMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.DynamicGroupModelFormMixin" href="#nautobot.apps.forms.DynamicGroupModelFormMixin">DynamicGroupModelFormMixin</a></code>, <code><span title="nautobot.extras.forms.mixins.NoteModelFormMixin">NoteModelFormMixin</span></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.RelationshipModelFormMixin" href="#nautobot.apps.forms.RelationshipModelFormMixin">RelationshipModelFormMixin</a></code></p>
|
|
14309
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BootstrapMixin (nautobot.core.forms.BootstrapMixin)" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.CustomFieldModelFormMixin (nautobot.extras.forms.mixins.CustomFieldModelFormMixin)" href="#nautobot.apps.forms.CustomFieldModelFormMixin">CustomFieldModelFormMixin</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.DynamicGroupModelFormMixin (nautobot.extras.forms.mixins.DynamicGroupModelFormMixin)" href="#nautobot.apps.forms.DynamicGroupModelFormMixin">DynamicGroupModelFormMixin</a></code>, <code><span title="nautobot.extras.forms.mixins.NoteModelFormMixin">NoteModelFormMixin</span></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.RelationshipModelFormMixin (nautobot.extras.forms.mixins.RelationshipModelFormMixin)" href="#nautobot.apps.forms.RelationshipModelFormMixin">RelationshipModelFormMixin</a></code></p>
|
|
14228
14310
|
|
|
14229
14311
|
|
|
14230
14312
|
<p>This class exists to combine common functionality and is used to inherit from throughout the
|
|
@@ -14239,6 +14321,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14239
14321
|
|
|
14240
14322
|
|
|
14241
14323
|
|
|
14324
|
+
|
|
14242
14325
|
<div class="doc doc-children">
|
|
14243
14326
|
|
|
14244
14327
|
|
|
@@ -14283,6 +14366,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14283
14366
|
|
|
14284
14367
|
|
|
14285
14368
|
|
|
14369
|
+
|
|
14286
14370
|
<div class="doc doc-children">
|
|
14287
14371
|
|
|
14288
14372
|
|
|
@@ -14314,7 +14398,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14314
14398
|
|
|
14315
14399
|
<div class="doc doc-contents ">
|
|
14316
14400
|
<p class="doc doc-class-bases">
|
|
14317
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.BulkEditForm" href="#nautobot.apps.forms.BulkEditForm">BulkEditForm</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.extras.forms.mixins.NoteFormBase" href="#nautobot.apps.forms.NoteFormBase">NoteFormBase</a></code></p>
|
|
14401
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BulkEditForm (nautobot.core.forms.BulkEditForm)" href="#nautobot.apps.forms.BulkEditForm">BulkEditForm</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.NoteFormBase (nautobot.extras.forms.mixins.NoteFormBase)" href="#nautobot.apps.forms.NoteFormBase">NoteFormBase</a></code></p>
|
|
14318
14402
|
|
|
14319
14403
|
|
|
14320
14404
|
<p>Bulk-edit form mixin for models that support Notes.</p>
|
|
@@ -14327,6 +14411,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14327
14411
|
|
|
14328
14412
|
|
|
14329
14413
|
|
|
14414
|
+
|
|
14330
14415
|
<div class="doc doc-children">
|
|
14331
14416
|
|
|
14332
14417
|
|
|
@@ -14371,6 +14456,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14371
14456
|
|
|
14372
14457
|
|
|
14373
14458
|
|
|
14459
|
+
|
|
14374
14460
|
<div class="doc doc-children">
|
|
14375
14461
|
|
|
14376
14462
|
|
|
@@ -14415,6 +14501,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14415
14501
|
|
|
14416
14502
|
|
|
14417
14503
|
|
|
14504
|
+
|
|
14418
14505
|
<div class="doc doc-children">
|
|
14419
14506
|
|
|
14420
14507
|
|
|
@@ -14446,7 +14533,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14446
14533
|
|
|
14447
14534
|
<div class="doc doc-contents ">
|
|
14448
14535
|
<p class="doc doc-class-bases">
|
|
14449
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.BulkEditForm" href="#nautobot.apps.forms.BulkEditForm">BulkEditForm</a></code></p>
|
|
14536
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BulkEditForm (nautobot.core.forms.BulkEditForm)" href="#nautobot.apps.forms.BulkEditForm">BulkEditForm</a></code></p>
|
|
14450
14537
|
|
|
14451
14538
|
|
|
14452
14539
|
<p>Bulk-edit form mixin for models that support Relationships.</p>
|
|
@@ -14459,6 +14546,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14459
14546
|
|
|
14460
14547
|
|
|
14461
14548
|
|
|
14549
|
+
|
|
14462
14550
|
<div class="doc doc-children">
|
|
14463
14551
|
|
|
14464
14552
|
|
|
@@ -14482,6 +14570,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14482
14570
|
|
|
14483
14571
|
<p>Helper method to be called from BulkEditView.post().</p>
|
|
14484
14572
|
|
|
14573
|
+
|
|
14485
14574
|
</div>
|
|
14486
14575
|
|
|
14487
14576
|
</div>
|
|
@@ -14518,6 +14607,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14518
14607
|
|
|
14519
14608
|
|
|
14520
14609
|
|
|
14610
|
+
|
|
14521
14611
|
<div class="doc doc-children">
|
|
14522
14612
|
|
|
14523
14613
|
|
|
@@ -14560,6 +14650,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14560
14650
|
|
|
14561
14651
|
|
|
14562
14652
|
|
|
14653
|
+
|
|
14563
14654
|
<div class="doc doc-children">
|
|
14564
14655
|
|
|
14565
14656
|
|
|
@@ -14592,6 +14683,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14592
14683
|
a different destination object.</li>
|
|
14593
14684
|
</ul>
|
|
14594
14685
|
|
|
14686
|
+
|
|
14595
14687
|
</div>
|
|
14596
14688
|
|
|
14597
14689
|
</div>
|
|
@@ -14630,6 +14722,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14630
14722
|
|
|
14631
14723
|
|
|
14632
14724
|
|
|
14725
|
+
|
|
14633
14726
|
<div class="doc doc-children">
|
|
14634
14727
|
|
|
14635
14728
|
|
|
@@ -14674,6 +14767,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14674
14767
|
|
|
14675
14768
|
|
|
14676
14769
|
|
|
14770
|
+
|
|
14677
14771
|
<div class="doc doc-children">
|
|
14678
14772
|
|
|
14679
14773
|
|
|
@@ -14718,6 +14812,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14718
14812
|
|
|
14719
14813
|
|
|
14720
14814
|
|
|
14815
|
+
|
|
14721
14816
|
<div class="doc doc-children">
|
|
14722
14817
|
|
|
14723
14818
|
|
|
@@ -14763,6 +14858,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14763
14858
|
|
|
14764
14859
|
|
|
14765
14860
|
|
|
14861
|
+
|
|
14766
14862
|
<div class="doc doc-children">
|
|
14767
14863
|
|
|
14768
14864
|
|
|
@@ -14794,7 +14890,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14794
14890
|
|
|
14795
14891
|
<div class="doc doc-contents ">
|
|
14796
14892
|
<p class="doc doc-class-bases">
|
|
14797
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.widgets.StaticSelect2" href="#nautobot.apps.forms.StaticSelect2">StaticSelect2</a></code></p>
|
|
14893
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.StaticSelect2 (nautobot.core.forms.widgets.StaticSelect2)" href="#nautobot.apps.forms.StaticSelect2">StaticSelect2</a></code></p>
|
|
14798
14894
|
|
|
14799
14895
|
|
|
14800
14896
|
<p>Include the primary key of each option in the option label (e.g. "Router7 (4721)").</p>
|
|
@@ -14807,6 +14903,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14807
14903
|
|
|
14808
14904
|
|
|
14809
14905
|
|
|
14906
|
+
|
|
14810
14907
|
<div class="doc doc-children">
|
|
14811
14908
|
|
|
14812
14909
|
|
|
@@ -14851,6 +14948,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14851
14948
|
|
|
14852
14949
|
|
|
14853
14950
|
|
|
14951
|
+
|
|
14854
14952
|
<div class="doc doc-children">
|
|
14855
14953
|
|
|
14856
14954
|
|
|
@@ -14891,7 +14989,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14891
14989
|
<code>slug_source</code>
|
|
14892
14990
|
</td>
|
|
14893
14991
|
<td>
|
|
14894
|
-
<code>(str
|
|
14992
|
+
<code>(<span title="str">str</span>, <span title="tuple">tuple</span>)</code>
|
|
14895
14993
|
</td>
|
|
14896
14994
|
<td>
|
|
14897
14995
|
<div class="doc-md-description">
|
|
@@ -14905,6 +15003,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14905
15003
|
</tbody>
|
|
14906
15004
|
</table>
|
|
14907
15005
|
|
|
15006
|
+
|
|
14908
15007
|
</div>
|
|
14909
15008
|
|
|
14910
15009
|
</div>
|
|
@@ -14943,6 +15042,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14943
15042
|
|
|
14944
15043
|
|
|
14945
15044
|
|
|
15045
|
+
|
|
14946
15046
|
<div class="doc doc-children">
|
|
14947
15047
|
|
|
14948
15048
|
|
|
@@ -14985,6 +15085,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14985
15085
|
|
|
14986
15086
|
|
|
14987
15087
|
|
|
15088
|
+
|
|
14988
15089
|
</div>
|
|
14989
15090
|
|
|
14990
15091
|
</div>
|
|
@@ -15002,7 +15103,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15002
15103
|
|
|
15003
15104
|
<div class="doc doc-contents ">
|
|
15004
15105
|
<p class="doc doc-class-bases">
|
|
15005
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.widgets.SelectWithDisabled" href="#nautobot.apps.forms.SelectWithDisabled">SelectWithDisabled</a></code></p>
|
|
15106
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.SelectWithDisabled (nautobot.core.forms.widgets.SelectWithDisabled)" href="#nautobot.apps.forms.SelectWithDisabled">SelectWithDisabled</a></code></p>
|
|
15006
15107
|
|
|
15007
15108
|
|
|
15008
15109
|
<p>A static <select> form widget using the Select2 library.</p>
|
|
@@ -15015,6 +15116,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15015
15116
|
|
|
15016
15117
|
|
|
15017
15118
|
|
|
15119
|
+
|
|
15018
15120
|
<div class="doc doc-children">
|
|
15019
15121
|
|
|
15020
15122
|
|
|
@@ -15059,6 +15161,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15059
15161
|
|
|
15060
15162
|
|
|
15061
15163
|
|
|
15164
|
+
|
|
15062
15165
|
<div class="doc doc-children">
|
|
15063
15166
|
|
|
15064
15167
|
|
|
@@ -15103,6 +15206,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15103
15206
|
|
|
15104
15207
|
|
|
15105
15208
|
|
|
15209
|
+
|
|
15106
15210
|
<div class="doc doc-children">
|
|
15107
15211
|
|
|
15108
15212
|
|
|
@@ -15134,7 +15238,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15134
15238
|
|
|
15135
15239
|
<div class="doc doc-contents ">
|
|
15136
15240
|
<p class="doc doc-class-bases">
|
|
15137
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.forms.BootstrapMixin" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><span title="django.forms.Form">Form</span></code></p>
|
|
15241
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.BootstrapMixin (nautobot.core.forms.forms.BootstrapMixin)" href="#nautobot.apps.forms.BootstrapMixin">BootstrapMixin</a></code>, <code><span title="django.forms.Form">Form</span></code></p>
|
|
15138
15242
|
|
|
15139
15243
|
|
|
15140
15244
|
<p>Form for configuring user's table preferences.</p>
|
|
@@ -15147,6 +15251,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15147
15251
|
|
|
15148
15252
|
|
|
15149
15253
|
|
|
15254
|
+
|
|
15150
15255
|
<div class="doc doc-children">
|
|
15151
15256
|
|
|
15152
15257
|
|
|
@@ -15178,7 +15283,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15178
15283
|
|
|
15179
15284
|
<div class="doc doc-contents ">
|
|
15180
15285
|
<p class="doc doc-class-bases">
|
|
15181
|
-
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.forms.fields.DynamicModelMultipleChoiceField" href="#nautobot.apps.forms.DynamicModelMultipleChoiceField">DynamicModelMultipleChoiceField</a></code></p>
|
|
15286
|
+
Bases: <code><a class="autorefs autorefs-internal" title="nautobot.apps.forms.DynamicModelMultipleChoiceField (nautobot.core.forms.fields.DynamicModelMultipleChoiceField)" href="#nautobot.apps.forms.DynamicModelMultipleChoiceField">DynamicModelMultipleChoiceField</a></code></p>
|
|
15182
15287
|
|
|
15183
15288
|
|
|
15184
15289
|
<p>A filter field for the tags of a model. Only the tags used by a model are displayed.</p>
|
|
@@ -15192,6 +15297,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15192
15297
|
|
|
15193
15298
|
|
|
15194
15299
|
|
|
15300
|
+
|
|
15195
15301
|
<div class="doc doc-children">
|
|
15196
15302
|
|
|
15197
15303
|
|
|
@@ -15236,6 +15342,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15236
15342
|
|
|
15237
15343
|
|
|
15238
15344
|
|
|
15345
|
+
|
|
15239
15346
|
<div class="doc doc-children">
|
|
15240
15347
|
|
|
15241
15348
|
|
|
@@ -15268,6 +15375,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15268
15375
|
|
|
15269
15376
|
<p>Add a blank choice to the beginning of a choices list.</p>
|
|
15270
15377
|
|
|
15378
|
+
|
|
15271
15379
|
</div>
|
|
15272
15380
|
|
|
15273
15381
|
</div>
|
|
@@ -15285,6 +15393,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15285
15393
|
|
|
15286
15394
|
<p>Attach a field to an existing filter form class.</p>
|
|
15287
15395
|
|
|
15396
|
+
|
|
15288
15397
|
</div>
|
|
15289
15398
|
|
|
15290
15399
|
</div>
|
|
@@ -15302,6 +15411,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15302
15411
|
|
|
15303
15412
|
<p>Expand an alphabetic pattern into a list of strings.</p>
|
|
15304
15413
|
|
|
15414
|
+
|
|
15305
15415
|
</div>
|
|
15306
15416
|
|
|
15307
15417
|
</div>
|
|
@@ -15321,6 +15431,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15321
15431
|
'192.0.2.[1,2,100-250]/24' => ['192.0.2.1/24', '192.0.2.2/24', '192.0.2.100/24' ... '192.0.2.250/24']
|
|
15322
15432
|
'2001:db8:0:[0,fd-ff]::/64' => ['2001:db8:0:0::/64', '2001:db8:0:fd::/64', ... '2001:db8:0:ff::/64']</p>
|
|
15323
15433
|
|
|
15434
|
+
|
|
15324
15435
|
</div>
|
|
15325
15436
|
|
|
15326
15437
|
</div>
|
|
@@ -15340,6 +15451,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15340
15451
|
for creating objects, but want to avoid the model's validation (e.g. for bulk create/edit functions). All fields
|
|
15341
15452
|
are marked as not required.</p>
|
|
15342
15453
|
|
|
15454
|
+
|
|
15343
15455
|
</div>
|
|
15344
15456
|
|
|
15345
15457
|
</div>
|
|
@@ -15359,6 +15471,7 @@ are marked as not required.</p>
|
|
|
15359
15471
|
'a-d,f' => [a, b, c, d, f]
|
|
15360
15472
|
'0-3,a-d' => [0, 1, 2, 3, a, b, c, d]</p>
|
|
15361
15473
|
|
|
15474
|
+
|
|
15362
15475
|
</div>
|
|
15363
15476
|
|
|
15364
15477
|
</div>
|
|
@@ -15379,6 +15492,7 @@ hexadecimal list, as specified by the base parameter
|
|
|
15379
15492
|
'0-3,5' => [0, 1, 2, 3, 5]
|
|
15380
15493
|
'2,8-b,d,f' => [2, 8, 9, a, b, d, f]</p>
|
|
15381
15494
|
|
|
15495
|
+
|
|
15382
15496
|
</div>
|
|
15383
15497
|
|
|
15384
15498
|
</div>
|
|
@@ -15397,6 +15511,7 @@ hexadecimal list, as specified by the base parameter
|
|
|
15397
15511
|
<p>Restrict all form fields which reference a RestrictedQuerySet. This ensures that users see only permitted objects
|
|
15398
15512
|
as available choices.</p>
|
|
15399
15513
|
|
|
15514
|
+
|
|
15400
15515
|
</div>
|
|
15401
15516
|
|
|
15402
15517
|
</div>
|