nautobot 2.4.13__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/graphql/generators.py +8 -0
- nautobot/core/graphql/schema.py +30 -30
- 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 +90 -1
- nautobot/core/models/tree_queries.py +17 -0
- nautobot/core/settings.py +2 -2
- nautobot/core/settings.yaml +3 -3
- nautobot/core/tables.py +29 -6
- 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/api.py +7 -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 +14 -13
- nautobot/dcim/api/serializers.py +9 -0
- nautobot/dcim/choices.py +55 -0
- nautobot/dcim/constants.py +0 -16
- nautobot/dcim/factory.py +1 -1
- 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/templates/dcim/rack.html +2 -318
- nautobot/dcim/templates/dcim/rack_edit.html +2 -47
- nautobot/dcim/templates/dcim/rack_retrieve.html +318 -0
- nautobot/dcim/templates/dcim/rack_update.html +47 -0
- 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/urls.py +2 -27
- nautobot/dcim/utils.py +13 -30
- nautobot/dcim/views.py +428 -146
- nautobot/extras/choices.py +12 -4
- nautobot/extras/factory.py +19 -20
- nautobot/extras/filters/__init__.py +3 -2
- nautobot/extras/filters/mixins.py +23 -7
- nautobot/extras/forms/__init__.py +2 -1
- nautobot/extras/forms/forms.py +71 -0
- nautobot/extras/forms/mixins.py +4 -2
- nautobot/extras/managers.py +4 -1
- nautobot/extras/migrations/0062_collect_roles_from_related_apps_roles.py +30 -7
- nautobot/extras/migrations/0124_add_joblogentry_index.py +16 -0
- nautobot/extras/migrations/0125_jobresult_date_started.py +18 -0
- nautobot/extras/models/customfields.py +53 -5
- nautobot/extras/models/datasources.py +1 -2
- nautobot/extras/models/jobs.py +13 -3
- nautobot/extras/models/relationships.py +55 -6
- 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/graphqlquery.html +2 -97
- nautobot/extras/templates/extras/graphqlquery_list.html +1 -0
- nautobot/extras/templates/extras/graphqlquery_retrieve.html +97 -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/templates/extras/secretsgroup.html +2 -29
- nautobot/extras/templates/extras/secretsgroup_edit.html +2 -82
- nautobot/extras/templates/extras/secretsgroup_retrieve.html +29 -0
- nautobot/extras/templates/extras/secretsgroup_update.html +82 -0
- 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_customfields.py +115 -7
- 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 +14 -8
- nautobot/extras/tests/test_views.py +285 -2
- nautobot/extras/urls.py +5 -110
- nautobot/extras/utils.py +5 -2
- nautobot/extras/views.py +116 -311
- nautobot/ipam/api/views.py +69 -6
- nautobot/ipam/tables.py +8 -15
- nautobot/ipam/tests/migration/test_migrations.py +8 -8
- nautobot/ipam/tests/test_api.py +352 -2
- nautobot/ipam/tests/test_models.py +1 -1
- nautobot/project-static/docs/404.html +34 -34
- nautobot/project-static/docs/apps/index.html +34 -34
- nautobot/project-static/docs/apps/nautobot-apps.html +34 -34
- nautobot/project-static/docs/assets/_mkdocstrings.css +44 -6
- nautobot/project-static/docs/assets/javascripts/{bundle.56ea9cef.min.js → bundle.50899def.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.56ea9cef.min.js.map → bundle.50899def.min.js.map} +2 -2
- nautobot/project-static/docs/assets/stylesheets/{main.342714a4.min.css → main.7e37652d.min.css} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.342714a4.min.css.map → main.7e37652d.min.css.map} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +39 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +36 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +139 -54
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +48 -38
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +50 -40
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +36 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +35 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +43 -39
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +52 -42
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +50 -41
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +54 -44
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +85 -93
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +154 -62
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +54 -46
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +146 -87
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +240 -70
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +38 -35
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +41 -35
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +173 -52
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +269 -85
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +5987 -2643
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +36 -34
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +165 -89
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +161 -69
- nautobot/project-static/docs/development/apps/api/configuration-view.html +34 -34
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +34 -34
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +34 -34
- nautobot/project-static/docs/development/apps/api/models/global-search.html +34 -34
- nautobot/project-static/docs/development/apps/api/models/graphql.html +34 -34
- nautobot/project-static/docs/development/apps/api/models/index.html +34 -34
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +34 -34
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +34 -34
- nautobot/project-static/docs/development/apps/api/prometheus.html +34 -34
- nautobot/project-static/docs/development/apps/api/setup.html +34 -34
- nautobot/project-static/docs/development/apps/api/testing.html +34 -34
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +34 -34
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +34 -34
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +34 -34
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +34 -34
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/base-template.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/index.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +42 -36
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/notes.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +34 -34
- nautobot/project-static/docs/development/apps/api/views/urls.html +34 -34
- nautobot/project-static/docs/development/apps/index.html +34 -34
- nautobot/project-static/docs/development/apps/migration/code-updates.html +34 -34
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +34 -34
- nautobot/project-static/docs/development/apps/migration/from-v1.html +34 -34
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +34 -34
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +34 -34
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +34 -34
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +34 -34
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +37 -37
- 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 +34 -34
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +34 -34
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +34 -34
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +37 -37
- nautobot/project-static/docs/development/core/application-registry.html +162 -133
- nautobot/project-static/docs/development/core/best-practices.html +34 -34
- nautobot/project-static/docs/development/core/bootstrap-ui.html +34 -34
- nautobot/project-static/docs/development/core/caching.html +34 -34
- nautobot/project-static/docs/development/core/controllers.html +34 -34
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +34 -34
- nautobot/project-static/docs/development/core/generic-views.html +34 -34
- nautobot/project-static/docs/development/core/getting-started.html +34 -34
- nautobot/project-static/docs/development/core/homepage.html +34 -34
- nautobot/project-static/docs/development/core/index.html +34 -34
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +34 -34
- nautobot/project-static/docs/development/core/model-checklist.html +34 -34
- nautobot/project-static/docs/development/core/model-features.html +34 -34
- nautobot/project-static/docs/development/core/natural-keys.html +34 -34
- nautobot/project-static/docs/development/core/navigation-menu.html +34 -34
- nautobot/project-static/docs/development/core/release-checklist.html +34 -34
- nautobot/project-static/docs/development/core/role-internals.html +34 -34
- nautobot/project-static/docs/development/core/settings.html +34 -34
- nautobot/project-static/docs/development/core/style-guide.html +34 -34
- nautobot/project-static/docs/development/core/templates.html +34 -34
- nautobot/project-static/docs/development/core/testing.html +34 -34
- nautobot/project-static/docs/development/core/ui-component-framework.html +724 -289
- nautobot/project-static/docs/development/core/user-preferences.html +34 -34
- nautobot/project-static/docs/development/index.html +34 -34
- nautobot/project-static/docs/development/jobs/getting-started.html +34 -34
- nautobot/project-static/docs/development/jobs/index.html +34 -34
- nautobot/project-static/docs/development/jobs/installation.html +34 -34
- nautobot/project-static/docs/development/jobs/job-extensions.html +34 -34
- nautobot/project-static/docs/development/jobs/job-logging.html +34 -34
- nautobot/project-static/docs/development/jobs/job-patterns.html +34 -34
- nautobot/project-static/docs/development/jobs/job-structure.html +34 -34
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +34 -34
- nautobot/project-static/docs/development/jobs/testing.html +34 -34
- nautobot/project-static/docs/index.html +34 -34
- 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 +34 -34
- nautobot/project-static/docs/overview/design_philosophy.html +34 -34
- nautobot/project-static/docs/release-notes/index.html +34 -34
- nautobot/project-static/docs/release-notes/version-1.0.html +34 -34
- nautobot/project-static/docs/release-notes/version-1.1.html +34 -34
- nautobot/project-static/docs/release-notes/version-1.2.html +34 -34
- nautobot/project-static/docs/release-notes/version-1.3.html +34 -34
- nautobot/project-static/docs/release-notes/version-1.4.html +34 -34
- nautobot/project-static/docs/release-notes/version-1.5.html +34 -34
- nautobot/project-static/docs/release-notes/version-1.6.html +34 -34
- nautobot/project-static/docs/release-notes/version-2.0.html +34 -34
- nautobot/project-static/docs/release-notes/version-2.1.html +34 -34
- nautobot/project-static/docs/release-notes/version-2.2.html +34 -34
- nautobot/project-static/docs/release-notes/version-2.3.html +34 -34
- nautobot/project-static/docs/release-notes/version-2.4.html +402 -34
- nautobot/project-static/docs/requirements.txt +3 -3
- 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 +34 -34
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +34 -34
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +34 -34
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +34 -34
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +34 -34
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +37 -37
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +34 -34
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +34 -34
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +34 -34
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +34 -34
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +34 -34
- nautobot/project-static/docs/user-guide/administration/installation/index.html +34 -34
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +34 -34
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +34 -34
- nautobot/project-static/docs/user-guide/administration/installation/services.html +34 -34
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +34 -34
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +34 -34
- nautobot/project-static/docs/user-guide/administration/security/index.html +34 -34
- nautobot/project-static/docs/user-guide/administration/security/notices.html +34 -34
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +296 -251
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +34 -34
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +37 -37
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +42 -52
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +37 -37
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulefamily.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +316 -39
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +35 -35
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +147 -37
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +52 -35
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +51 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +34 -34
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +34 -34
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +34 -34
- nautobot/project-static/docs/user-guide/index.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +35 -35
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +34 -34
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +34 -34
- nautobot/tenancy/api/views.py +2 -1
- 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.13.dist-info → nautobot-2.4.15.dist-info}/METADATA +27 -27
- {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/RECORD +463 -439
- {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/NOTICE +0 -0
- {nautobot-2.4.13.dist-info → nautobot-2.4.15.dist-info}/WHEEL +0 -0
- {nautobot-2.4.13.dist-info → nautobot-2.4.15.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.6.1, mkdocs-material-9.6.
|
|
21
|
+
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.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.7e37652d.min.css">
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
<link rel="stylesheet" href="../../../assets/stylesheets/palette.06af60db.min.css">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20448%20512%22%3E%3C%21--%21%20Font%20Awesome%20Free%
|
|
41
|
+
<style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20448%20512%22%3E%3C%21--%21%20Font%20Awesome%20Free%207.0.0%20by%20%40fontawesome%20-%20https%3A//fontawesome.com%20License%20-%20https%3A//fontawesome.com/license/free%20%28Icons%3A%20CC%20BY%204.0%2C%20Fonts%3A%20SIL%20OFL%201.1%2C%20Code%3A%20MIT%20License%29%20Copyright%202025%20Fonticons%2C%20Inc.--%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M288%200H128c-17.7%200-32%2014.3-32%2032s14.3%2032%2032%2032v151.5L7.5%20426.3C2.6%20435%200%20444.7%200%20454.7%200%20486.4%2025.6%20512%2057.3%20512h333.4c31.6%200%2057.3-25.6%2057.3-57.3%200-10-2.6-19.8-7.5-28.4L320%20215.5V64c17.7%200%2032-14.3%2032-32S337.7%200%20320%200zm-96%20215.5V64h64v151.5c0%2011.1%202.9%2022.1%208.4%2031.8L306%20320H142l41.6-72.7c5.5-9.7%208.4-20.6%208.4-31.8%22/%3E%3C/svg%3E');}</style>
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
221
221
|
<div class="md-source__icon md-icon">
|
|
222
222
|
|
|
223
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free
|
|
223
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
|
|
224
224
|
</div>
|
|
225
225
|
<div class="md-source__repository">
|
|
226
226
|
GitHub
|
|
@@ -392,7 +392,7 @@
|
|
|
392
392
|
<a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
|
|
393
393
|
<div class="md-source__icon md-icon">
|
|
394
394
|
|
|
395
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free
|
|
395
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
|
|
396
396
|
</div>
|
|
397
397
|
<div class="md-source__repository">
|
|
398
398
|
GitHub
|
|
@@ -4004,29 +4004,6 @@
|
|
|
4004
4004
|
|
|
4005
4005
|
|
|
4006
4006
|
|
|
4007
|
-
<li class="md-nav__item">
|
|
4008
|
-
<a href="../../../user-guide/core-data-model/dcim/inventoryitem.html" class="md-nav__link">
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
<span class="md-ellipsis">
|
|
4013
|
-
Inventory Item
|
|
4014
|
-
|
|
4015
|
-
</span>
|
|
4016
|
-
|
|
4017
|
-
|
|
4018
|
-
</a>
|
|
4019
|
-
</li>
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
4007
|
<li class="md-nav__item">
|
|
4031
4008
|
<a href="../../../user-guide/core-data-model/dcim/modulebay.html" class="md-nav__link">
|
|
4032
4009
|
|
|
@@ -9639,6 +9616,29 @@
|
|
|
9639
9616
|
|
|
9640
9617
|
|
|
9641
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
|
+
|
|
9642
9642
|
</ul>
|
|
9643
9643
|
</nav>
|
|
9644
9644
|
|
|
@@ -11954,6 +11954,7 @@
|
|
|
11954
11954
|
|
|
11955
11955
|
|
|
11956
11956
|
|
|
11957
|
+
|
|
11957
11958
|
<div class="doc doc-children">
|
|
11958
11959
|
|
|
11959
11960
|
|
|
@@ -11976,7 +11977,7 @@
|
|
|
11976
11977
|
|
|
11977
11978
|
<div class="doc doc-contents ">
|
|
11978
11979
|
<p class="doc doc-class-bases">
|
|
11979
|
-
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>
|
|
11980
11981
|
|
|
11981
11982
|
|
|
11982
11983
|
<p>A select widget populated via an API call</p>
|
|
@@ -11998,7 +11999,7 @@
|
|
|
11998
11999
|
<code>api_url</code>
|
|
11999
12000
|
</td>
|
|
12000
12001
|
<td>
|
|
12001
|
-
<code>str</code>
|
|
12002
|
+
<code><span title="str">str</span></code>
|
|
12002
12003
|
</td>
|
|
12003
12004
|
<td>
|
|
12004
12005
|
<div class="doc-md-description">
|
|
@@ -12014,7 +12015,7 @@
|
|
|
12014
12015
|
<code>api_version</code>
|
|
12015
12016
|
</td>
|
|
12016
12017
|
<td>
|
|
12017
|
-
<code>str</code>
|
|
12018
|
+
<code><span title="str">str</span></code>
|
|
12018
12019
|
</td>
|
|
12019
12020
|
<td>
|
|
12020
12021
|
<div class="doc-md-description">
|
|
@@ -12036,6 +12037,7 @@
|
|
|
12036
12037
|
|
|
12037
12038
|
|
|
12038
12039
|
|
|
12040
|
+
|
|
12039
12041
|
<div class="doc doc-children">
|
|
12040
12042
|
|
|
12041
12043
|
|
|
@@ -12061,6 +12063,7 @@
|
|
|
12061
12063
|
<p>:param name: The name of the query param
|
|
12062
12064
|
:param value: The value of the query param</p>
|
|
12063
12065
|
|
|
12066
|
+
|
|
12064
12067
|
</div>
|
|
12065
12068
|
|
|
12066
12069
|
</div>
|
|
@@ -12099,6 +12102,7 @@
|
|
|
12099
12102
|
|
|
12100
12103
|
|
|
12101
12104
|
|
|
12105
|
+
|
|
12102
12106
|
<div class="doc doc-children">
|
|
12103
12107
|
|
|
12104
12108
|
|
|
@@ -12130,7 +12134,7 @@
|
|
|
12130
12134
|
|
|
12131
12135
|
<div class="doc doc-contents ">
|
|
12132
12136
|
<p class="doc doc-class-bases">
|
|
12133
|
-
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>
|
|
12134
12138
|
|
|
12135
12139
|
|
|
12136
12140
|
<p>Subclass SlugWidget and add support for auto-populate JavaScript logic from <code>form.js</code>.</p>
|
|
@@ -12143,6 +12147,7 @@
|
|
|
12143
12147
|
|
|
12144
12148
|
|
|
12145
12149
|
|
|
12150
|
+
|
|
12146
12151
|
<div class="doc doc-children">
|
|
12147
12152
|
|
|
12148
12153
|
|
|
@@ -12193,6 +12198,7 @@
|
|
|
12193
12198
|
|
|
12194
12199
|
|
|
12195
12200
|
|
|
12201
|
+
|
|
12196
12202
|
<div class="doc doc-children">
|
|
12197
12203
|
|
|
12198
12204
|
|
|
@@ -12239,6 +12245,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12239
12245
|
|
|
12240
12246
|
|
|
12241
12247
|
|
|
12248
|
+
|
|
12242
12249
|
<div class="doc doc-children">
|
|
12243
12250
|
|
|
12244
12251
|
|
|
@@ -12262,6 +12269,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12262
12269
|
|
|
12263
12270
|
<p>Post save action</p>
|
|
12264
12271
|
|
|
12272
|
+
|
|
12265
12273
|
</div>
|
|
12266
12274
|
|
|
12267
12275
|
</div>
|
|
@@ -12300,6 +12308,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12300
12308
|
|
|
12301
12309
|
|
|
12302
12310
|
|
|
12311
|
+
|
|
12303
12312
|
<div class="doc doc-children">
|
|
12304
12313
|
|
|
12305
12314
|
|
|
@@ -12344,6 +12353,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12344
12353
|
|
|
12345
12354
|
|
|
12346
12355
|
|
|
12356
|
+
|
|
12347
12357
|
<div class="doc doc-children">
|
|
12348
12358
|
|
|
12349
12359
|
|
|
@@ -12389,6 +12399,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12389
12399
|
|
|
12390
12400
|
|
|
12391
12401
|
|
|
12402
|
+
|
|
12392
12403
|
<div class="doc doc-children">
|
|
12393
12404
|
|
|
12394
12405
|
|
|
@@ -12420,7 +12431,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12420
12431
|
|
|
12421
12432
|
<div class="doc doc-contents ">
|
|
12422
12433
|
<p class="doc doc-class-bases">
|
|
12423
|
-
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>
|
|
12424
12435
|
|
|
12425
12436
|
|
|
12426
12437
|
<p>Reference a ContentType in the form <code>{app_label}.{model}</code>.</p>
|
|
@@ -12434,6 +12445,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12434
12445
|
|
|
12435
12446
|
|
|
12436
12447
|
|
|
12448
|
+
|
|
12437
12449
|
<div class="doc doc-children">
|
|
12438
12450
|
|
|
12439
12451
|
|
|
@@ -12458,6 +12470,7 @@ a more powerful subclass and should be used instead of directly inheriting from
|
|
|
12458
12470
|
<p>Allow this field to support <code>{app_label}.{model}</code> style, null values, or PK-based lookups
|
|
12459
12471
|
depending on how the field is used.</p>
|
|
12460
12472
|
|
|
12473
|
+
|
|
12461
12474
|
</div>
|
|
12462
12475
|
|
|
12463
12476
|
</div>
|
|
@@ -12508,7 +12521,7 @@ as that is now handled by the NautobotCSVParser class and the REST API serialize
|
|
|
12508
12521
|
<code>required_field_names</code>
|
|
12509
12522
|
</td>
|
|
12510
12523
|
<td>
|
|
12511
|
-
<code>list[str]</code>
|
|
12524
|
+
<code><span title="list">list</span>[<span title="str">str</span>]</code>
|
|
12512
12525
|
</td>
|
|
12513
12526
|
<td>
|
|
12514
12527
|
<div class="doc-md-description">
|
|
@@ -12530,6 +12543,7 @@ as that is now handled by the NautobotCSVParser class and the REST API serialize
|
|
|
12530
12543
|
|
|
12531
12544
|
|
|
12532
12545
|
|
|
12546
|
+
|
|
12533
12547
|
<div class="doc doc-children">
|
|
12534
12548
|
|
|
12535
12549
|
|
|
@@ -12576,6 +12590,7 @@ as that is now handled by the NautobotCSVParser class and the REST API serialize
|
|
|
12576
12590
|
|
|
12577
12591
|
|
|
12578
12592
|
|
|
12593
|
+
|
|
12579
12594
|
<div class="doc doc-children">
|
|
12580
12595
|
|
|
12581
12596
|
|
|
@@ -12599,6 +12614,7 @@ as that is now handled by the NautobotCSVParser class and the REST API serialize
|
|
|
12599
12614
|
|
|
12600
12615
|
<p>For parity with CSVDataField, this returns the CSV text rather than an UploadedFile object.</p>
|
|
12601
12616
|
|
|
12617
|
+
|
|
12602
12618
|
</div>
|
|
12603
12619
|
|
|
12604
12620
|
</div>
|
|
@@ -12639,6 +12655,7 @@ nothing to do with CSV data.</p>
|
|
|
12639
12655
|
|
|
12640
12656
|
|
|
12641
12657
|
|
|
12658
|
+
|
|
12642
12659
|
<div class="doc doc-children">
|
|
12643
12660
|
|
|
12644
12661
|
|
|
@@ -12685,6 +12702,7 @@ JSON/YAML imports of DeviceTypes and their component templates.</p>
|
|
|
12685
12702
|
|
|
12686
12703
|
|
|
12687
12704
|
|
|
12705
|
+
|
|
12688
12706
|
<div class="doc doc-children">
|
|
12689
12707
|
|
|
12690
12708
|
|
|
@@ -12716,7 +12734,7 @@ JSON/YAML imports of DeviceTypes and their component templates.</p>
|
|
|
12716
12734
|
|
|
12717
12735
|
<div class="doc doc-contents ">
|
|
12718
12736
|
<p class="doc doc-class-bases">
|
|
12719
|
-
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>
|
|
12720
12738
|
|
|
12721
12739
|
|
|
12722
12740
|
<p>A version of CSVChoiceField that supports and emits a list of choice values.</p>
|
|
@@ -12731,6 +12749,7 @@ JSON/YAML import of DeviceTypes still.</p>
|
|
|
12731
12749
|
|
|
12732
12750
|
|
|
12733
12751
|
|
|
12752
|
+
|
|
12734
12753
|
<div class="doc doc-children">
|
|
12735
12754
|
|
|
12736
12755
|
|
|
@@ -12754,6 +12773,7 @@ JSON/YAML import of DeviceTypes still.</p>
|
|
|
12754
12773
|
|
|
12755
12774
|
<p>Return a list of strings.</p>
|
|
12756
12775
|
|
|
12776
|
+
|
|
12757
12777
|
</div>
|
|
12758
12778
|
|
|
12759
12779
|
</div>
|
|
@@ -12771,6 +12791,7 @@ JSON/YAML import of DeviceTypes still.</p>
|
|
|
12771
12791
|
|
|
12772
12792
|
<p>Validate that each of the input values is in self.choices.</p>
|
|
12773
12793
|
|
|
12794
|
+
|
|
12774
12795
|
</div>
|
|
12775
12796
|
|
|
12776
12797
|
</div>
|
|
@@ -12796,7 +12817,7 @@ JSON/YAML import of DeviceTypes still.</p>
|
|
|
12796
12817
|
|
|
12797
12818
|
<div class="doc doc-contents ">
|
|
12798
12819
|
<p class="doc doc-class-bases">
|
|
12799
|
-
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>
|
|
12800
12821
|
|
|
12801
12822
|
|
|
12802
12823
|
<p>Reference a list of <code>ContentType</code> objects in the form `{app_label}.{model}'.</p>
|
|
@@ -12811,6 +12832,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12811
12832
|
|
|
12812
12833
|
|
|
12813
12834
|
|
|
12835
|
+
|
|
12814
12836
|
<div class="doc doc-children">
|
|
12815
12837
|
|
|
12816
12838
|
|
|
@@ -12834,6 +12856,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12834
12856
|
|
|
12835
12857
|
<p>Parse a comma-separated string of model names into a list of PKs.</p>
|
|
12836
12858
|
|
|
12859
|
+
|
|
12837
12860
|
</div>
|
|
12838
12861
|
|
|
12839
12862
|
</div>
|
|
@@ -12872,6 +12895,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12872
12895
|
|
|
12873
12896
|
|
|
12874
12897
|
|
|
12898
|
+
|
|
12875
12899
|
<div class="doc doc-children">
|
|
12876
12900
|
|
|
12877
12901
|
|
|
@@ -12916,6 +12940,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12916
12940
|
|
|
12917
12941
|
|
|
12918
12942
|
|
|
12943
|
+
|
|
12919
12944
|
<div class="doc doc-children">
|
|
12920
12945
|
|
|
12921
12946
|
|
|
@@ -12947,7 +12972,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12947
12972
|
|
|
12948
12973
|
<div class="doc doc-contents ">
|
|
12949
12974
|
<p class="doc doc-class-bases">
|
|
12950
|
-
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>
|
|
12951
12976
|
|
|
12952
12977
|
|
|
12953
12978
|
<p>A generic confirmation form. The form is not valid unless the confirm field is checked.</p>
|
|
@@ -12960,6 +12985,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
12960
12985
|
|
|
12961
12986
|
|
|
12962
12987
|
|
|
12988
|
+
|
|
12963
12989
|
<div class="doc doc-children">
|
|
12964
12990
|
|
|
12965
12991
|
|
|
@@ -13004,6 +13030,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
13004
13030
|
|
|
13005
13031
|
|
|
13006
13032
|
|
|
13033
|
+
|
|
13007
13034
|
<div class="doc doc-children">
|
|
13008
13035
|
|
|
13009
13036
|
|
|
@@ -13035,7 +13062,7 @@ purposes, similar to CSVContentTypeField above.</p>
|
|
|
13035
13062
|
|
|
13036
13063
|
<div class="doc doc-contents ">
|
|
13037
13064
|
<p class="doc doc-class-bases">
|
|
13038
|
-
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>
|
|
13039
13066
|
|
|
13040
13067
|
|
|
13041
13068
|
<p>Appends an <code>api-value</code> attribute equal to the slugified model name for each ContentType. For example:
|
|
@@ -13050,6 +13077,7 @@ This attribute can be used to reference the relevant API endpoint for a particul
|
|
|
13050
13077
|
|
|
13051
13078
|
|
|
13052
13079
|
|
|
13080
|
+
|
|
13053
13081
|
<div class="doc doc-children">
|
|
13054
13082
|
|
|
13055
13083
|
|
|
@@ -13081,7 +13109,7 @@ This attribute can be used to reference the relevant API endpoint for a particul
|
|
|
13081
13109
|
|
|
13082
13110
|
<div class="doc doc-contents ">
|
|
13083
13111
|
<p class="doc doc-class-bases">
|
|
13084
|
-
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>
|
|
13085
13113
|
|
|
13086
13114
|
|
|
13087
13115
|
<p>Base class for CSV/JSON/YAML import of models that support custom fields.</p>
|
|
@@ -13097,6 +13125,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13097
13125
|
|
|
13098
13126
|
|
|
13099
13127
|
|
|
13128
|
+
|
|
13100
13129
|
<div class="doc doc-children">
|
|
13101
13130
|
|
|
13102
13131
|
|
|
@@ -13139,6 +13168,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13139
13168
|
|
|
13140
13169
|
|
|
13141
13170
|
|
|
13171
|
+
|
|
13142
13172
|
<div class="doc doc-children">
|
|
13143
13173
|
|
|
13144
13174
|
|
|
@@ -13183,6 +13213,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13183
13213
|
|
|
13184
13214
|
|
|
13185
13215
|
|
|
13216
|
+
|
|
13186
13217
|
<div class="doc doc-children">
|
|
13187
13218
|
|
|
13188
13219
|
|
|
@@ -13227,6 +13258,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13227
13258
|
|
|
13228
13259
|
|
|
13229
13260
|
|
|
13261
|
+
|
|
13230
13262
|
<div class="doc doc-children">
|
|
13231
13263
|
|
|
13232
13264
|
|
|
@@ -13258,7 +13290,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13258
13290
|
|
|
13259
13291
|
<div class="doc doc-contents ">
|
|
13260
13292
|
<p class="doc doc-class-bases">
|
|
13261
|
-
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>
|
|
13262
13294
|
|
|
13263
13295
|
|
|
13264
13296
|
<p>Form for dynamically inputting filter values for an object list.</p>
|
|
@@ -13271,6 +13303,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13271
13303
|
|
|
13272
13304
|
|
|
13273
13305
|
|
|
13306
|
+
|
|
13274
13307
|
<div class="doc doc-children">
|
|
13275
13308
|
|
|
13276
13309
|
|
|
@@ -13315,6 +13348,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13315
13348
|
|
|
13316
13349
|
|
|
13317
13350
|
|
|
13351
|
+
|
|
13318
13352
|
<div class="doc doc-children">
|
|
13319
13353
|
|
|
13320
13354
|
|
|
@@ -13346,7 +13380,7 @@ part of a JSON/YAML DeviceType import.</p>
|
|
|
13346
13380
|
|
|
13347
13381
|
<div class="doc doc-contents ">
|
|
13348
13382
|
<p class="doc doc-class-bases">
|
|
13349
|
-
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>
|
|
13350
13384
|
|
|
13351
13385
|
|
|
13352
13386
|
<p>Override get_bound_field() to avoid pre-populating field choices with a SQL query. The field will be
|
|
@@ -13360,6 +13394,7 @@ rendered only with choices set via bound data. Choices are populated on-demand v
|
|
|
13360
13394
|
|
|
13361
13395
|
|
|
13362
13396
|
|
|
13397
|
+
|
|
13363
13398
|
<div class="doc doc-children">
|
|
13364
13399
|
|
|
13365
13400
|
|
|
@@ -13384,6 +13419,7 @@ rendered only with choices set via bound data. Choices are populated on-demand v
|
|
|
13384
13419
|
<p>When null option is enabled and "None" is sent as part of a form to be submitted, it is sent as the
|
|
13385
13420
|
string 'null'. This will check for that condition and gracefully handle the conversion to a NoneType.</p>
|
|
13386
13421
|
|
|
13422
|
+
|
|
13387
13423
|
</div>
|
|
13388
13424
|
|
|
13389
13425
|
</div>
|
|
@@ -13426,6 +13462,7 @@ string 'null'. This will check for that condition and gracefully handle the con
|
|
|
13426
13462
|
|
|
13427
13463
|
|
|
13428
13464
|
|
|
13465
|
+
|
|
13429
13466
|
<div class="doc doc-children">
|
|
13430
13467
|
|
|
13431
13468
|
|
|
@@ -13452,6 +13489,7 @@ string 'null'. This will check for that condition and gracefully handle the con
|
|
|
13452
13489
|
from the given PK, so that the base class will get the appropriate field value rather than just keeping the PK,
|
|
13453
13490
|
because the rendered form field needs this in order to correctly prepopulate a default selection.</p>
|
|
13454
13491
|
|
|
13492
|
+
|
|
13455
13493
|
</div>
|
|
13456
13494
|
|
|
13457
13495
|
</div>
|
|
@@ -13477,7 +13515,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13477
13515
|
|
|
13478
13516
|
<div class="doc doc-contents ">
|
|
13479
13517
|
<p class="doc doc-class-bases">
|
|
13480
|
-
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>
|
|
13481
13519
|
|
|
13482
13520
|
|
|
13483
13521
|
<p>A multiple-choice version of DynamicModelChoiceField.</p>
|
|
@@ -13490,6 +13528,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13490
13528
|
|
|
13491
13529
|
|
|
13492
13530
|
|
|
13531
|
+
|
|
13493
13532
|
<div class="doc doc-children">
|
|
13494
13533
|
|
|
13495
13534
|
|
|
@@ -13535,6 +13574,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13535
13574
|
|
|
13536
13575
|
|
|
13537
13576
|
|
|
13577
|
+
|
|
13538
13578
|
<div class="doc doc-children">
|
|
13539
13579
|
|
|
13540
13580
|
|
|
@@ -13580,6 +13620,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13580
13620
|
|
|
13581
13621
|
|
|
13582
13622
|
|
|
13623
|
+
|
|
13583
13624
|
<div class="doc doc-children">
|
|
13584
13625
|
|
|
13585
13626
|
|
|
@@ -13611,7 +13652,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13611
13652
|
|
|
13612
13653
|
<div class="doc doc-contents ">
|
|
13613
13654
|
<p class="doc doc-class-bases">
|
|
13614
|
-
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>
|
|
13615
13656
|
|
|
13616
13657
|
|
|
13617
13658
|
<p>Generic form for creating an object from JSON/YAML data</p>
|
|
@@ -13624,6 +13665,7 @@ because the rendered form field needs this in order to correctly prepopulate a d
|
|
|
13624
13665
|
|
|
13625
13666
|
|
|
13626
13667
|
|
|
13668
|
+
|
|
13627
13669
|
<div class="doc doc-children">
|
|
13628
13670
|
|
|
13629
13671
|
|
|
@@ -13670,6 +13712,7 @@ and each Array element is validated by <code>base_field</code> validators.</p>
|
|
|
13670
13712
|
|
|
13671
13713
|
|
|
13672
13714
|
|
|
13715
|
+
|
|
13673
13716
|
<div class="doc doc-children">
|
|
13674
13717
|
|
|
13675
13718
|
|
|
@@ -13694,6 +13737,7 @@ and each Array element is validated by <code>base_field</code> validators.</p>
|
|
|
13694
13737
|
<p>Validate <code>value</code> and return its "cleaned" value as an appropriate
|
|
13695
13738
|
Python object. Raise ValidationError for any errors.</p>
|
|
13696
13739
|
|
|
13740
|
+
|
|
13697
13741
|
</div>
|
|
13698
13742
|
|
|
13699
13743
|
</div>
|
|
@@ -13711,6 +13755,7 @@ Python object. Raise ValidationError for any errors.</p>
|
|
|
13711
13755
|
|
|
13712
13756
|
<p>Return True if <code>data</code> differs from <code>initial</code>.</p>
|
|
13713
13757
|
|
|
13758
|
+
|
|
13714
13759
|
</div>
|
|
13715
13760
|
|
|
13716
13761
|
</div>
|
|
@@ -13728,6 +13773,7 @@ Python object. Raise ValidationError for any errors.</p>
|
|
|
13728
13773
|
|
|
13729
13774
|
<p>Return a string of this value.</p>
|
|
13730
13775
|
|
|
13776
|
+
|
|
13731
13777
|
</div>
|
|
13732
13778
|
|
|
13733
13779
|
</div>
|
|
@@ -13746,6 +13792,7 @@ Python object. Raise ValidationError for any errors.</p>
|
|
|
13746
13792
|
<p>Runs all validators against <code>value</code> and raise ValidationError if necessary.
|
|
13747
13793
|
Some validators can't be created at field initialization time.</p>
|
|
13748
13794
|
|
|
13795
|
+
|
|
13749
13796
|
</div>
|
|
13750
13797
|
|
|
13751
13798
|
</div>
|
|
@@ -13764,6 +13811,7 @@ Some validators can't be created at field initialization time.</p>
|
|
|
13764
13811
|
<p>Convert <code>value</code> into JSON, raising django.core.exceptions.ValidationError
|
|
13765
13812
|
if the data can't be converted. Return the converted value.</p>
|
|
13766
13813
|
|
|
13814
|
+
|
|
13767
13815
|
</div>
|
|
13768
13816
|
|
|
13769
13817
|
</div>
|
|
@@ -13781,6 +13829,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13781
13829
|
|
|
13782
13830
|
<p>Check to see if the provided value is a valid choice.</p>
|
|
13783
13831
|
|
|
13832
|
+
|
|
13784
13833
|
</div>
|
|
13785
13834
|
|
|
13786
13835
|
</div>
|
|
@@ -13798,6 +13847,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13798
13847
|
|
|
13799
13848
|
<p>Validate <code>value</code> and raise ValidationError if necessary.</p>
|
|
13800
13849
|
|
|
13850
|
+
|
|
13801
13851
|
</div>
|
|
13802
13852
|
|
|
13803
13853
|
</div>
|
|
@@ -13836,6 +13886,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13836
13886
|
|
|
13837
13887
|
|
|
13838
13888
|
|
|
13889
|
+
|
|
13839
13890
|
<div class="doc doc-children">
|
|
13840
13891
|
|
|
13841
13892
|
|
|
@@ -13881,6 +13932,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13881
13932
|
|
|
13882
13933
|
|
|
13883
13934
|
|
|
13935
|
+
|
|
13884
13936
|
<div class="doc doc-children">
|
|
13885
13937
|
|
|
13886
13938
|
|
|
@@ -13912,7 +13964,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13912
13964
|
|
|
13913
13965
|
<div class="doc doc-contents ">
|
|
13914
13966
|
<p class="doc doc-class-bases">
|
|
13915
|
-
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>
|
|
13916
13968
|
|
|
13917
13969
|
|
|
13918
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>
|
|
@@ -13926,6 +13978,7 @@ if the data can't be converted. Return the converted value.</p>
|
|
|
13926
13978
|
|
|
13927
13979
|
|
|
13928
13980
|
|
|
13981
|
+
|
|
13929
13982
|
<div class="doc doc-children">
|
|
13930
13983
|
|
|
13931
13984
|
|
|
@@ -13971,6 +14024,7 @@ Press enter to complete an input.</p>
|
|
|
13971
14024
|
|
|
13972
14025
|
|
|
13973
14026
|
|
|
14027
|
+
|
|
13974
14028
|
<div class="doc doc-children">
|
|
13975
14029
|
|
|
13976
14030
|
|
|
@@ -14016,6 +14070,7 @@ Press enter to create a new entry.</p>
|
|
|
14016
14070
|
|
|
14017
14071
|
|
|
14018
14072
|
|
|
14073
|
+
|
|
14019
14074
|
<div class="doc doc-children">
|
|
14020
14075
|
|
|
14021
14076
|
|
|
@@ -14062,6 +14117,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14062
14117
|
|
|
14063
14118
|
|
|
14064
14119
|
|
|
14120
|
+
|
|
14065
14121
|
<div class="doc doc-children">
|
|
14066
14122
|
|
|
14067
14123
|
|
|
@@ -14102,7 +14158,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14102
14158
|
<code>feature</code>
|
|
14103
14159
|
</td>
|
|
14104
14160
|
<td>
|
|
14105
|
-
<code>str</code>
|
|
14161
|
+
<code><span title="str">str</span></code>
|
|
14106
14162
|
</td>
|
|
14107
14163
|
<td>
|
|
14108
14164
|
<div class="doc-md-description">
|
|
@@ -14118,7 +14174,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14118
14174
|
<code>choices_as_strings</code>
|
|
14119
14175
|
</td>
|
|
14120
14176
|
<td>
|
|
14121
|
-
<code>bool</code>
|
|
14177
|
+
<code><span title="bool">bool</span></code>
|
|
14122
14178
|
</td>
|
|
14123
14179
|
<td>
|
|
14124
14180
|
<div class="doc-md-description">
|
|
@@ -14132,6 +14188,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14132
14188
|
</tbody>
|
|
14133
14189
|
</table>
|
|
14134
14190
|
|
|
14191
|
+
|
|
14135
14192
|
</div>
|
|
14136
14193
|
|
|
14137
14194
|
</div>
|
|
@@ -14157,7 +14214,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14157
14214
|
|
|
14158
14215
|
<div class="doc doc-contents ">
|
|
14159
14216
|
<p class="doc doc-class-bases">
|
|
14160
|
-
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>
|
|
14161
14218
|
|
|
14162
14219
|
|
|
14163
14220
|
<p>Base class for bulk-edit forms for models that support relationships, custom fields and notes.</p>
|
|
@@ -14170,6 +14227,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14170
14227
|
|
|
14171
14228
|
|
|
14172
14229
|
|
|
14230
|
+
|
|
14173
14231
|
<div class="doc doc-children">
|
|
14174
14232
|
|
|
14175
14233
|
|
|
@@ -14201,7 +14259,7 @@ Optionally can pass the selection through as a list of <code>{app_label}.{model}
|
|
|
14201
14259
|
|
|
14202
14260
|
<div class="doc doc-contents ">
|
|
14203
14261
|
<p class="doc doc-class-bases">
|
|
14204
|
-
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>
|
|
14205
14263
|
|
|
14206
14264
|
|
|
14207
14265
|
<p>This class exists to combine common functionality and is used to inherit from throughout the
|
|
@@ -14216,6 +14274,7 @@ RelationshipModelFilterFormMixin are needed.</p>
|
|
|
14216
14274
|
|
|
14217
14275
|
|
|
14218
14276
|
|
|
14277
|
+
|
|
14219
14278
|
<div class="doc doc-children">
|
|
14220
14279
|
|
|
14221
14280
|
|
|
@@ -14247,7 +14306,7 @@ RelationshipModelFilterFormMixin are needed.</p>
|
|
|
14247
14306
|
|
|
14248
14307
|
<div class="doc doc-contents ">
|
|
14249
14308
|
<p class="doc doc-class-bases">
|
|
14250
|
-
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>
|
|
14251
14310
|
|
|
14252
14311
|
|
|
14253
14312
|
<p>This class exists to combine common functionality and is used to inherit from throughout the
|
|
@@ -14262,6 +14321,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14262
14321
|
|
|
14263
14322
|
|
|
14264
14323
|
|
|
14324
|
+
|
|
14265
14325
|
<div class="doc doc-children">
|
|
14266
14326
|
|
|
14267
14327
|
|
|
@@ -14306,6 +14366,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14306
14366
|
|
|
14307
14367
|
|
|
14308
14368
|
|
|
14369
|
+
|
|
14309
14370
|
<div class="doc doc-children">
|
|
14310
14371
|
|
|
14311
14372
|
|
|
@@ -14337,7 +14398,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14337
14398
|
|
|
14338
14399
|
<div class="doc doc-contents ">
|
|
14339
14400
|
<p class="doc doc-class-bases">
|
|
14340
|
-
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>
|
|
14341
14402
|
|
|
14342
14403
|
|
|
14343
14404
|
<p>Bulk-edit form mixin for models that support Notes.</p>
|
|
@@ -14350,6 +14411,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14350
14411
|
|
|
14351
14412
|
|
|
14352
14413
|
|
|
14414
|
+
|
|
14353
14415
|
<div class="doc doc-children">
|
|
14354
14416
|
|
|
14355
14417
|
|
|
@@ -14394,6 +14456,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14394
14456
|
|
|
14395
14457
|
|
|
14396
14458
|
|
|
14459
|
+
|
|
14397
14460
|
<div class="doc doc-children">
|
|
14398
14461
|
|
|
14399
14462
|
|
|
@@ -14438,6 +14501,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14438
14501
|
|
|
14439
14502
|
|
|
14440
14503
|
|
|
14504
|
+
|
|
14441
14505
|
<div class="doc doc-children">
|
|
14442
14506
|
|
|
14443
14507
|
|
|
@@ -14469,7 +14533,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14469
14533
|
|
|
14470
14534
|
<div class="doc doc-contents ">
|
|
14471
14535
|
<p class="doc doc-class-bases">
|
|
14472
|
-
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>
|
|
14473
14537
|
|
|
14474
14538
|
|
|
14475
14539
|
<p>Bulk-edit form mixin for models that support Relationships.</p>
|
|
@@ -14482,6 +14546,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14482
14546
|
|
|
14483
14547
|
|
|
14484
14548
|
|
|
14549
|
+
|
|
14485
14550
|
<div class="doc doc-children">
|
|
14486
14551
|
|
|
14487
14552
|
|
|
@@ -14505,6 +14570,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14505
14570
|
|
|
14506
14571
|
<p>Helper method to be called from BulkEditView.post().</p>
|
|
14507
14572
|
|
|
14573
|
+
|
|
14508
14574
|
</div>
|
|
14509
14575
|
|
|
14510
14576
|
</div>
|
|
@@ -14541,6 +14607,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14541
14607
|
|
|
14542
14608
|
|
|
14543
14609
|
|
|
14610
|
+
|
|
14544
14611
|
<div class="doc doc-children">
|
|
14545
14612
|
|
|
14546
14613
|
|
|
@@ -14583,6 +14650,7 @@ NoteModelFormMixin are needed.</p>
|
|
|
14583
14650
|
|
|
14584
14651
|
|
|
14585
14652
|
|
|
14653
|
+
|
|
14586
14654
|
<div class="doc doc-children">
|
|
14587
14655
|
|
|
14588
14656
|
|
|
@@ -14615,6 +14683,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14615
14683
|
a different destination object.</li>
|
|
14616
14684
|
</ul>
|
|
14617
14685
|
|
|
14686
|
+
|
|
14618
14687
|
</div>
|
|
14619
14688
|
|
|
14620
14689
|
</div>
|
|
@@ -14653,6 +14722,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14653
14722
|
|
|
14654
14723
|
|
|
14655
14724
|
|
|
14725
|
+
|
|
14656
14726
|
<div class="doc doc-children">
|
|
14657
14727
|
|
|
14658
14728
|
|
|
@@ -14697,6 +14767,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14697
14767
|
|
|
14698
14768
|
|
|
14699
14769
|
|
|
14770
|
+
|
|
14700
14771
|
<div class="doc doc-children">
|
|
14701
14772
|
|
|
14702
14773
|
|
|
@@ -14741,6 +14812,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14741
14812
|
|
|
14742
14813
|
|
|
14743
14814
|
|
|
14815
|
+
|
|
14744
14816
|
<div class="doc doc-children">
|
|
14745
14817
|
|
|
14746
14818
|
|
|
@@ -14786,6 +14858,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14786
14858
|
|
|
14787
14859
|
|
|
14788
14860
|
|
|
14861
|
+
|
|
14789
14862
|
<div class="doc doc-children">
|
|
14790
14863
|
|
|
14791
14864
|
|
|
@@ -14817,7 +14890,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14817
14890
|
|
|
14818
14891
|
<div class="doc doc-contents ">
|
|
14819
14892
|
<p class="doc doc-class-bases">
|
|
14820
|
-
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>
|
|
14821
14894
|
|
|
14822
14895
|
|
|
14823
14896
|
<p>Include the primary key of each option in the option label (e.g. "Router7 (4721)").</p>
|
|
@@ -14830,6 +14903,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14830
14903
|
|
|
14831
14904
|
|
|
14832
14905
|
|
|
14906
|
+
|
|
14833
14907
|
<div class="doc doc-children">
|
|
14834
14908
|
|
|
14835
14909
|
|
|
@@ -14874,6 +14948,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14874
14948
|
|
|
14875
14949
|
|
|
14876
14950
|
|
|
14951
|
+
|
|
14877
14952
|
<div class="doc doc-children">
|
|
14878
14953
|
|
|
14879
14954
|
|
|
@@ -14914,7 +14989,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14914
14989
|
<code>slug_source</code>
|
|
14915
14990
|
</td>
|
|
14916
14991
|
<td>
|
|
14917
|
-
<code>(str
|
|
14992
|
+
<code>(<span title="str">str</span>, <span title="tuple">tuple</span>)</code>
|
|
14918
14993
|
</td>
|
|
14919
14994
|
<td>
|
|
14920
14995
|
<div class="doc-md-description">
|
|
@@ -14928,6 +15003,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14928
15003
|
</tbody>
|
|
14929
15004
|
</table>
|
|
14930
15005
|
|
|
15006
|
+
|
|
14931
15007
|
</div>
|
|
14932
15008
|
|
|
14933
15009
|
</div>
|
|
@@ -14966,6 +15042,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
14966
15042
|
|
|
14967
15043
|
|
|
14968
15044
|
|
|
15045
|
+
|
|
14969
15046
|
<div class="doc doc-children">
|
|
14970
15047
|
|
|
14971
15048
|
|
|
@@ -15008,6 +15085,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15008
15085
|
|
|
15009
15086
|
|
|
15010
15087
|
|
|
15088
|
+
|
|
15011
15089
|
</div>
|
|
15012
15090
|
|
|
15013
15091
|
</div>
|
|
@@ -15025,7 +15103,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15025
15103
|
|
|
15026
15104
|
<div class="doc doc-contents ">
|
|
15027
15105
|
<p class="doc doc-class-bases">
|
|
15028
|
-
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>
|
|
15029
15107
|
|
|
15030
15108
|
|
|
15031
15109
|
<p>A static <select> form widget using the Select2 library.</p>
|
|
@@ -15038,6 +15116,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15038
15116
|
|
|
15039
15117
|
|
|
15040
15118
|
|
|
15119
|
+
|
|
15041
15120
|
<div class="doc doc-children">
|
|
15042
15121
|
|
|
15043
15122
|
|
|
@@ -15082,6 +15161,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15082
15161
|
|
|
15083
15162
|
|
|
15084
15163
|
|
|
15164
|
+
|
|
15085
15165
|
<div class="doc doc-children">
|
|
15086
15166
|
|
|
15087
15167
|
|
|
@@ -15126,6 +15206,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15126
15206
|
|
|
15127
15207
|
|
|
15128
15208
|
|
|
15209
|
+
|
|
15129
15210
|
<div class="doc doc-children">
|
|
15130
15211
|
|
|
15131
15212
|
|
|
@@ -15157,7 +15238,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15157
15238
|
|
|
15158
15239
|
<div class="doc doc-contents ">
|
|
15159
15240
|
<p class="doc doc-class-bases">
|
|
15160
|
-
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>
|
|
15161
15242
|
|
|
15162
15243
|
|
|
15163
15244
|
<p>Form for configuring user's table preferences.</p>
|
|
@@ -15170,6 +15251,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15170
15251
|
|
|
15171
15252
|
|
|
15172
15253
|
|
|
15254
|
+
|
|
15173
15255
|
<div class="doc doc-children">
|
|
15174
15256
|
|
|
15175
15257
|
|
|
@@ -15201,7 +15283,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15201
15283
|
|
|
15202
15284
|
<div class="doc doc-contents ">
|
|
15203
15285
|
<p class="doc doc-class-bases">
|
|
15204
|
-
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>
|
|
15205
15287
|
|
|
15206
15288
|
|
|
15207
15289
|
<p>A filter field for the tags of a model. Only the tags used by a model are displayed.</p>
|
|
@@ -15215,6 +15297,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15215
15297
|
|
|
15216
15298
|
|
|
15217
15299
|
|
|
15300
|
+
|
|
15218
15301
|
<div class="doc doc-children">
|
|
15219
15302
|
|
|
15220
15303
|
|
|
@@ -15259,6 +15342,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15259
15342
|
|
|
15260
15343
|
|
|
15261
15344
|
|
|
15345
|
+
|
|
15262
15346
|
<div class="doc doc-children">
|
|
15263
15347
|
|
|
15264
15348
|
|
|
@@ -15291,6 +15375,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15291
15375
|
|
|
15292
15376
|
<p>Add a blank choice to the beginning of a choices list.</p>
|
|
15293
15377
|
|
|
15378
|
+
|
|
15294
15379
|
</div>
|
|
15295
15380
|
|
|
15296
15381
|
</div>
|
|
@@ -15308,6 +15393,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15308
15393
|
|
|
15309
15394
|
<p>Attach a field to an existing filter form class.</p>
|
|
15310
15395
|
|
|
15396
|
+
|
|
15311
15397
|
</div>
|
|
15312
15398
|
|
|
15313
15399
|
</div>
|
|
@@ -15325,6 +15411,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15325
15411
|
|
|
15326
15412
|
<p>Expand an alphabetic pattern into a list of strings.</p>
|
|
15327
15413
|
|
|
15414
|
+
|
|
15328
15415
|
</div>
|
|
15329
15416
|
|
|
15330
15417
|
</div>
|
|
@@ -15344,6 +15431,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15344
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']
|
|
15345
15432
|
'2001:db8:0:[0,fd-ff]::/64' => ['2001:db8:0:0::/64', '2001:db8:0:fd::/64', ... '2001:db8:0:ff::/64']</p>
|
|
15346
15433
|
|
|
15434
|
+
|
|
15347
15435
|
</div>
|
|
15348
15436
|
|
|
15349
15437
|
</div>
|
|
@@ -15363,6 +15451,7 @@ Then verify that any requested RelationshipAssociations do not violate relations
|
|
|
15363
15451
|
for creating objects, but want to avoid the model's validation (e.g. for bulk create/edit functions). All fields
|
|
15364
15452
|
are marked as not required.</p>
|
|
15365
15453
|
|
|
15454
|
+
|
|
15366
15455
|
</div>
|
|
15367
15456
|
|
|
15368
15457
|
</div>
|
|
@@ -15382,6 +15471,7 @@ are marked as not required.</p>
|
|
|
15382
15471
|
'a-d,f' => [a, b, c, d, f]
|
|
15383
15472
|
'0-3,a-d' => [0, 1, 2, 3, a, b, c, d]</p>
|
|
15384
15473
|
|
|
15474
|
+
|
|
15385
15475
|
</div>
|
|
15386
15476
|
|
|
15387
15477
|
</div>
|
|
@@ -15402,6 +15492,7 @@ hexadecimal list, as specified by the base parameter
|
|
|
15402
15492
|
'0-3,5' => [0, 1, 2, 3, 5]
|
|
15403
15493
|
'2,8-b,d,f' => [2, 8, 9, a, b, d, f]</p>
|
|
15404
15494
|
|
|
15495
|
+
|
|
15405
15496
|
</div>
|
|
15406
15497
|
|
|
15407
15498
|
</div>
|
|
@@ -15420,6 +15511,7 @@ hexadecimal list, as specified by the base parameter
|
|
|
15420
15511
|
<p>Restrict all form fields which reference a RestrictedQuerySet. This ensures that users see only permitted objects
|
|
15421
15512
|
as available choices.</p>
|
|
15422
15513
|
|
|
15514
|
+
|
|
15423
15515
|
</div>
|
|
15424
15516
|
|
|
15425
15517
|
</div>
|
|
@@ -15527,7 +15619,7 @@ as available choices.</p>
|
|
|
15527
15619
|
|
|
15528
15620
|
|
|
15529
15621
|
<a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
|
|
15530
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free
|
|
15622
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64m0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0m32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32"/></svg>
|
|
15531
15623
|
</a>
|
|
15532
15624
|
|
|
15533
15625
|
|
|
@@ -15535,7 +15627,7 @@ as available choices.</p>
|
|
|
15535
15627
|
|
|
15536
15628
|
|
|
15537
15629
|
<a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
|
|
15538
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free
|
|
15630
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M549.7 124.1c-6.2-23.7-24.8-42.3-48.3-48.6C458.9 64 288.1 64 288.1 64S117.3 64 74.7 75.5c-23.5 6.3-42 24.9-48.3 48.6C15 167 15 256.4 15 256.4s0 89.4 11.4 132.3c6.3 23.6 24.8 41.5 48.3 47.8C117.3 448 288.1 448 288.1 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zM232.2 337.6V175.2l142.7 81.2z"/></svg>
|
|
15539
15631
|
</a>
|
|
15540
15632
|
|
|
15541
15633
|
|
|
@@ -15543,7 +15635,7 @@ as available choices.</p>
|
|
|
15543
15635
|
|
|
15544
15636
|
|
|
15545
15637
|
<a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
|
|
15546
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free
|
|
15638
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M94.1 315.1c0 25.9-21.2 47.1-47.1 47.1S0 341 0 315.1 21.2 268 47.1 268h47.1v47.1zm23.7 0c0-25.9 21.2-47.1 47.1-47.1s47.1 21.2 47.1 47.1v117.8c0 25.9-21.2 47.1-47.1 47.1s-47.1-21.2-47.1-47.1zm47.1-189c-25.9 0-47.1-21.2-47.1-47.1s21.2-47 47.1-47S212 53.2 212 79.1v47.1h-47.1zm0 23.7c25.9 0 47.1 21.2 47.1 47.1S190.8 244 164.9 244H47.1C21.2 244 0 222.8 0 196.9s21.2-47.1 47.1-47.1zm189 47.1c0-25.9 21.2-47.1 47.1-47.1s47 21.2 47 47.1-21.2 47.1-47.1 47.1h-47.1v-47.1zm-23.7 0c0 25.9-21.2 47.1-47.1 47.1S236 222.8 236 196.9V79.1c0-25.9 21.2-47.1 47.1-47.1s47.1 21.2 47.1 47.1zm-47.1 189c25.9 0 47.1 21.2 47.1 47.1s-21.2 47-47.1 47-47.1-21.2-47.1-47.1v-47.1h47.1zm0-23.7c-25.9 0-47.1-21.2-47.1-47.1s21.2-47.1 47.1-47.1h117.8c25.9 0 47.1 21.2 47.1 47.1s-21.2 47.1-47.1 47.1z"/></svg>
|
|
15547
15639
|
</a>
|
|
15548
15640
|
|
|
15549
15641
|
|
|
@@ -15551,7 +15643,7 @@ as available choices.</p>
|
|
|
15551
15643
|
|
|
15552
15644
|
|
|
15553
15645
|
<a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
|
|
15554
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0
|
|
15646
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M173.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M252.8 8C114.1 8 8 113.3 8 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C436.2 457.8 504 362.9 504 252 504 113.3 391.5 8 252.8 8M105.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
|
|
15555
15647
|
</a>
|
|
15556
15648
|
|
|
15557
15649
|
|
|
@@ -15559,7 +15651,7 @@ as available choices.</p>
|
|
|
15559
15651
|
|
|
15560
15652
|
|
|
15561
15653
|
<a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
|
|
15562
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free
|
|
15654
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2025 Fonticons, Inc.--><path fill="currentColor" d="M459.4 151.7c.3 4.5.3 9.1.3 13.6 0 138.7-105.6 298.6-298.6 298.6-59.5 0-114.7-17.2-161.1-47.1 8.4 1 16.6 1.3 25.3 1.3 49.1 0 94.2-16.6 130.3-44.8-46.1-1-84.8-31.2-98.1-72.8 6.5 1 13 1.6 19.8 1.6 9.4 0 18.8-1.3 27.6-3.6-48.1-9.7-84.1-52-84.1-103v-1.3c14 7.8 30.2 12.7 47.4 13.3-28.3-18.8-46.8-51-46.8-87.4 0-19.5 5.2-37.4 14.3-53C87.4 130.8 165 172.4 252.1 176.9c-1.6-7.8-2.6-15.9-2.6-24C249.5 95.1 296.3 48 354.4 48c30.2 0 57.5 12.7 76.7 33.1 23.7-4.5 46.5-13.3 66.6-25.3-7.8 24.4-24.4 44.8-46.1 57.8 21.1-2.3 41.6-8.1 60.4-16.2-14.3 20.8-32.2 39.3-52.6 54.3"/></svg>
|
|
15563
15655
|
</a>
|
|
15564
15656
|
|
|
15565
15657
|
</div>
|
|
@@ -15579,7 +15671,7 @@ as available choices.</p>
|
|
|
15579
15671
|
<script id="__config" type="application/json">{"base": "../../..", "features": ["content.code.annotate", "content.code.copy", "content.tabs.link", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../assets/javascripts/workers/search.d50fe291.min.js", "tags": null, "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"}, "version": null}</script>
|
|
15580
15672
|
|
|
15581
15673
|
|
|
15582
|
-
<script src="../../../assets/javascripts/bundle.
|
|
15674
|
+
<script src="../../../assets/javascripts/bundle.50899def.min.js"></script>
|
|
15583
15675
|
|
|
15584
15676
|
|
|
15585
15677
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|