nautobot 2.2.0__py3-none-any.whl → 2.2.0b1__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/api.py +2 -1
- nautobot/apps/utils.py +0 -4
- nautobot/apps/views.py +0 -2
- nautobot/circuits/api/urls.py +2 -1
- nautobot/circuits/api/views.py +12 -0
- nautobot/circuits/tests/test_filters.py +1 -1
- nautobot/core/api/routers.py +3 -25
- nautobot/core/api/utils.py +0 -4
- nautobot/core/api/views.py +15 -21
- nautobot/core/filters.py +1 -7
- nautobot/core/management/commands/generate_test_data.py +4 -4
- nautobot/core/settings.py +0 -1
- nautobot/core/tables.py +1 -2
- nautobot/core/templates/admin/base.html +94 -23
- nautobot/core/templates/graphene/graphiql.html +47 -18
- nautobot/core/templates/inc/footer.html +5 -5
- nautobot/core/templates/inc/nav_menu.html +7 -0
- nautobot/core/templates/rest_framework/api.html +5 -12
- nautobot/core/templatetags/helpers.py +2 -2
- nautobot/core/testing/views.py +0 -30
- nautobot/core/tests/test_api.py +6 -13
- nautobot/core/tests/test_csv.py +4 -5
- nautobot/core/tests/test_filters.py +1 -2
- nautobot/core/tests/test_graphql.py +14 -4
- nautobot/core/tests/test_navigations.py +0 -3
- nautobot/core/tests/test_views.py +16 -22
- nautobot/core/utils/lookup.py +0 -124
- nautobot/core/views/__init__.py +7 -3
- nautobot/core/views/generic.py +3 -19
- nautobot/core/views/mixins.py +0 -7
- nautobot/core/views/renderers.py +1 -4
- nautobot/dcim/api/serializers.py +4 -4
- nautobot/dcim/api/urls.py +3 -2
- nautobot/dcim/api/views.py +18 -7
- nautobot/dcim/factory.py +7 -7
- nautobot/dcim/filters/__init__.py +17 -16
- nautobot/dcim/forms.py +45 -61
- nautobot/dcim/homepage.py +3 -11
- nautobot/dcim/migrations/0057_controller_models.py +70 -11
- nautobot/dcim/models/__init__.py +2 -2
- nautobot/dcim/models/devices.py +16 -14
- nautobot/dcim/models/racks.py +3 -1
- nautobot/dcim/navigation.py +31 -23
- nautobot/dcim/signals.py +6 -6
- nautobot/dcim/tables/__init__.py +2 -2
- nautobot/dcim/tables/devices.py +15 -12
- nautobot/dcim/tables/template_code.py +1 -1
- nautobot/dcim/templates/dcim/controller_retrieve.html +18 -35
- nautobot/dcim/templates/dcim/controllerdevicegroup_create.html +43 -0
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +43 -67
- nautobot/dcim/templates/dcim/device.html +2 -10
- nautobot/dcim/templates/dcim/device_edit.html +1 -1
- nautobot/dcim/tests/test_api.py +6 -11
- nautobot/dcim/tests/test_filters.py +81 -92
- nautobot/dcim/tests/test_graphql.py +1 -11
- nautobot/dcim/tests/test_models.py +15 -15
- nautobot/dcim/tests/test_signals.py +0 -2
- nautobot/dcim/tests/test_views.py +12 -24
- nautobot/dcim/urls.py +1 -1
- nautobot/dcim/views.py +15 -19
- nautobot/extras/api/urls.py +2 -1
- nautobot/extras/api/views.py +10 -0
- nautobot/extras/filters/__init__.py +2 -53
- nautobot/extras/forms/contacts.py +0 -7
- nautobot/extras/managers.py +0 -14
- nautobot/extras/navigation.py +65 -71
- nautobot/extras/plugins/views.py +11 -7
- nautobot/extras/tests/test_api.py +0 -2
- nautobot/extras/tests/test_dynamicgroups.py +0 -2
- nautobot/extras/tests/test_filters.py +4 -89
- nautobot/extras/tests/test_models.py +0 -9
- nautobot/extras/tests/test_relationships.py +1 -10
- nautobot/extras/tests/test_views.py +1 -112
- nautobot/extras/views.py +10 -10
- nautobot/ipam/api/urls.py +2 -1
- nautobot/ipam/api/views.py +11 -0
- nautobot/ipam/tables.py +22 -2
- nautobot/ipam/tests/test_graphql.py +3 -2
- nautobot/ipam/tests/test_views.py +0 -1
- nautobot/ipam/views.py +9 -9
- nautobot/project-static/css/base.css +0 -1
- nautobot/project-static/docs/404.html +3 -24
- nautobot/project-static/docs/apps/index.html +3 -24
- nautobot/project-static/docs/apps/nautobot-apps.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +5 -26
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +3 -24
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +3 -242
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +5 -69
- nautobot/project-static/docs/development/apps/api/configuration-view.html +3 -24
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +3 -24
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +3 -24
- nautobot/project-static/docs/development/apps/api/models/global-search.html +3 -24
- nautobot/project-static/docs/development/apps/api/models/graphql.html +3 -24
- nautobot/project-static/docs/development/apps/api/models/index.html +3 -24
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +3 -24
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +3 -24
- nautobot/project-static/docs/development/apps/api/prometheus.html +3 -24
- nautobot/project-static/docs/development/apps/api/setup.html +3 -24
- nautobot/project-static/docs/development/apps/api/testing.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +3 -24
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/base-template.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +12 -38
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +15 -41
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/index.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/notes.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +3 -24
- nautobot/project-static/docs/development/apps/api/views/urls.html +3 -24
- nautobot/project-static/docs/development/apps/index.html +3 -24
- nautobot/project-static/docs/development/apps/migration/code-updates.html +3 -24
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +3 -24
- nautobot/project-static/docs/development/apps/migration/from-v1.html +3 -24
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +3 -24
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +3 -24
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +3 -24
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +3 -24
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +3 -24
- nautobot/project-static/docs/development/core/application-registry.html +3 -24
- nautobot/project-static/docs/development/core/best-practices.html +3 -24
- nautobot/project-static/docs/development/core/bootstrap-ui.html +3 -24
- nautobot/project-static/docs/development/core/caching.html +3 -24
- nautobot/project-static/docs/development/core/controllers.html +204 -35
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +3 -24
- nautobot/project-static/docs/development/core/extending-models.html +3 -24
- nautobot/project-static/docs/development/core/generic-views.html +3 -24
- nautobot/project-static/docs/development/core/getting-started.html +13 -43
- nautobot/project-static/docs/development/core/homepage.html +3 -24
- nautobot/project-static/docs/development/core/index.html +3 -24
- nautobot/project-static/docs/development/core/model-features.html +3 -24
- nautobot/project-static/docs/development/core/natural-keys.html +3 -24
- nautobot/project-static/docs/development/core/navigation-menu.html +3 -24
- nautobot/project-static/docs/development/core/release-checklist.html +3 -24
- nautobot/project-static/docs/development/core/role-internals.html +3 -24
- nautobot/project-static/docs/development/core/settings.html +3 -24
- nautobot/project-static/docs/development/core/style-guide.html +3 -24
- nautobot/project-static/docs/development/core/templates.html +3 -24
- nautobot/project-static/docs/development/core/testing.html +3 -24
- nautobot/project-static/docs/development/core/user-preferences.html +3 -24
- nautobot/project-static/docs/development/index.html +3 -24
- nautobot/project-static/docs/development/jobs/index.html +3 -24
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +3 -24
- nautobot/project-static/docs/index.html +3 -24
- nautobot/project-static/docs/models/dcim/{controllermanageddevicegroup.html → controllerdevicegroup.html} +3 -3
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/index.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.0.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.1.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.2.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.3.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.4.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.5.html +3 -24
- nautobot/project-static/docs/release-notes/version-1.6.html +3 -24
- nautobot/project-static/docs/release-notes/version-2.0.html +3 -24
- nautobot/project-static/docs/release-notes/version-2.1.html +162 -411
- nautobot/project-static/docs/release-notes/version-2.2.html +30 -212
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +255 -260
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +3 -24
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/caching.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +3 -24
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/docker.html +6 -31
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/index.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +3 -24
- nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +6 -27
- nautobot/project-static/docs/user-guide/administration/installation/services.html +3 -24
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +3 -24
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +3 -24
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +3 -24
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +3 -24
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +11 -259
- nautobot/project-static/docs/user-guide/core-data-model/dcim/{controllermanageddevicegroup.html → controllerdevicegroup.html} +17 -107
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +6 -27
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +3 -24
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/{contacts-and-teams.html → contact-and-team.html} +4 -25
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +5 -26
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +5 -26
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +3 -24
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +3 -24
- nautobot/project-static/docs/user-guide/index.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +3 -24
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +3 -24
- nautobot/tenancy/api/urls.py +2 -1
- nautobot/tenancy/api/views.py +12 -0
- nautobot/tenancy/tables.py +1 -1
- nautobot/tenancy/tests/test_views.py +0 -1
- nautobot/users/api/urls.py +2 -1
- nautobot/users/api/views.py +65 -2
- nautobot/users/views.py +8 -8
- nautobot/virtualization/api/urls.py +2 -1
- nautobot/virtualization/api/views.py +12 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/METADATA +3 -3
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/RECORD +356 -361
- nautobot/core/tests/integration/test_view_authentication.py +0 -67
- nautobot/dcim/management/commands/migrate_location_contacts.py +0 -218
- nautobot/dcim/templates/dcim/controller_create.html +0 -70
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +0 -88
- nautobot/ipam/tests/test_tables.py +0 -42
- nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +0 -8581
- /nautobot/dcim/templates/dcim/{controllermanageddevicegroup_retrieve.html → controllerdevicegroup_retrieve.html} +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/NOTICE +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/WHEEL +0 -0
- {nautobot-2.2.0.dist-info → nautobot-2.2.0b1.dist-info}/entry_points.txt +0 -0
|
@@ -686,27 +686,6 @@
|
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
|
|
689
|
-
<li class="md-nav__item">
|
|
690
|
-
<a href="../../../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
<span class="md-ellipsis">
|
|
694
|
-
Health Checks
|
|
695
|
-
</span>
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
</a>
|
|
699
|
-
</li>
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
689
|
<li class="md-nav__item">
|
|
711
690
|
<a href="../../../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
712
691
|
|
|
@@ -1912,7 +1891,7 @@
|
|
|
1912
1891
|
|
|
1913
1892
|
|
|
1914
1893
|
<li class="md-nav__item">
|
|
1915
|
-
<a href="../../../user-guide/feature-guides/
|
|
1894
|
+
<a href="../../../user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
|
|
1916
1895
|
|
|
1917
1896
|
|
|
1918
1897
|
<span class="md-ellipsis">
|
|
@@ -3177,11 +3156,11 @@
|
|
|
3177
3156
|
|
|
3178
3157
|
|
|
3179
3158
|
<li class="md-nav__item">
|
|
3180
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3159
|
+
<a href="../../../user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
|
|
3181
3160
|
|
|
3182
3161
|
|
|
3183
3162
|
<span class="md-ellipsis">
|
|
3184
|
-
Controller
|
|
3163
|
+
Controller Device Group
|
|
3185
3164
|
</span>
|
|
3186
3165
|
|
|
3187
3166
|
|
|
@@ -6746,24 +6725,6 @@
|
|
|
6746
6725
|
</span>
|
|
6747
6726
|
</a>
|
|
6748
6727
|
|
|
6749
|
-
</li>
|
|
6750
|
-
|
|
6751
|
-
<li class="md-nav__item">
|
|
6752
|
-
<a href="#nautobot.apps.utils.get_url_for_url_pattern" class="md-nav__link">
|
|
6753
|
-
<span class="md-ellipsis">
|
|
6754
|
-
get_url_for_url_pattern
|
|
6755
|
-
</span>
|
|
6756
|
-
</a>
|
|
6757
|
-
|
|
6758
|
-
</li>
|
|
6759
|
-
|
|
6760
|
-
<li class="md-nav__item">
|
|
6761
|
-
<a href="#nautobot.apps.utils.get_url_patterns" class="md-nav__link">
|
|
6762
|
-
<span class="md-ellipsis">
|
|
6763
|
-
get_url_patterns
|
|
6764
|
-
</span>
|
|
6765
|
-
</a>
|
|
6766
|
-
|
|
6767
6728
|
</li>
|
|
6768
6729
|
|
|
6769
6730
|
<li class="md-nav__item">
|
|
@@ -8916,24 +8877,6 @@
|
|
|
8916
8877
|
</span>
|
|
8917
8878
|
</a>
|
|
8918
8879
|
|
|
8919
|
-
</li>
|
|
8920
|
-
|
|
8921
|
-
<li class="md-nav__item">
|
|
8922
|
-
<a href="#nautobot.apps.utils.get_url_for_url_pattern" class="md-nav__link">
|
|
8923
|
-
<span class="md-ellipsis">
|
|
8924
|
-
get_url_for_url_pattern
|
|
8925
|
-
</span>
|
|
8926
|
-
</a>
|
|
8927
|
-
|
|
8928
|
-
</li>
|
|
8929
|
-
|
|
8930
|
-
<li class="md-nav__item">
|
|
8931
|
-
<a href="#nautobot.apps.utils.get_url_patterns" class="md-nav__link">
|
|
8932
|
-
<span class="md-ellipsis">
|
|
8933
|
-
get_url_patterns
|
|
8934
|
-
</span>
|
|
8935
|
-
</a>
|
|
8936
|
-
|
|
8937
8880
|
</li>
|
|
8938
8881
|
|
|
8939
8882
|
<li class="md-nav__item">
|
|
@@ -11097,188 +11040,6 @@ associated with the model and its name is expected to be <code>{ModelName}Table<
|
|
|
11097
11040
|
|
|
11098
11041
|
|
|
11099
11042
|
|
|
11100
|
-
<h2 id="nautobot.apps.utils.get_url_for_url_pattern" class="doc doc-heading">
|
|
11101
|
-
<code class="highlight language-python"><span class="n">nautobot</span><span class="o">.</span><span class="n">apps</span><span class="o">.</span><span class="n">utils</span><span class="o">.</span><span class="n">get_url_for_url_pattern</span><span class="p">(</span><span class="n">url_pattern</span><span class="p">)</span></code>
|
|
11102
|
-
|
|
11103
|
-
<a href="#nautobot.apps.utils.get_url_for_url_pattern" class="headerlink" title="Permanent link">¶</a></h2>
|
|
11104
|
-
|
|
11105
|
-
|
|
11106
|
-
<div class="doc doc-contents ">
|
|
11107
|
-
|
|
11108
|
-
<p>Given a URL pattern, construct a URL string that would match that pattern.</p>
|
|
11109
|
-
|
|
11110
|
-
|
|
11111
|
-
|
|
11112
|
-
<p><strong>Examples:</strong></p>
|
|
11113
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="gp">>>> </span><span class="n">get_url_for_url_pattern</span><span class="p">(</span><span class="s2">"/plugins/example-app/^models/(?P<pk>[^/.]+)/$"</span><span class="p">)</span>
|
|
11114
|
-
<a id="__codelineno-0-2" name="__codelineno-0-2" href="#__codelineno-0-2"></a><span class="go">'/plugins/example-app/models/00000000-0000-0000-0000-000000000000/'</span>
|
|
11115
|
-
<a id="__codelineno-0-3" name="__codelineno-0-3" href="#__codelineno-0-3"></a><span class="gp">>>> </span><span class="n">get_url_for_url_pattern</span><span class="p">(</span><span class="s2">"/circuits/circuit-terminations/<uuid:termination_a_id>/connect/<str:termination_b_type>/"</span><span class="p">)</span>
|
|
11116
|
-
<a id="__codelineno-0-4" name="__codelineno-0-4" href="#__codelineno-0-4"></a><span class="go">'/circuits/circuit-terminations/00000000-0000-0000-0000-000000000000/connect/string/'</span>
|
|
11117
|
-
</code></pre></div>
|
|
11118
|
-
|
|
11119
|
-
</div>
|
|
11120
|
-
|
|
11121
|
-
</div>
|
|
11122
|
-
|
|
11123
|
-
|
|
11124
|
-
<div class="doc doc-object doc-function">
|
|
11125
|
-
|
|
11126
|
-
|
|
11127
|
-
|
|
11128
|
-
<h2 id="nautobot.apps.utils.get_url_patterns" class="doc doc-heading">
|
|
11129
|
-
<code class="highlight language-python"><span class="n">nautobot</span><span class="o">.</span><span class="n">apps</span><span class="o">.</span><span class="n">utils</span><span class="o">.</span><span class="n">get_url_patterns</span><span class="p">(</span><span class="n">urlconf</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">patterns_list</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">base_path</span><span class="o">=</span><span class="s1">'/'</span><span class="p">)</span></code>
|
|
11130
|
-
|
|
11131
|
-
<a href="#nautobot.apps.utils.get_url_patterns" class="headerlink" title="Permanent link">¶</a></h2>
|
|
11132
|
-
|
|
11133
|
-
|
|
11134
|
-
<div class="doc doc-contents ">
|
|
11135
|
-
|
|
11136
|
-
<p>Recursively yield a list of registered URL patterns.</p>
|
|
11137
|
-
|
|
11138
|
-
|
|
11139
|
-
|
|
11140
|
-
<p><strong>Parameters:</strong></p>
|
|
11141
|
-
<table>
|
|
11142
|
-
<thead>
|
|
11143
|
-
<tr>
|
|
11144
|
-
<th>Name</th>
|
|
11145
|
-
<th>Type</th>
|
|
11146
|
-
<th>Description</th>
|
|
11147
|
-
<th>Default</th>
|
|
11148
|
-
</tr>
|
|
11149
|
-
</thead>
|
|
11150
|
-
<tbody>
|
|
11151
|
-
<tr>
|
|
11152
|
-
<td><code>urlconf</code></td>
|
|
11153
|
-
<td>
|
|
11154
|
-
<code>URLConf</code>
|
|
11155
|
-
</td>
|
|
11156
|
-
<td>
|
|
11157
|
-
<div class="doc-md-description">
|
|
11158
|
-
<p>Python module such as <code>nautobot.core.urls</code>.
|
|
11159
|
-
Default if unspecified is the value of <code>settings.ROOT_URLCONF</code>, i.e. the <code>nautobot.core.urls</code> module.</p>
|
|
11160
|
-
</div>
|
|
11161
|
-
</td>
|
|
11162
|
-
<td>
|
|
11163
|
-
<code>None</code>
|
|
11164
|
-
</td>
|
|
11165
|
-
</tr>
|
|
11166
|
-
<tr>
|
|
11167
|
-
<td><code>patterns_list</code></td>
|
|
11168
|
-
<td>
|
|
11169
|
-
<code>list</code>
|
|
11170
|
-
</td>
|
|
11171
|
-
<td>
|
|
11172
|
-
<div class="doc-md-description">
|
|
11173
|
-
<p>Used in recursion. Generally can be omitted on initial call.
|
|
11174
|
-
Default if unspecified is the <code>url_patterns</code> attribute of the given <code>urlconf</code> module.</p>
|
|
11175
|
-
</div>
|
|
11176
|
-
</td>
|
|
11177
|
-
<td>
|
|
11178
|
-
<code>None</code>
|
|
11179
|
-
</td>
|
|
11180
|
-
</tr>
|
|
11181
|
-
<tr>
|
|
11182
|
-
<td><code>base_path</code></td>
|
|
11183
|
-
<td>
|
|
11184
|
-
<code>str</code>
|
|
11185
|
-
</td>
|
|
11186
|
-
<td>
|
|
11187
|
-
<div class="doc-md-description">
|
|
11188
|
-
<p>String to prepend to all URL patterns yielded.
|
|
11189
|
-
Default if unspecified is the string <code>"/"</code>.</p>
|
|
11190
|
-
</div>
|
|
11191
|
-
</td>
|
|
11192
|
-
<td>
|
|
11193
|
-
<code>'/'</code>
|
|
11194
|
-
</td>
|
|
11195
|
-
</tr>
|
|
11196
|
-
</tbody>
|
|
11197
|
-
</table>
|
|
11198
|
-
|
|
11199
|
-
|
|
11200
|
-
|
|
11201
|
-
<p><strong>Yields:</strong></p>
|
|
11202
|
-
<table>
|
|
11203
|
-
<thead>
|
|
11204
|
-
<tr>
|
|
11205
|
-
<th>Type</th>
|
|
11206
|
-
<th>Description</th>
|
|
11207
|
-
</tr>
|
|
11208
|
-
</thead>
|
|
11209
|
-
<tbody>
|
|
11210
|
-
<tr>
|
|
11211
|
-
<td>
|
|
11212
|
-
<code>str</code>
|
|
11213
|
-
</td>
|
|
11214
|
-
<td>
|
|
11215
|
-
<div class="doc-md-description">
|
|
11216
|
-
<p>Each URL pattern defined in the given urlconf and its descendants</p>
|
|
11217
|
-
</div>
|
|
11218
|
-
</td>
|
|
11219
|
-
</tr>
|
|
11220
|
-
</tbody>
|
|
11221
|
-
</table>
|
|
11222
|
-
|
|
11223
|
-
|
|
11224
|
-
|
|
11225
|
-
<p><strong>Examples:</strong></p>
|
|
11226
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="gp">>>> </span><span class="n">generator</span> <span class="o">=</span> <span class="n">get_url_patterns</span><span class="p">()</span>
|
|
11227
|
-
<a id="__codelineno-0-2" name="__codelineno-0-2" href="#__codelineno-0-2"></a><span class="gp">>>> </span><span class="nb">next</span><span class="p">(</span><span class="n">generator</span><span class="p">)</span>
|
|
11228
|
-
<a id="__codelineno-0-3" name="__codelineno-0-3" href="#__codelineno-0-3"></a><span class="go">'/'</span>
|
|
11229
|
-
<a id="__codelineno-0-4" name="__codelineno-0-4" href="#__codelineno-0-4"></a><span class="gp">>>> </span><span class="nb">next</span><span class="p">(</span><span class="n">generator</span><span class="p">)</span>
|
|
11230
|
-
<a id="__codelineno-0-5" name="__codelineno-0-5" href="#__codelineno-0-5"></a><span class="go">'/search/'</span>
|
|
11231
|
-
<a id="__codelineno-0-6" name="__codelineno-0-6" href="#__codelineno-0-6"></a><span class="gp">>>> </span><span class="nb">next</span><span class="p">(</span><span class="n">generator</span><span class="p">)</span>
|
|
11232
|
-
<a id="__codelineno-0-7" name="__codelineno-0-7" href="#__codelineno-0-7"></a><span class="go">'/login/'</span>
|
|
11233
|
-
<a id="__codelineno-0-8" name="__codelineno-0-8" href="#__codelineno-0-8"></a><span class="gp">>>> </span><span class="nb">next</span><span class="p">(</span><span class="n">generator</span><span class="p">)</span>
|
|
11234
|
-
<a id="__codelineno-0-9" name="__codelineno-0-9" href="#__codelineno-0-9"></a><span class="go">'/logout/'</span>
|
|
11235
|
-
<a id="__codelineno-0-10" name="__codelineno-0-10" href="#__codelineno-0-10"></a><span class="gp">>>> </span><span class="nb">next</span><span class="p">(</span><span class="n">generator</span><span class="p">)</span>
|
|
11236
|
-
<a id="__codelineno-0-11" name="__codelineno-0-11" href="#__codelineno-0-11"></a><span class="go">'/circuits/circuits/<uuid:pk>/terminations/swap/'</span>
|
|
11237
|
-
</code></pre></div>
|
|
11238
|
-
<div class="highlight"><pre><span></span><code><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="gp">>>> </span><span class="kn">import</span> <span class="nn">example_plugin.urls</span> <span class="k">as</span> <span class="nn">example_urls</span>
|
|
11239
|
-
<a id="__codelineno-0-2" name="__codelineno-0-2" href="#__codelineno-0-2"></a><span class="gp">>>> </span><span class="k">for</span> <span class="n">url_pattern</span> <span class="ow">in</span> <span class="n">get_url_patterns</span><span class="p">(</span><span class="n">example_urls</span><span class="p">,</span> <span class="n">base_path</span><span class="o">=</span><span class="s2">"/plugins/example-app/"</span><span class="p">):</span>
|
|
11240
|
-
<a id="__codelineno-0-3" name="__codelineno-0-3" href="#__codelineno-0-3"></a><span class="gp">... </span> <span class="nb">print</span><span class="p">(</span><span class="n">url_pattern</span><span class="p">)</span>
|
|
11241
|
-
<a id="__codelineno-0-4" name="__codelineno-0-4" href="#__codelineno-0-4"></a><span class="gp">...</span>
|
|
11242
|
-
<a id="__codelineno-0-5" name="__codelineno-0-5" href="#__codelineno-0-5"></a><span class="go">/plugins/example-app/</span>
|
|
11243
|
-
<a id="__codelineno-0-6" name="__codelineno-0-6" href="#__codelineno-0-6"></a><span class="go">/plugins/example-app/config/</span>
|
|
11244
|
-
<a id="__codelineno-0-7" name="__codelineno-0-7" href="#__codelineno-0-7"></a><span class="go">/plugins/example-app/models/<uuid:pk>/dynamic-groups/</span>
|
|
11245
|
-
<a id="__codelineno-0-8" name="__codelineno-0-8" href="#__codelineno-0-8"></a><span class="go">/plugins/example-app/other-models/<uuid:pk>/dynamic-groups/</span>
|
|
11246
|
-
<a id="__codelineno-0-9" name="__codelineno-0-9" href="#__codelineno-0-9"></a><span class="go">/plugins/example-app/docs/</span>
|
|
11247
|
-
<a id="__codelineno-0-10" name="__codelineno-0-10" href="#__codelineno-0-10"></a><span class="go">/plugins/example-app/circuits/<uuid:pk>/example-app-tab/</span>
|
|
11248
|
-
<a id="__codelineno-0-11" name="__codelineno-0-11" href="#__codelineno-0-11"></a><span class="go">/plugins/example-app/devices/<uuid:pk>/example-app-tab-1/</span>
|
|
11249
|
-
<a id="__codelineno-0-12" name="__codelineno-0-12" href="#__codelineno-0-12"></a><span class="go">/plugins/example-app/devices/<uuid:pk>/example-app-tab-2/</span>
|
|
11250
|
-
<a id="__codelineno-0-13" name="__codelineno-0-13" href="#__codelineno-0-13"></a><span class="go">/plugins/example-app/override-target/</span>
|
|
11251
|
-
<a id="__codelineno-0-14" name="__codelineno-0-14" href="#__codelineno-0-14"></a><span class="go">/plugins/example-app/^models/$</span>
|
|
11252
|
-
<a id="__codelineno-0-15" name="__codelineno-0-15" href="#__codelineno-0-15"></a><span class="go">/plugins/example-app/^models/add/$</span>
|
|
11253
|
-
<a id="__codelineno-0-16" name="__codelineno-0-16" href="#__codelineno-0-16"></a><span class="go">/plugins/example-app/^models/import/$</span>
|
|
11254
|
-
<a id="__codelineno-0-17" name="__codelineno-0-17" href="#__codelineno-0-17"></a><span class="go">/plugins/example-app/^models/edit/$</span>
|
|
11255
|
-
<a id="__codelineno-0-18" name="__codelineno-0-18" href="#__codelineno-0-18"></a><span class="go">/plugins/example-app/^models/delete/$</span>
|
|
11256
|
-
<a id="__codelineno-0-19" name="__codelineno-0-19" href="#__codelineno-0-19"></a><span class="go">/plugins/example-app/^models/all-names/$</span>
|
|
11257
|
-
<a id="__codelineno-0-20" name="__codelineno-0-20" href="#__codelineno-0-20"></a><span class="go">/plugins/example-app/^models/(?P<pk>[^/.]+)/$</span>
|
|
11258
|
-
<a id="__codelineno-0-21" name="__codelineno-0-21" href="#__codelineno-0-21"></a><span class="go">/plugins/example-app/^models/(?P<pk>[^/.]+)/delete/$</span>
|
|
11259
|
-
<a id="__codelineno-0-22" name="__codelineno-0-22" href="#__codelineno-0-22"></a><span class="go">/plugins/example-app/^models/(?P<pk>[^/.]+)/edit/$</span>
|
|
11260
|
-
<a id="__codelineno-0-23" name="__codelineno-0-23" href="#__codelineno-0-23"></a><span class="go">/plugins/example-app/^models/(?P<pk>[^/.]+)/changelog/$</span>
|
|
11261
|
-
<a id="__codelineno-0-24" name="__codelineno-0-24" href="#__codelineno-0-24"></a><span class="go">/plugins/example-app/^models/(?P<pk>[^/.]+)/notes/$</span>
|
|
11262
|
-
<a id="__codelineno-0-25" name="__codelineno-0-25" href="#__codelineno-0-25"></a><span class="go">/plugins/example-app/^other-models/$</span>
|
|
11263
|
-
<a id="__codelineno-0-26" name="__codelineno-0-26" href="#__codelineno-0-26"></a><span class="go">/plugins/example-app/^other-models/add/$</span>
|
|
11264
|
-
<a id="__codelineno-0-27" name="__codelineno-0-27" href="#__codelineno-0-27"></a><span class="go">/plugins/example-app/^other-models/edit/$</span>
|
|
11265
|
-
<a id="__codelineno-0-28" name="__codelineno-0-28" href="#__codelineno-0-28"></a><span class="go">/plugins/example-app/^other-models/delete/$</span>
|
|
11266
|
-
<a id="__codelineno-0-29" name="__codelineno-0-29" href="#__codelineno-0-29"></a><span class="go">/plugins/example-app/^other-models/(?P<pk>[^/.]+)/$</span>
|
|
11267
|
-
<a id="__codelineno-0-30" name="__codelineno-0-30" href="#__codelineno-0-30"></a><span class="go">/plugins/example-app/^other-models/(?P<pk>[^/.]+)/delete/$</span>
|
|
11268
|
-
<a id="__codelineno-0-31" name="__codelineno-0-31" href="#__codelineno-0-31"></a><span class="go">/plugins/example-app/^other-models/(?P<pk>[^/.]+)/edit/$</span>
|
|
11269
|
-
<a id="__codelineno-0-32" name="__codelineno-0-32" href="#__codelineno-0-32"></a><span class="go">/plugins/example-app/^other-models/(?P<pk>[^/.]+)/changelog/$</span>
|
|
11270
|
-
<a id="__codelineno-0-33" name="__codelineno-0-33" href="#__codelineno-0-33"></a><span class="go">/plugins/example-app/^other-models/(?P<pk>[^/.]+)/notes/$</span>
|
|
11271
|
-
</code></pre></div>
|
|
11272
|
-
|
|
11273
|
-
</div>
|
|
11274
|
-
|
|
11275
|
-
</div>
|
|
11276
|
-
|
|
11277
|
-
|
|
11278
|
-
<div class="doc doc-object doc-function">
|
|
11279
|
-
|
|
11280
|
-
|
|
11281
|
-
|
|
11282
11043
|
<h2 id="nautobot.apps.utils.get_view_for_model" class="doc doc-heading">
|
|
11283
11044
|
<code class="highlight language-python"><span class="n">nautobot</span><span class="o">.</span><span class="n">apps</span><span class="o">.</span><span class="n">utils</span><span class="o">.</span><span class="n">get_view_for_model</span><span class="p">(</span><span class="n">model</span><span class="p">,</span> <span class="n">view_type</span><span class="o">=</span><span class="s1">''</span><span class="p">)</span></code>
|
|
11284
11045
|
|
|
@@ -686,27 +686,6 @@
|
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
|
|
689
|
-
<li class="md-nav__item">
|
|
690
|
-
<a href="../../../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
<span class="md-ellipsis">
|
|
694
|
-
Health Checks
|
|
695
|
-
</span>
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
</a>
|
|
699
|
-
</li>
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
689
|
<li class="md-nav__item">
|
|
711
690
|
<a href="../../../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
712
691
|
|
|
@@ -1912,7 +1891,7 @@
|
|
|
1912
1891
|
|
|
1913
1892
|
|
|
1914
1893
|
<li class="md-nav__item">
|
|
1915
|
-
<a href="../../../user-guide/feature-guides/
|
|
1894
|
+
<a href="../../../user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
|
|
1916
1895
|
|
|
1917
1896
|
|
|
1918
1897
|
<span class="md-ellipsis">
|
|
@@ -3177,11 +3156,11 @@
|
|
|
3177
3156
|
|
|
3178
3157
|
|
|
3179
3158
|
<li class="md-nav__item">
|
|
3180
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3159
|
+
<a href="../../../user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
|
|
3181
3160
|
|
|
3182
3161
|
|
|
3183
3162
|
<span class="md-ellipsis">
|
|
3184
|
-
Controller
|
|
3163
|
+
Controller Device Group
|
|
3185
3164
|
</span>
|
|
3186
3165
|
|
|
3187
3166
|
|
|
@@ -6422,15 +6401,6 @@
|
|
|
6422
6401
|
</ul>
|
|
6423
6402
|
</nav>
|
|
6424
6403
|
|
|
6425
|
-
</li>
|
|
6426
|
-
|
|
6427
|
-
<li class="md-nav__item">
|
|
6428
|
-
<a href="#nautobot.apps.views.GenericView" class="md-nav__link">
|
|
6429
|
-
<span class="md-ellipsis">
|
|
6430
|
-
GenericView
|
|
6431
|
-
</span>
|
|
6432
|
-
</a>
|
|
6433
|
-
|
|
6434
6404
|
</li>
|
|
6435
6405
|
|
|
6436
6406
|
<li class="md-nav__item">
|
|
@@ -8736,15 +8706,6 @@
|
|
|
8736
8706
|
</ul>
|
|
8737
8707
|
</nav>
|
|
8738
8708
|
|
|
8739
|
-
</li>
|
|
8740
|
-
|
|
8741
|
-
<li class="md-nav__item">
|
|
8742
|
-
<a href="#nautobot.apps.views.GenericView" class="md-nav__link">
|
|
8743
|
-
<span class="md-ellipsis">
|
|
8744
|
-
GenericView
|
|
8745
|
-
</span>
|
|
8746
|
-
</a>
|
|
8747
|
-
|
|
8748
8709
|
</li>
|
|
8749
8710
|
|
|
8750
8711
|
<li class="md-nav__item">
|
|
@@ -10045,31 +10006,6 @@ and fits within Nautobot's custom permission enforcement system.</p>
|
|
|
10045
10006
|
|
|
10046
10007
|
|
|
10047
10008
|
|
|
10048
|
-
<h2 id="nautobot.apps.views.GenericView" class="doc doc-heading">
|
|
10049
|
-
<code>nautobot.apps.views.GenericView</code>
|
|
10050
|
-
|
|
10051
|
-
|
|
10052
|
-
<a href="#nautobot.apps.views.GenericView" class="headerlink" title="Permanent link">¶</a></h2>
|
|
10053
|
-
|
|
10054
|
-
|
|
10055
|
-
<div class="doc doc-contents ">
|
|
10056
|
-
<p class="doc doc-class-bases">
|
|
10057
|
-
Bases: <code><span title="django.contrib.auth.mixins.LoginRequiredMixin">LoginRequiredMixin</span></code>, <code><span title="django.views.generic.View">View</span></code></p>
|
|
10058
|
-
|
|
10059
|
-
|
|
10060
|
-
<p>Base class for non-object-related views.</p>
|
|
10061
|
-
<p>Enforces authentication, which Django's base View does not by default.</p>
|
|
10062
|
-
|
|
10063
|
-
|
|
10064
|
-
</div>
|
|
10065
|
-
|
|
10066
|
-
|
|
10067
|
-
</div>
|
|
10068
|
-
|
|
10069
|
-
<div class="doc doc-object doc-class">
|
|
10070
|
-
|
|
10071
|
-
|
|
10072
|
-
|
|
10073
10009
|
<h2 id="nautobot.apps.views.GetReturnURLMixin" class="doc doc-heading">
|
|
10074
10010
|
<code>nautobot.apps.views.GetReturnURLMixin</code>
|
|
10075
10011
|
|
|
@@ -11067,7 +11003,7 @@ Override to add more variables to Response</p>
|
|
|
11067
11003
|
|
|
11068
11004
|
<div class="doc doc-contents ">
|
|
11069
11005
|
<p class="doc doc-class-bases">
|
|
11070
|
-
Bases: <code><
|
|
11006
|
+
Bases: <code><span title="django.views.generic.View">View</span></code></p>
|
|
11071
11007
|
|
|
11072
11008
|
|
|
11073
11009
|
<p>Present a list of dynamic groups associated to a particular object.
|
|
@@ -11643,7 +11579,7 @@ non_filter_params: List of query parameters that are <strong>not</strong> used f
|
|
|
11643
11579
|
|
|
11644
11580
|
<div class="doc doc-contents ">
|
|
11645
11581
|
<p class="doc doc-class-bases">
|
|
11646
|
-
Bases: <code><
|
|
11582
|
+
Bases: <code><span title="django.views.generic.View">View</span></code></p>
|
|
11647
11583
|
|
|
11648
11584
|
|
|
11649
11585
|
<p>Present a list of notes associated to a particular object.
|
|
@@ -686,27 +686,6 @@
|
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
|
|
689
|
-
<li class="md-nav__item">
|
|
690
|
-
<a href="../../../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
<span class="md-ellipsis">
|
|
694
|
-
Health Checks
|
|
695
|
-
</span>
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
</a>
|
|
699
|
-
</li>
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
689
|
<li class="md-nav__item">
|
|
711
690
|
<a href="../../../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
712
691
|
|
|
@@ -1912,7 +1891,7 @@
|
|
|
1912
1891
|
|
|
1913
1892
|
|
|
1914
1893
|
<li class="md-nav__item">
|
|
1915
|
-
<a href="../../../user-guide/feature-guides/
|
|
1894
|
+
<a href="../../../user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
|
|
1916
1895
|
|
|
1917
1896
|
|
|
1918
1897
|
<span class="md-ellipsis">
|
|
@@ -3177,11 +3156,11 @@
|
|
|
3177
3156
|
|
|
3178
3157
|
|
|
3179
3158
|
<li class="md-nav__item">
|
|
3180
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3159
|
+
<a href="../../../user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
|
|
3181
3160
|
|
|
3182
3161
|
|
|
3183
3162
|
<span class="md-ellipsis">
|
|
3184
|
-
Controller
|
|
3163
|
+
Controller Device Group
|
|
3185
3164
|
</span>
|
|
3186
3165
|
|
|
3187
3166
|
|
|
@@ -686,27 +686,6 @@
|
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
|
|
689
|
-
<li class="md-nav__item">
|
|
690
|
-
<a href="../../../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
<span class="md-ellipsis">
|
|
694
|
-
Health Checks
|
|
695
|
-
</span>
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
</a>
|
|
699
|
-
</li>
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
689
|
<li class="md-nav__item">
|
|
711
690
|
<a href="../../../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
712
691
|
|
|
@@ -1912,7 +1891,7 @@
|
|
|
1912
1891
|
|
|
1913
1892
|
|
|
1914
1893
|
<li class="md-nav__item">
|
|
1915
|
-
<a href="../../../user-guide/feature-guides/
|
|
1894
|
+
<a href="../../../user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
|
|
1916
1895
|
|
|
1917
1896
|
|
|
1918
1897
|
<span class="md-ellipsis">
|
|
@@ -3177,11 +3156,11 @@
|
|
|
3177
3156
|
|
|
3178
3157
|
|
|
3179
3158
|
<li class="md-nav__item">
|
|
3180
|
-
<a href="../../../user-guide/core-data-model/dcim/
|
|
3159
|
+
<a href="../../../user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
|
|
3181
3160
|
|
|
3182
3161
|
|
|
3183
3162
|
<span class="md-ellipsis">
|
|
3184
|
-
Controller
|
|
3163
|
+
Controller Device Group
|
|
3185
3164
|
</span>
|
|
3186
3165
|
|
|
3187
3166
|
|
|
@@ -686,27 +686,6 @@
|
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
|
|
689
|
-
<li class="md-nav__item">
|
|
690
|
-
<a href="../../../../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
<span class="md-ellipsis">
|
|
694
|
-
Health Checks
|
|
695
|
-
</span>
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
</a>
|
|
699
|
-
</li>
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
689
|
<li class="md-nav__item">
|
|
711
690
|
<a href="../../../../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
712
691
|
|
|
@@ -1912,7 +1891,7 @@
|
|
|
1912
1891
|
|
|
1913
1892
|
|
|
1914
1893
|
<li class="md-nav__item">
|
|
1915
|
-
<a href="../../../../user-guide/feature-guides/
|
|
1894
|
+
<a href="../../../../user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
|
|
1916
1895
|
|
|
1917
1896
|
|
|
1918
1897
|
<span class="md-ellipsis">
|
|
@@ -3177,11 +3156,11 @@
|
|
|
3177
3156
|
|
|
3178
3157
|
|
|
3179
3158
|
<li class="md-nav__item">
|
|
3180
|
-
<a href="../../../../user-guide/core-data-model/dcim/
|
|
3159
|
+
<a href="../../../../user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
|
|
3181
3160
|
|
|
3182
3161
|
|
|
3183
3162
|
<span class="md-ellipsis">
|
|
3184
|
-
Controller
|
|
3163
|
+
Controller Device Group
|
|
3185
3164
|
</span>
|
|
3186
3165
|
|
|
3187
3166
|
|
|
@@ -686,27 +686,6 @@
|
|
|
686
686
|
|
|
687
687
|
|
|
688
688
|
|
|
689
|
-
<li class="md-nav__item">
|
|
690
|
-
<a href="../../../../user-guide/administration/installation/health-checks.html" class="md-nav__link">
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
<span class="md-ellipsis">
|
|
694
|
-
Health Checks
|
|
695
|
-
</span>
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
</a>
|
|
699
|
-
</li>
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
689
|
<li class="md-nav__item">
|
|
711
690
|
<a href="../../../../user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
|
|
712
691
|
|
|
@@ -1912,7 +1891,7 @@
|
|
|
1912
1891
|
|
|
1913
1892
|
|
|
1914
1893
|
<li class="md-nav__item">
|
|
1915
|
-
<a href="../../../../user-guide/feature-guides/
|
|
1894
|
+
<a href="../../../../user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
|
|
1916
1895
|
|
|
1917
1896
|
|
|
1918
1897
|
<span class="md-ellipsis">
|
|
@@ -3177,11 +3156,11 @@
|
|
|
3177
3156
|
|
|
3178
3157
|
|
|
3179
3158
|
<li class="md-nav__item">
|
|
3180
|
-
<a href="../../../../user-guide/core-data-model/dcim/
|
|
3159
|
+
<a href="../../../../user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
|
|
3181
3160
|
|
|
3182
3161
|
|
|
3183
3162
|
<span class="md-ellipsis">
|
|
3184
|
-
Controller
|
|
3163
|
+
Controller Device Group
|
|
3185
3164
|
</span>
|
|
3186
3165
|
|
|
3187
3166
|
|