nautobot 2.4.4__tar.gz → 2.4.6__tar.gz
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-2.4.6/PKG-INFO +169 -0
- nautobot-2.4.6/nautobot/__init__.py +68 -0
- nautobot-2.4.6/nautobot/core/api/mixins.py +124 -0
- nautobot-2.4.6/nautobot/core/celery/__init__.py +243 -0
- nautobot-2.4.6/nautobot/core/celery/encoders.py +56 -0
- nautobot-2.4.6/nautobot/core/forms/fields.py +907 -0
- nautobot-2.4.6/nautobot/core/forms/utils.py +179 -0
- nautobot-2.4.6/nautobot/core/jobs/__init__.py +374 -0
- nautobot-2.4.6/nautobot/core/jobs/bulk_actions.py +285 -0
- nautobot-2.4.6/nautobot/core/management/commands/generate_test_data.py +420 -0
- nautobot-2.4.6/nautobot/core/models/name_color_content_types.py +65 -0
- nautobot-2.4.6/nautobot/core/models/validators.py +68 -0
- nautobot-2.4.6/nautobot/core/settings.py +1165 -0
- nautobot-2.4.6/nautobot/core/settings.yaml +1995 -0
- nautobot-2.4.6/nautobot/core/tables.py +725 -0
- nautobot-2.4.6/nautobot/core/templates/generic/object_retrieve.html +366 -0
- nautobot-2.4.6/nautobot/core/testing/__init__.py +133 -0
- nautobot-2.4.6/nautobot/core/testing/api.py +1245 -0
- nautobot-2.4.6/nautobot/core/testing/mixins.py +377 -0
- nautobot-2.4.6/nautobot/core/tests/nautobot_config.py +257 -0
- nautobot-2.4.6/nautobot/core/tests/runner.py +211 -0
- nautobot-2.4.6/nautobot/core/tests/test_api.py +1019 -0
- nautobot-2.4.6/nautobot/core/tests/test_authentication.py +666 -0
- nautobot-2.4.6/nautobot/core/tests/test_forms.py +866 -0
- nautobot-2.4.6/nautobot/core/tests/test_graphql.py +2457 -0
- nautobot-2.4.6/nautobot/core/tests/test_jobs.py +1108 -0
- nautobot-2.4.6/nautobot/core/ui/object_detail.py +1886 -0
- nautobot-2.4.6/nautobot/dcim/factory.py +1020 -0
- nautobot-2.4.6/nautobot/dcim/filters/__init__.py +2364 -0
- nautobot-2.4.6/nautobot/dcim/forms.py +5420 -0
- nautobot-2.4.6/nautobot/dcim/migrations/0068_alter_softwareimagefile_download_url.py +19 -0
- nautobot-2.4.6/nautobot/dcim/migrations/0069_softwareimagefile_external_integration.py +25 -0
- nautobot-2.4.6/nautobot/dcim/models/devices.py +2031 -0
- nautobot-2.4.6/nautobot/dcim/tables/devices.py +1512 -0
- nautobot-2.4.6/nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +278 -0
- nautobot-2.4.6/nautobot/dcim/tests/test_api.py +3794 -0
- nautobot-2.4.6/nautobot/dcim/tests/test_filters.py +4270 -0
- nautobot-2.4.6/nautobot/dcim/tests/test_jobs.py +116 -0
- nautobot-2.4.6/nautobot/dcim/tests/test_models.py +3496 -0
- nautobot-2.4.6/nautobot/dcim/tests/test_views.py +4769 -0
- nautobot-2.4.6/nautobot/extras/choices.py +519 -0
- nautobot-2.4.6/nautobot/extras/forms/forms.py +2128 -0
- nautobot-2.4.6/nautobot/extras/jobs.py +1388 -0
- nautobot-2.4.6/nautobot/extras/management/utils.py +98 -0
- nautobot-2.4.6/nautobot/extras/models/datasources.py +261 -0
- nautobot-2.4.6/nautobot/extras/models/jobs.py +1400 -0
- nautobot-2.4.6/nautobot/extras/plugins/marketplace_manifest.yml +473 -0
- nautobot-2.4.6/nautobot/extras/tables.py +1439 -0
- nautobot-2.4.6/nautobot/extras/templates/extras/inc/panel_changelog.html +42 -0
- nautobot-2.4.6/nautobot/extras/templates/extras/inc/panel_jobhistory.html +27 -0
- nautobot-2.4.6/nautobot/extras/templates/extras/status.html +2 -0
- nautobot-2.4.6/nautobot/extras/test_jobs/atomic_transaction.py +52 -0
- nautobot-2.4.6/nautobot/extras/test_jobs/fail.py +168 -0
- nautobot-2.4.6/nautobot/extras/tests/integration/test_notes.py +45 -0
- nautobot-2.4.6/nautobot/extras/tests/test_api.py +4560 -0
- nautobot-2.4.6/nautobot/extras/tests/test_changelog.py +595 -0
- nautobot-2.4.6/nautobot/extras/tests/test_customfields.py +2259 -0
- nautobot-2.4.6/nautobot/extras/tests/test_datasources.py +810 -0
- nautobot-2.4.6/nautobot/extras/tests/test_jobs.py +1318 -0
- nautobot-2.4.6/nautobot/extras/tests/test_models.py +3020 -0
- nautobot-2.4.6/nautobot/extras/tests/test_plugins.py +931 -0
- nautobot-2.4.6/nautobot/extras/tests/test_relationships.py +1834 -0
- nautobot-2.4.6/nautobot/extras/tests/test_tags.py +114 -0
- nautobot-2.4.6/nautobot/extras/tests/test_views.py +3853 -0
- nautobot-2.4.6/nautobot/extras/urls.py +642 -0
- nautobot-2.4.6/nautobot/extras/views.py +3091 -0
- nautobot-2.4.6/nautobot/ipam/forms.py +991 -0
- nautobot-2.4.6/nautobot/ipam/querysets.py +513 -0
- nautobot-2.4.6/nautobot/ipam/tables.py +855 -0
- nautobot-2.4.6/nautobot/ipam/templates/ipam/rir.html +2 -0
- nautobot-2.4.6/nautobot/ipam/templates/ipam/service.html +2 -0
- nautobot-2.4.6/nautobot/ipam/templates/ipam/service_edit.html +2 -0
- nautobot-2.4.6/nautobot/ipam/templates/ipam/service_retrieve.html +7 -0
- nautobot-2.4.6/nautobot/ipam/tests/migration/test_migrations.py +510 -0
- nautobot-2.4.6/nautobot/ipam/tests/test_api.py +1942 -0
- nautobot-2.4.6/nautobot/ipam/tests/test_filters.py +1418 -0
- nautobot-2.4.6/nautobot/ipam/tests/test_models.py +1685 -0
- nautobot-2.4.6/nautobot/ipam/tests/test_views.py +1283 -0
- nautobot-2.4.6/nautobot/ipam/urls.py +211 -0
- nautobot-2.4.6/nautobot/ipam/utils/migrations.py +811 -0
- nautobot-2.4.6/nautobot/ipam/utils/testing.py +177 -0
- nautobot-2.4.6/nautobot/ipam/views.py +1344 -0
- nautobot-2.4.6/nautobot/project-static/docs/__pycache__/macros.cpython-312.pyc +0 -0
- nautobot-2.4.6/nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +13148 -0
- nautobot-2.4.6/nautobot/project-static/docs/code-reference/nautobot/apps/models.html +16148 -0
- nautobot-2.4.6/nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +10870 -0
- nautobot-2.4.6/nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +16504 -0
- nautobot-2.4.6/nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +17273 -0
- nautobot-2.4.6/nautobot/project-static/docs/development/apps/api/testing.html +9336 -0
- nautobot-2.4.6/nautobot/project-static/docs/development/apps/migration/dependency-updates.html +9377 -0
- nautobot-2.4.6/nautobot/project-static/docs/development/core/best-practices.html +10189 -0
- nautobot-2.4.6/nautobot/project-static/docs/development/core/getting-started.html +11050 -0
- nautobot-2.4.6/nautobot/project-static/docs/development/core/release-checklist.html +9903 -0
- nautobot-2.4.6/nautobot/project-static/docs/development/core/style-guide.html +9749 -0
- nautobot-2.4.6/nautobot/project-static/docs/development/core/testing.html +9689 -0
- nautobot-2.4.6/nautobot/project-static/docs/development/jobs/index.html +10948 -0
- nautobot-2.4.6/nautobot/project-static/docs/media/user-guide/administration/getting-started/nautobot-cloud.png +0 -0
- nautobot-2.4.6/nautobot/project-static/docs/objects.inv +0 -0
- nautobot-2.4.6/nautobot/project-static/docs/overview/application_stack.html +9476 -0
- nautobot-2.4.6/nautobot/project-static/docs/release-notes/version-2.4.html +11483 -0
- nautobot-2.4.6/nautobot/project-static/docs/requirements.txt +14 -0
- nautobot-2.4.6/nautobot/project-static/docs/search/search_index.json +1 -0
- nautobot-2.4.6/nautobot/project-static/docs/sitemap.xml +1163 -0
- nautobot-2.4.6/nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/administration/configuration/settings.html +13604 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/administration/guides/permissions.html +9764 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/administration/installation/http-server.html +9854 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/administration/installation/index.html +9819 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +10502 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +9698 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +9289 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +9421 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +9530 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +9457 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +9491 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +9521 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +9487 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +9385 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +9387 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +9463 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +9989 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/index.html +9352 -0
- nautobot-2.4.6/nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +9628 -0
- nautobot-2.4.6/nautobot/virtualization/forms.py +751 -0
- nautobot-2.4.6/nautobot/virtualization/templates/virtualization/clustergroup.html +2 -0
- nautobot-2.4.6/nautobot/virtualization/templates/virtualization/clustertype.html +2 -0
- nautobot-2.4.6/nautobot/virtualization/tests/test_api.py +425 -0
- nautobot-2.4.6/nautobot/virtualization/tests/test_views.py +373 -0
- nautobot-2.4.6/nautobot/virtualization/urls.py +185 -0
- nautobot-2.4.6/nautobot/virtualization/views.py +436 -0
- nautobot-2.4.6/nautobot/wireless/tests/integration/__init__.py +0 -0
- nautobot-2.4.6/pyproject.toml +453 -0
- nautobot-2.4.4/PKG-INFO +0 -168
- nautobot-2.4.4/nautobot/__init__.py +0 -52
- nautobot-2.4.4/nautobot/core/api/mixins.py +0 -114
- nautobot-2.4.4/nautobot/core/celery/__init__.py +0 -241
- nautobot-2.4.4/nautobot/core/celery/encoders.py +0 -56
- nautobot-2.4.4/nautobot/core/forms/fields.py +0 -891
- nautobot-2.4.4/nautobot/core/forms/utils.py +0 -178
- nautobot-2.4.4/nautobot/core/jobs/__init__.py +0 -373
- nautobot-2.4.4/nautobot/core/jobs/bulk_actions.py +0 -285
- nautobot-2.4.4/nautobot/core/management/commands/generate_test_data.py +0 -420
- nautobot-2.4.4/nautobot/core/models/name_color_content_types.py +0 -56
- nautobot-2.4.4/nautobot/core/models/validators.py +0 -61
- nautobot-2.4.4/nautobot/core/settings.py +0 -1179
- nautobot-2.4.4/nautobot/core/settings.yaml +0 -2023
- nautobot-2.4.4/nautobot/core/tables.py +0 -720
- nautobot-2.4.4/nautobot/core/templates/generic/object_retrieve.html +0 -366
- nautobot-2.4.4/nautobot/core/testing/__init__.py +0 -131
- nautobot-2.4.4/nautobot/core/testing/api.py +0 -1227
- nautobot-2.4.4/nautobot/core/testing/mixins.py +0 -368
- nautobot-2.4.4/nautobot/core/tests/nautobot_config.py +0 -259
- nautobot-2.4.4/nautobot/core/tests/performance_baselines.yml +0 -8900
- nautobot-2.4.4/nautobot/core/tests/runner.py +0 -334
- nautobot-2.4.4/nautobot/core/tests/test_api.py +0 -1019
- nautobot-2.4.4/nautobot/core/tests/test_authentication.py +0 -587
- nautobot-2.4.4/nautobot/core/tests/test_forms.py +0 -863
- nautobot-2.4.4/nautobot/core/tests/test_graphql.py +0 -2448
- nautobot-2.4.4/nautobot/core/tests/test_jobs.py +0 -1102
- nautobot-2.4.4/nautobot/core/ui/object_detail.py +0 -1855
- nautobot-2.4.4/nautobot/dcim/factory.py +0 -1018
- nautobot-2.4.4/nautobot/dcim/filters/__init__.py +0 -2359
- nautobot-2.4.4/nautobot/dcim/forms.py +0 -5404
- nautobot-2.4.4/nautobot/dcim/models/devices.py +0 -2024
- nautobot-2.4.4/nautobot/dcim/tables/devices.py +0 -1511
- nautobot-2.4.4/nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +0 -274
- nautobot-2.4.4/nautobot/dcim/tests/test_api.py +0 -3751
- nautobot-2.4.4/nautobot/dcim/tests/test_filters.py +0 -4268
- nautobot-2.4.4/nautobot/dcim/tests/test_jobs.py +0 -118
- nautobot-2.4.4/nautobot/dcim/tests/test_models.py +0 -3431
- nautobot-2.4.4/nautobot/dcim/tests/test_views.py +0 -4766
- nautobot-2.4.4/nautobot/extras/choices.py +0 -514
- nautobot-2.4.4/nautobot/extras/forms/forms.py +0 -2124
- nautobot-2.4.4/nautobot/extras/jobs.py +0 -1310
- nautobot-2.4.4/nautobot/extras/management/utils.py +0 -87
- nautobot-2.4.4/nautobot/extras/models/datasources.py +0 -258
- nautobot-2.4.4/nautobot/extras/models/jobs.py +0 -1397
- nautobot-2.4.4/nautobot/extras/plugins/marketplace_manifest.yml +0 -455
- nautobot-2.4.4/nautobot/extras/tables.py +0 -1444
- nautobot-2.4.4/nautobot/extras/templates/extras/inc/panel_changelog.html +0 -42
- nautobot-2.4.4/nautobot/extras/templates/extras/inc/panel_jobhistory.html +0 -27
- nautobot-2.4.4/nautobot/extras/templates/extras/status.html +0 -38
- nautobot-2.4.4/nautobot/extras/test_jobs/atomic_transaction.py +0 -52
- nautobot-2.4.4/nautobot/extras/test_jobs/fail.py +0 -94
- nautobot-2.4.4/nautobot/extras/tests/integration/test_notes.py +0 -45
- nautobot-2.4.4/nautobot/extras/tests/test_api.py +0 -4545
- nautobot-2.4.4/nautobot/extras/tests/test_changelog.py +0 -595
- nautobot-2.4.4/nautobot/extras/tests/test_customfields.py +0 -2256
- nautobot-2.4.4/nautobot/extras/tests/test_datasources.py +0 -800
- nautobot-2.4.4/nautobot/extras/tests/test_jobs.py +0 -1311
- nautobot-2.4.4/nautobot/extras/tests/test_models.py +0 -3020
- nautobot-2.4.4/nautobot/extras/tests/test_plugins.py +0 -925
- nautobot-2.4.4/nautobot/extras/tests/test_relationships.py +0 -1825
- nautobot-2.4.4/nautobot/extras/tests/test_tags.py +0 -114
- nautobot-2.4.4/nautobot/extras/tests/test_views.py +0 -3844
- nautobot-2.4.4/nautobot/extras/urls.py +0 -671
- nautobot-2.4.4/nautobot/extras/views.py +0 -3129
- nautobot-2.4.4/nautobot/ipam/forms.py +0 -976
- nautobot-2.4.4/nautobot/ipam/querysets.py +0 -507
- nautobot-2.4.4/nautobot/ipam/tables.py +0 -851
- nautobot-2.4.4/nautobot/ipam/templates/ipam/namespace_retrieve.html +0 -42
- nautobot-2.4.4/nautobot/ipam/templates/ipam/rir.html +0 -44
- nautobot-2.4.4/nautobot/ipam/templates/ipam/service.html +0 -46
- nautobot-2.4.4/nautobot/ipam/templates/ipam/service_edit.html +0 -18
- nautobot-2.4.4/nautobot/ipam/tests/test_api.py +0 -1912
- nautobot-2.4.4/nautobot/ipam/tests/test_filters.py +0 -1428
- nautobot-2.4.4/nautobot/ipam/tests/test_migrations.py +0 -462
- nautobot-2.4.4/nautobot/ipam/tests/test_models.py +0 -1669
- nautobot-2.4.4/nautobot/ipam/tests/test_views.py +0 -1241
- nautobot-2.4.4/nautobot/ipam/urls.py +0 -276
- nautobot-2.4.4/nautobot/ipam/utils/migrations.py +0 -778
- nautobot-2.4.4/nautobot/ipam/views.py +0 -1423
- nautobot-2.4.4/nautobot/project-static/docs/__pycache__/macros.cpython-312.pyc +0 -0
- nautobot-2.4.4/nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +0 -13110
- nautobot-2.4.4/nautobot/project-static/docs/code-reference/nautobot/apps/models.html +0 -16101
- nautobot-2.4.4/nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +0 -10852
- nautobot-2.4.4/nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +0 -16469
- nautobot-2.4.4/nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +0 -17210
- nautobot-2.4.4/nautobot/project-static/docs/development/apps/api/testing.html +0 -9423
- nautobot-2.4.4/nautobot/project-static/docs/development/apps/migration/dependency-updates.html +0 -9377
- nautobot-2.4.4/nautobot/project-static/docs/development/core/best-practices.html +0 -10189
- nautobot-2.4.4/nautobot/project-static/docs/development/core/getting-started.html +0 -11079
- nautobot-2.4.4/nautobot/project-static/docs/development/core/release-checklist.html +0 -9903
- nautobot-2.4.4/nautobot/project-static/docs/development/core/style-guide.html +0 -9749
- nautobot-2.4.4/nautobot/project-static/docs/development/core/testing.html +0 -9863
- nautobot-2.4.4/nautobot/project-static/docs/development/jobs/index.html +0 -10935
- nautobot-2.4.4/nautobot/project-static/docs/objects.inv +0 -0
- nautobot-2.4.4/nautobot/project-static/docs/overview/application_stack.html +0 -9476
- nautobot-2.4.4/nautobot/project-static/docs/release-notes/version-2.4.html +0 -11075
- nautobot-2.4.4/nautobot/project-static/docs/requirements.txt +0 -14
- nautobot-2.4.4/nautobot/project-static/docs/search/search_index.json +0 -1
- nautobot-2.4.4/nautobot/project-static/docs/sitemap.xml +0 -1163
- nautobot-2.4.4/nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/administration/configuration/settings.html +0 -13650
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/administration/guides/permissions.html +0 -9693
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/administration/installation/http-server.html +0 -9852
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/administration/installation/index.html +0 -9578
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +0 -10502
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +0 -9698
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +0 -9285
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +0 -9421
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +0 -9530
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +0 -9456
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +0 -9476
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +0 -9521
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +0 -9487
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +0 -9313
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +0 -9387
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +0 -9464
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +0 -9989
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/index.html +0 -9265
- nautobot-2.4.4/nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +0 -9543
- nautobot-2.4.4/nautobot/virtualization/forms.py +0 -731
- nautobot-2.4.4/nautobot/virtualization/templates/virtualization/clustergroup.html +0 -40
- nautobot-2.4.4/nautobot/virtualization/tests/test_api.py +0 -414
- nautobot-2.4.4/nautobot/virtualization/tests/test_views.py +0 -365
- nautobot-2.4.4/nautobot/virtualization/urls.py +0 -268
- nautobot-2.4.4/nautobot/virtualization/views.py +0 -475
- nautobot-2.4.4/pyproject.toml +0 -451
- {nautobot-2.4.4 → nautobot-2.4.6}/LICENSE.txt +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/NOTICE +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/README.md +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/admin.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/api.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/change_logging.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/config.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/constants.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/datasources.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/events.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/exceptions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/graphql.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/jobs.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/querysets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/secrets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/testing.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/ui.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/apps/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/api/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/graphql/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/graphql/types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0001_initial_part_1.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0002_initial_part_2.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0003_auto_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0004_increase_provider_account_length.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0005_providernetwork.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0006_cache_circuit_terminations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0007_circuitterminations_primary_model.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0008_add_natural_indexing.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0009_circuittermination_location.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0010_rename_foreign_keys_and_related_names.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0011_remove_site_foreign_key_from_circuit_termination_class.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0012_created_datetime.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0013_alter_circuittermination__path.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0014_related_name_changes.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0015_remove_circuittype_provider_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0016_tagsfield.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0017_fixup_null_statuses.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0018_status_nonnullable.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0019_remove_providernetwork_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0020_update_all_charfields_max_length_to_255.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0021_alter_circuit_status_alter_circuittermination__path.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/0022_circuittermination_cloud_network.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/migrations/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/navigation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/signals.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuit_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuit_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuit_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuit_terminations_swap.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuit_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuittermination.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuittermination_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuittermination_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuittermination_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuittermination_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuittype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/circuittype_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/inc/circuit_termination.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/inc/circuit_termination_cable_fragment.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/inc/circuit_termination_header_extra_content.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/inc/speed_widget.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/provider.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/provider_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/provider_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/provider_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/provider_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/providernetwork.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/templates/circuits/providernetwork_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/integration/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/integration/test_circuit.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/integration/test_circuits_bulk_operations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/integration/test_relationships.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/test_api.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/test_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/test_urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/tests/test_views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/circuits/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/api/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/migrations/0001_initial.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/migrations/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/navigation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/templates/cloud/cloudaccount_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/templates/cloud/cloudnetwork_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/templates/cloud/cloudnetwork_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/templates/cloud/cloudresourcetype_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/templates/cloud/cloudservice_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/templates/cloud/cloudservice_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/tests/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/tests/test_api.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/tests/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/tests/test_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/tests/test_views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/cloud/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/admin.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/authentication.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/constants.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/exceptions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/filter_backends.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/metadata.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/pagination.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/parsers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/renderers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/routers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/schema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/versioning.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/apps/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/authentication.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/celery/backends.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/celery/control.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/celery/log.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/celery/schedulers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/celery/task.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/checks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/cli/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/cli/__main__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/constants.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/context_processors.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/events/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/events/base.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/events/exceptions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/events/redis_broker.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/events/syslog_broker.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/exceptions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/forms/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/forms/constants.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/forms/forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/forms/search.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/forms/widgets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/graphql/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/graphql/generators.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/graphql/schema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/graphql/schema_init.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/graphql/types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/graphql/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/jobs/cleanup.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/jobs/groups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/audit_dynamic_groups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/audit_graphql_queries.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/celery.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/generate_performance_test_endpoints.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/generate_secret_key.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/makemigrations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/migrate.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/nbshell.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/post_upgrade.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/refresh_content_type_cache.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/send_installation_metrics.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/start.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/management/commands/validate_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/middleware.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/generics.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/managers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/ordering.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/query_functions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/querysets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/tree_queries.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/models/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/releases.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/settings_funcs.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/signals.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tasks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/403.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/403_csrf_failure.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/404.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/40x.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/500.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/about.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/actions.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/app_index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/base.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/base_site.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/bootstrapped_extra/app_name.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/change_form.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/change_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/change_list_results.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/config/config.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/delete_confirmation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/edit_inline/stacked.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/edit_inline/tabular.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/includes/fieldset.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/login.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/prepopulated_fields_js.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/search_form.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/admin/submit_line.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/base.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/base_django.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/add.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/clone.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/consolidated_bulk_action_buttons.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/consolidated_detail_view_action_buttons.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/export.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/import.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/buttons/job_import.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/button/default.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/button/dropdown.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/layout/one_over_two.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/layout/two_over_one.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/body_content_data_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/body_content_objects_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/body_content_tags.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/body_content_text.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/body_wrapper_generic.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/body_wrapper_key_value_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/body_wrapper_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/footer_contacts_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/footer_content_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/grouping_toggle.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/header_extra_content_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/panel/stats_panel_body.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/tab/content_wrapper.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/tab/label_wrapper.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/components/tab/label_wrapper_distinct_view.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/exceptions/import_error.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/exceptions/permission_error.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/exceptions/programming_error.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_add_component.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_destroy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_import.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_remove.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_rename.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_bulk_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_changelog.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_destroy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_detail.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_import.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_notes.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/generic/object_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/graphene/graphiql.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/home.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/import_success.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/ajax_loader.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/computed_fields/panel_data.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/created_updated.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/custom_fields/panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/custom_fields/panel_data.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/custom_fields_panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/dynamic_groups_panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/extras_features_edit_form_fields.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/footer.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/image_attachments.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/javascript.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/media.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/modal.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/nav_menu.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/object_details_advanced_panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/paginator.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/relationships/panel_override.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/relationships_panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/relationships_table_rows.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/search_panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/tenancy_form_panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/inc/tenant_table_row.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/login.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/media_failure.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/modals/modal_theme.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/nautobot_config.py.j2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/panel_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/responsive_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/rest_framework/api.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/search.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/search_form.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/swagger_ui.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/swagger_ui.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/system_jobs/import_objects.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/template.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/confirmation_form.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/obj_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/render_boolean.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/render_custom_fields.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/render_field.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/render_form.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/render_jinja2.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/render_relationships.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/templatetags/badge.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/templatetags/dynamic_group_assignment_modal.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/templatetags/filter_form_modal.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/templatetags/modal_form_as_dialog.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/templatetags/saved_view_modal.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/templatetags/table_config_form.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/templatetags/tag.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/templatetags/utilization_graph.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/theme_preview.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/utilities/worker_status.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/widgets/clearable_file.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/widgets/colorselect_option.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/widgets/select_contenttype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/widgets/select_option_with_pk.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/widgets/selectwithdisabled_option.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templates/widgets/sluginput.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templatetags/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templatetags/bootstrapped_goodies_tags.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templatetags/buttons.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templatetags/form_helpers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templatetags/helpers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templatetags/netutils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templatetags/perms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/templatetags/ui_framework.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/context.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/integration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/migrations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/schema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/testing/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_app_home.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_app_navbar.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_general_functionality.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_home.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_import_objects_ui.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_navbar.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_swagger.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_theme.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/integration/test_view_authentication.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_celery.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_checks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_commands.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_config.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_csv.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_events.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_jinja_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_logging.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_managers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_models_query_functions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_nautobot_server.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_navigations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_openapi.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_ordering.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_paginator.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_releases.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_settings_schema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_templatetags_helpers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_templatetags_netutils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_tree_queries.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_ui.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/tests/test_views_utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/ui/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/ui/base.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/ui/choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/ui/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/ui/nav.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/ui/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/color.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/config.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/data.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/deprecation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/filtering.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/git.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/logging.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/lookup.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/migrations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/module_loading.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/permissions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/querysets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/utils/requests.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/views/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/views/generic.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/views/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/views/paginator.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/views/renderers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/views/routers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/views/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/views/viewsets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/core/wsgi.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/api/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/api/exceptions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/constants.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/elevations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/filter_mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/filters/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/form_mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/graphql/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/graphql/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/graphql/types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/lookups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/management/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/management/commands/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/management/commands/migrate_location_contacts.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/management/commands/trace_paths.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0001_initial_part_1.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0002_initial_part_2.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0003_initial_part_3.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0004_initial_part_4.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0005_device_local_context_schema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0006_auto_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0007_device_secrets_group.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0008_increase_all_serial_lengths.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0009_add_natural_indexing.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0010_interface_status.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0011_interface_status_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0012_interface_parent_bridge.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0013_location_location_type.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0014_location_status_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0015_device_components__changeloggedmodel.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0016_device_components__timestamp_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0017_locationtype_nestable.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0018_device_redundancy_group.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0019_device_redundancy_group_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0020_increase_device_asset_tag_size_limit.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0021_platform_network_driver.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0022_interface_redundancy_group.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0023_interface_redundancy_group_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0024_move_site_fields_to_location_model.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0025_mptt_to_tree_queries.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0026_interface_mac_address_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0027_alter_interface_mac_address.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0028_alter_device_and_rack_role_add_new_role.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0029_device_and_rack_roles_data_migrations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0030_rename_device_and_rack_role.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0031_remove_device_role_and_rack_role.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0032_rename_foreignkey_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0033_add_tree_managers_and_foreign_keys_pre_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0034_migrate_region_and_site_data_to_locations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0035_rename_path_end_point_related_name.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0036_remove_site_foreign_key_from_dcim_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0037_created_datetime.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0038_fixup_fks_and_related_names.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0039_related_name_changes.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0040_remove_region_and_site.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0041_interface_ip_addresses_m2m.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0042_alter_location_managers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0043_remove_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0044_tagsfield.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0045_ipam__namespaces.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0046_fixup_null_statuses.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0047_status_nonnullable.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0048_ensure_virtual_chassis_names_are_unique_and_add_uniqueness_constraint.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0049_remove_slugs_and_change_device_primary_ip_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0050_fix_interface_redundancy_group_association_created.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0051_interface_redundancy_group_nullable_status.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0052_fix_interface_redundancy_group_created.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0053_create_device_family_model.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0054_softwareimage_softwareversion.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0055_softwareimage_softwareversion_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0056_update_all_charfields_max_length_to_255.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0057_controller_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0058_controller_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0059_add_role_field_to_interface_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0060_alter_cable_status_alter_consoleport__path_and_more.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0061_module_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0062_module_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0063_interfacevdcassignment_virtualdevicecontext_and_more.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0064_virtualdevicecontext_status_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0065_controller_capabilities_and_more.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0066_controllermanageddevicegroup_radio_profiles_and_more.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/0067_controllermanageddevicegroup_tenant.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/migrations/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/models/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/models/cables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/models/device_component_templates.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/models/device_components.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/models/locations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/models/power.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/models/racks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/navigation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/signals.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tables/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tables/cables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tables/devicetypes.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tables/locations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tables/power.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tables/racks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tables/template_code.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/bulk_disconnect.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/cable.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/cable_connect.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/cable_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/cable_trace.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/console_port_connection_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/consoleport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/consoleport_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/consoleserverport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/consoleserverport_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/controller/base.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/controller_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/controller_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/controller_wirelessnetworks.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/base.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/config.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/consoleports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/consoleserverports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/devicebays.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/frontports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/interfaces.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/inventory.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/lldp_neighbors.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/modulebays.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/poweroutlets.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/powerports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/rearports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/status.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device/wireless.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device_component.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device_component_add.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device_component_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device_interface_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/device_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicebay.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicebay_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicebay_depopulate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicebay_populate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicefamily_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/deviceredundancygroup_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/deviceredundancygroup_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicetype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicetype_component_add.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicetype_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/devicetype_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/frontport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/cable_form.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/cable_termination.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/cable_toggle_buttons.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/detail_softwareversion_softwareimagefile_rows.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/device_napalm_tabs.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/devicetype_component_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/edit_form_softwareversion_js.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/homepage_connections.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/location_hierarchy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/moduletype_component_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inc/rack_elevation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/interface.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/interface_bulk_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/interface_connection_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/interface_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/interface_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/interfaceredundancygroup_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/interfaceredundancygroupassociation_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inventoryitem.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inventoryitem_add.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inventoryitem_bulk_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inventoryitem_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/inventoryitem_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/location.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/location_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/location_migrate_data_to_contact.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/locationtype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/locationtype_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/manufacturer.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module/base.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_bulk_destroy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_consoleports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_consoleserverports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_destroy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_frontports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_interfaces.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_modulebays.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_poweroutlets.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_powerports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_rearports.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/module_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/modulebay_bulk_destroy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/modulebay_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/modulebay_destroy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/modulebay_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/modulebay_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/moduletype_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/moduletype_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/platform.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/platform_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/power_port_connection_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/powerfeed.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/powerfeed_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/poweroutlet.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/poweroutlet_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/powerpanel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/powerpanel_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/powerport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/powerport_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/rack.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/rack_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/rack_elevation_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/rackgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/rackreservation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/rackreservation_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/rearport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/softwareversion_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/trace/cable.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/trace/circuit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/trace/device.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/trace/powerpanel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/trace/termination.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/virtualchassis.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/virtualchassis_add.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/virtualchassis_add_member.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/virtualchassis_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/virtualchassis_remove_member.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/templates/dcim/virtualdevicecontext_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/features/locations.feature +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/integration/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/integration/test_cable_connect_form.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/integration/test_controller.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/integration/test_controller_managed_device_group.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/integration/test_create_device.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/integration/test_device_bulk_operations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/integration/test_fileinputpicker.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/integration/test_location_bulk_operations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/test_cablepaths.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/test_forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/test_graphql.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/test_migrations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/test_natural_ordering.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/test_schema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/tests/test_signals.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/dcim/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/admin.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/api/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/api/customfields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/api/fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/api/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/api/relationships.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/constants.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/context_managers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/datasources/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/datasources/git.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/datasources/registry.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/datasources/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/filters/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/filters/customfields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/filters/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/forms/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/forms/base.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/forms/contacts.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/forms/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/graphql/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/graphql/types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/group_sync.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/health_checks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/commands/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/commands/fix_custom_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/commands/refresh_dynamic_group_member_caches.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/commands/remove_stale_scheduled_jobs.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/commands/renaturalize.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/commands/runjob.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/commands/runjob_with_job_result.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/management/commands/webhook_receiver.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/managers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0001_initial_part_1.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0002_initial_part_2.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0003_initial_part_3.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0004_populate_default_status_records.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0005_configcontext_device_types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0006_graphqlquery.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0007_configcontextschema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0008_jobresult__custom_field_data.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0009_computedfield.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0010_change_cf_validation_max_min_field_to_bigint.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0011_fileattachment_fileproxy.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0012_healthchecktestmodel.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0013_default_fallback_value_computedfield.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0014_auto_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0015_scheduled_job.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0016_secret.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0017_joblogentry.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0018_joblog_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0019_joblogentry__meta_options__related_name.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0020_customfield_changelog.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0021_customfield_changelog_data.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0022_objectchange_object_datav2.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0023_job_model.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0024_job_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0025_add_advanced_ui_boolean_to_customfield_conputedfield_and_relationship.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0026_job_add_gitrepository_fk.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0027_job_gitrepository_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0028_job_reduce_source.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0029_dynamicgroup.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0030_webhook_alter_unique_together.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0031_tag_content_types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0032_tag_content_types_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0033_add__optimized_indexing.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0034_alter_fileattachment_mimetype.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0035_scheduledjob_crontab.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0036_job_add_has_sensitive_variables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0037_configcontextschema__remove_name_unique__create_constraint_unique_name_owner.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0038_configcontext_locations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0039_objectchange__add_change_context.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0040_dynamicgroup__dynamicgroupmembership.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0041_jobresult_job_kwargs.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0042_job__add_is_job_hook_receiver.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0043_note.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0044_add_job_hook.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0045_add_custom_field_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0046_populate_custom_field_slug_label.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0047_enforce_custom_field_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0048_alter_objectchange_change_context_detail.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0049_alter_tag_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0050_customfield_grouping.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0051_add_job_task_queues.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0052_configcontext_device_redundancy_groups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0053_relationship_required_on.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0054_scheduledjob_kwargs_request_user_change.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0055_configcontext_dynamic_groups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0056_objectchange_add_reverse_time_idx.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0057_jobbutton.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0058_jobresult_add_time_status_idxs.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0059_joblogentry_scheduledjob_webhook_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0060_alter_joblogentry_scheduledjob_webhook_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0061_role_and_alter_status.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0062_collect_roles_from_related_apps_roles.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0063_alter_role_options.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0064_alter_configcontext_and_add_new_role.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0065_configcontext_data_migrations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0066_rename_configcontext_role.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0067_migrate_job_result_status.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0068_jobresult__add_celery_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0069_created_datetime.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0070_remove_site_and_region_attributes_from_config_context.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0071_replace_related_names.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0072_rename_model_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0073_job__unique_name_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0074_job__unique_name.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0075_remove_gitrepository_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0076_rename_slug_to_key_for_custom_field.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0077_migrate_custom_field_data.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0078_remove_name_field_and_make_label_field_non_nullable.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0079_remove_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0080_tagsfield.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0081_rename_relationship_slug_to_key.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0082_rename_relationship_name_to_label.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0083_ensure_relationship_keys_are_unique.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0084_rename_computed_field_slug_to_key.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0085_taggeditem_cleanup.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0086_taggeditem_uniqueness.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0087_job__celery_task_fields__dryrun_support.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0088_job__commit_default_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0089_joblogentry__log_level_default.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0090_joblogentry__log_level_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0091_scheduledjob__data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0092_uniqueness_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0093_uniqueness_fixup.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0094_alter_objectchange_unique_together.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0095_ensure_note_timestamps_are_unique.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0096_remove_slugs.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0097_alter_job_result_remove_result.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0098_rename_data_jobresult_result.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0099_remove_dangling_note_objects.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0100_fileproxy_job_result.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0101_externalintegration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0102_set_null_objectchange_contenttype.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0103_add_db_indexes_to_object_change.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0104_contact_contactassociation_team.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0105_update_all_charfields_max_length_to_255.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0106_populate_default_statuses_and_roles_for_contact_associations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0107_laxurlfield.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0108_jobbutton_enabled.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0109_dynamicgroup_group_type_dynamicgroup_tags_and_more.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0110_alter_configcontext_cluster_groups_and_more.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0111_metadata.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0112_dynamic_group_group_type_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0113_saved_views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0114_computedfield_grouping.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0115_scheduledjob_time_zone.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0116_fix_dynamic_group_group_type_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0117_create_job_queue_model.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0118_task_queue_to_job_queue_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0119_remove_task_queues_from_job_and_queue_from_scheduled_job.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0120_job_is_singleton_job_is_singleton_override.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0121_alter_team_contacts.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/0122_add_graphqlquery_owner_content_type.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/migrations/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/change_logging.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/contacts.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/customfields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/groups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/metadata.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/relationships.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/roles.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/secrets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/statuses.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/models/tags.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/navigation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/plugins/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/plugins/exceptions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/plugins/tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/plugins/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/plugins/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/plugins/validators.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/plugins/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/querysets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/registry.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/secrets/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/secrets/exceptions.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/secrets/providers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/signals.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tasks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/django_ajax_tables/ajax_wrapper.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/computedfield.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/computedfield_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/configcontext.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/configcontext_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/configcontextschema.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/configcontextschema_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/configcontextschema_validation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/contact_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/customfield.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/customfield_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/customlink.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/dynamicgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/dynamicgroup_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/exporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/externalintegration_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/externalintegration_update.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/gitrepository.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/gitrepository_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/gitrepository_object_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/gitrepository_result.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/graphqlquery.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/bulk_edit_overridable_field.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/job_label.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/job_table.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/job_tiles.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/jobresult.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/jobresult_js.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/json_data.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/json_format.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/object_contact_header.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/overridable_field.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/secret_provider_parameters_form.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/inc/tags_panel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/job.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/job_approval_confirmation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/job_approval_request.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/job_bulk_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/job_detail.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/job_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/job_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/jobbutton_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/jobhook.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/jobqueue_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/jobresult.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/marketplace.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/metadatatype_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/metadatatype_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/note.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/object_assign_contact_or_team.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/object_changelog.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/object_configcontext.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/object_dynamicgroups.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/object_new_contact.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/object_new_team.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/object_notes.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/objectchange.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/objectchange_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/plugin_detail.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/plugins_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/plugins_tiles.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/relationship.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/relationship_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/role_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/scheduled_jobs_approval_queue_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/scheduledjob.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/secret.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/secret_check.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/secret_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/secret_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/secretsgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/secretsgroup_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/staticgroupassociation_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/tag.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/tag_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/team_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/templatetags/log_level.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/templatetags/plugin_banners.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/templatetags/plugin_object_detail_tabs.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templates/extras/webhook.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templatetags/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templatetags/computed_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templatetags/custom_links.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templatetags/job_buttons.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templatetags/log_levels.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templatetags/plugins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/templatetags/registry.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/api_test_job.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/dry_run.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/duplicate_name.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/duplicate_name2.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/field_default.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/field_order.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/file_output.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/file_upload_fail.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/file_upload_pass.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/has_sensitive_variables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/ipaddress_vars.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/job_button_receiver.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/job_hook_receiver.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/jobs_module/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/jobs_module/jobs_submodule/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/jobs_module/jobs_submodule/jobs.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/location_with_custom_field.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/log_redaction.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/log_skip_db_logging.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/modify_db.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/no_field_order.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/object_var_optional.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/object_var_required.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/object_vars.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/pass.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/profiling.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/read_only_job.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/relative_import.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/required_args.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/singleton.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/soft_time_limit_greater_than_time_limit.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/test_jobs/task_queues.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/constants.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/example_app_dependency/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/config_context_schemas/schema-1.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/config_contexts/context.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/config_contexts/devices/test-device.json +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/config_contexts/locations/Test Location.json +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template.j2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/export_templates/dcim/device/template2.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/export_templates/ipam/vlan/template.j2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_interfaces.gql +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/graphql_queries/device_names.gql +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/jobs/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/01-valid-files/jobs/my_job.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema1.json +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/config_context_schemas/badschema2.json +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext1.json +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext2.json +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/config_contexts/badcontext3.json +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/config_contexts/devices/nosuchdevice.json +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/dcim/template.j2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/devices/template.j2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/export_templates/dcim/nosuchmodel/template.j2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/export_templates/nosuchapp/device/template.j2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/graphql_queries/bad_device_names.gql +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/jobs/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/jobs/importerror.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_data/02-invalid-files/jobs/syntaxerror.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/git_helper.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_computedfields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_configcontextschema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_customfields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_dynamicgroups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_jobs.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_plugin_banner.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_plugins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_relationships.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/integration/test_tagfilter.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_context_managers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_dynamicgroups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_job_variables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_management.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_migrations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_notes.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_registry.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_schema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/tests/test_webhooks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/extras/webhooks.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/generate_secret_key.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/api/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/api/fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/constants.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/formfields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/graphql/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/graphql/types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/lookups.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/management/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/management/commands/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/management/commands/fix_prefix_broadcast.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0001_initial_part_1.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0002_initial_part_2.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0003_remove_max_length.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0004_fixup_p2p_broadcast.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0005_auto_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0006_ipaddress_nat_outside_list.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0007_add_natural_indexing.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0008_prefix_vlan_vlangroup_location.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0009_alter_vlan_name.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0010_alter_ipam_role_add_new_role.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0011_migrate_ipam_role_data.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0012_rename_ipam_roles.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0013_delete_role.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0014_rename_foreign_keys_and_related_names.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0015_prefix_add_type.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0016_prefix_type_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0017_prefix_remove_is_pool.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0018_remove_site_foreign_key_from_ipam_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0019_created_datetime.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0020_related_name_changes.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0021_prefix_add_rir_and_date_allocated.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0022_aggregate_to_prefix_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0023_delete_aggregate.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0024_interface_to_ipaddress_m2m.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0025_interface_ipaddress_m2m_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0026_ipaddress_remove_assigned_object.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0027_remove_rir_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0028_tagsfield.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0029_ip_address_to_interface_uniqueness_constraints.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0030_ipam__namespaces.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0031_ipam___data_migrations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0032_ipam__namespaces_finish.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0033_fixup_null_statuses.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0034_status_nonnullable.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0035_ensure_all_services_fit_uniqueness_constraint.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0036_add_uniqueness_constraints_to_service.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0037_data_migration_vlan_group_name_uniqueness.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0038_vlan_group_name_unique_remove_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0039_alter_ipaddresstointerface_ip_address.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0040_vlan_prefix_locations.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0041_vlan_prefix_locations_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0042_remove_location_from_vlan_and_prefix.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0043_fixup_null_ip_version.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0044_ip_version_nonnullable.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0045_alter_vlangroup_options.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0046_update_all_charfields_max_length_to_255.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0047_alter_ipaddress_role_alter_ipaddress_status_and_more.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0048_vrf_status.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0049_vrf_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0050_vlangroup_range.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/0051_added_optional_vrf_relationship_to_vdc.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/migrations/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/navigation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/signals.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/inc/ipadress_edit_header.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/inc/service.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/inc/toggle_available.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/inc/vlangroup_header.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddress.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddress_assign.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddress_bulk_add.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddress_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddress_interfaces.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddress_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddress_merge.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddress_vm_interfaces.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/ipaddresstointerface_retrieve.html +0 -0
- /nautobot-2.4.4/nautobot/ipam/templates/ipam/namespace_ipaddresses.html → /nautobot-2.4.6/nautobot/ipam/templates/ipam/namespace_ip_addresses.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/namespace_prefixes.html +0 -0
- /nautobot-2.4.4/nautobot/ipam/templates/ipam/routetarget.html → /nautobot-2.4.6/nautobot/ipam/templates/ipam/namespace_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/namespace_vrfs.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/prefix.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/prefix_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/prefix_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/prefix_ipaddresses.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/prefix_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/prefix_prefixes.html +0 -0
- /nautobot-2.4.4/nautobot/ipam/templates/ipam/vrf.html → /nautobot-2.4.6/nautobot/ipam/templates/ipam/routetarget.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/vlan.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/vlan_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/vlan_interfaces.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/vlan_vminterfaces.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/vlangroup.html +0 -0
- /nautobot-2.4.4/nautobot/tenancy/templates/tenancy/tenantgroup_retrieve.html → /nautobot-2.4.6/nautobot/ipam/templates/ipam/vrf.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/templates/ipam/vrf_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/features/prefixes.feature +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/integration/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/integration/test_prefixes.py +0 -0
- {nautobot-2.4.4/nautobot/tenancy → nautobot-2.4.6/nautobot/ipam/tests/migration}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/test_forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/test_graphql.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/test_ordering.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/test_querysets.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/test_tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/tests/test_utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/utils/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/ipam/validators.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css.map +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.css.map +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap.min.css.map +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.eot +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.ttf +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.woff +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/fonts/glyphicons-halflings-regular.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/js/bootstrap.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/js/bootstrap.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-3.4.1-dist/js/npm.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/bootstrap-filestyle-1.2.3/bootstrap-filestyle.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/clipboard.js-2.0.9/clipboard.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/css/base.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/css/dark.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/css/rack_elevation.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/404.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/additional-features/caching.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/additional-features/change-logging.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/additional-features/config-contexts.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/additional-features/healthcheck.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/additional-features/jobs.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/additional-features/prometheus-metrics.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/administration/celery-queues.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/administration/nautobot-server.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/administration/nautobot-shell.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/administration/permissions.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/administration/replicating-nautobot.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/apps/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/apps/migrating-jobs-from-nautobot-v1.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/apps/nautobot-apps.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/_mkdocstrings.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-CapacityMetrics.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-ChatOps.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-CircuitMaintenance.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-DataValidationEngine.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-DeviceLifecycle.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-DeviceOnboarding.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-FirewallModels.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-GoldenConfiguration.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-NautobotPluginNornir.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/app-icons/icon-SSoT.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/extra.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/favicon.ico +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/images/favicon.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/bundle.60a45f97.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/bundle.60a45f97.min.js.map +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/glightbox.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.ar.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.da.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.de.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.du.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.el.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.es.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.fi.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.fr.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.he.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.hi.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.hu.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.hy.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.it.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.ja.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.jp.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.kn.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.ko.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.multi.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.nl.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.no.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.pt.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.ro.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.ru.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.sa.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.sv.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.ta.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.te.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.th.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.tr.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.vi.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/min/lunr.zh.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/tinyseg.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/lunr/wordcut.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/workers/search.f8cc74c7.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/javascripts/workers/search.f8cc74c7.min.js.map +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/nautobot_logo.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/nautobot_logo.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/networktocode_bw.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/overrides/partials/copyright.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/stylesheets/glightbox.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/stylesheets/main.a40c8224.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/stylesheets/main.a40c8224.min.css.map +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/stylesheets/palette.06af60db.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/assets/stylesheets/palette.06af60db.min.css.map +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/api.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/config.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/events.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/code-reference/nautobot/apps/views.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/configuration/authentication/ldap.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/configuration/authentication/remote.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/configuration/authentication/sso.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/configuration/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/configuration/optional-settings.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/configuration/required-settings.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/circuits.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/device-types.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/devices.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/ipam.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/power.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/secrets.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/services.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/sites-and-racks.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/tenancy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/virtualization.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/core-functionality/vlans.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/application-registry.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/configuration-view.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/database-backend-config.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/models/django-admin.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/models/global-search.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/models/graphql.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/models/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/prometheus.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/setup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/ui-extensions/object-detail-views.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/ui-extensions/tabs.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/base-template.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/help-documentation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/notes.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/rest-api.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/urls.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/api/views/view-overrides.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/code-updates.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/from-v1.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/model-updates/global.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/apps/porting-from-netbox.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/best-practices.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/application-registry.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/bootstrap-ui.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/caching.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/controllers.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/extending-models.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/generic-views.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/homepage.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/model-checklist.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/model-features.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/natural-keys.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/navigation-menu.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/react-ui.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/role-internals.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/settings.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/templates.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/ui-component-framework.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/core/user-preferences.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/extending-models.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/generic-views.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/getting-started.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/homepage.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/jobs/migration/from-v1.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/model-features.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/natural-keys.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/navigation-menu.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/react-ui.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/release-checklist.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/role-internals.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/style-guide.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/templates.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/testing.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/development/user-preferences.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/docker/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/generate_code_reference_pages.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/img/edge_dev_circuit_relationship.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/img/leaf_dev_no_circuit_relationship.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/img/relationship_w_json_filter.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/centos.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/external-authentication.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/http-server.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/migrating-from-netbox.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/migrating-from-postgresql.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/nautobot.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/region-and-site-data-migration-guide.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/selinux-troubleshooting.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/services.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/ubuntu.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/upgrading-from-nautobot-v1.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/installation/upgrading.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/macros.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/admin_ui_run_permission.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/apps/app_admin_config.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/apps/app_admin_ui.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/apps/app_rest_api_endpoint.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_edit_button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_nav.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_list_view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_add.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_queue_config.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_completed.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_nav.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_result_pending.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_job_run_form.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_nautobot_login.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_job.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_run_scheduled_job_form.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/kubernetes/k8s_scheduled_job_result.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/basic-panel-layout.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/button-example.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/buttons-example.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/cluster-type-before-after-example.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/dropdown-button-example.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/grouped-key-value-table-panel-example-1.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/grouped-key-value-table-panel-example-2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/object-fields-panel-example_2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example-code.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/stats-panel-example.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/table-panels-family.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/text-panels-family.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/core/ui-component-framework/ui-framework-example.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/homepage_changelog_panel.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/homepage_dcim_panel.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/index_bug_wf.jpg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/index_feature_request_wf.jpg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/index_release_cadence.drawio +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/development/index_release_cadence.jpg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/installation/nautobot_ui_admin.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/installation/nautobot_ui_login.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/cloud_aws_direct_connect_dark.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/cloud_aws_direct_connect_light.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dcim_cable_trace.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dcim_cable_trace_circuit.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_filtering_01.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_01.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_02.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_03.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_04.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_1_05.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_01.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_02.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_03.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_04.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_05.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_06.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_advanced_2_07.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_01.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_02.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/dynamicgroup_workflow_basic_03.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/jobbutton_form.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/model_simple.drawio +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/model_simple.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/model_uml.erd +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/model_uml.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/site_jobbuttons.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/virtual_device_context_overview.drawio +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/models/virtual_device_context_overview.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/nautobot_application_stack_high_level.drawio +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/nautobot_application_stack_high_level.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/nautobot_application_stack_low_level.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/nautobot_application_stack_low_level.txt +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/power_distribution.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/ss_app_chatops.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/ss_app_golden_config.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/ss_config_contexts.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/ss_graphiql.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/ss_main_page.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/ss_prefix_hierarchy.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/user-guide/administration/guides/request-profiling/advanced-settings.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/user-guide/administration/guides/request-profiling/silk-ui.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/user-guide/administration/guides/s3-django-storage/user-guide-s3-1.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/user-guide/administration/guides/s3-django-storage/user-guide-s3-2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/media/user-guide/administration/upgrading/from-v1/ipam/tenant-affinity.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/circuits/circuit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/circuits/circuittermination.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/circuits/circuittype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/circuits/provider.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/circuits/providernetwork.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/cloud/cloudaccount.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/cloud/cloudnetwork.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/cloud/cloudnetworkprefixassignment.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/cloud/cloudresourcetype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/cloud/cloudservice.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/cloud/cloudservicenetworkassignment.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/cable.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/consoleport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/consoleporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/consoleserverport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/consoleserverporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/controller.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/controllermanageddevicegroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/device.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/devicebay.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/devicebaytemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/devicefamily.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/deviceredundancygroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/devicetype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/frontport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/frontporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/interface.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/interfacetemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/inventoryitem.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/location.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/locationtype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/manufacturer.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/module.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/modulebay.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/modulebaytemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/moduletype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/platform.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/powerfeed.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/poweroutlet.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/poweroutlettemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/powerpanel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/powerport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/powerporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/rack.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/rackgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/rackreservation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/rearport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/rearporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/softwareimagefile.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/softwareversion.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/virtualchassis.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/dcim/virtualdevicecontext.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/computedfield.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/configcontext.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/configcontextschema.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/contact.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/customfield.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/customlink.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/dynamicgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/exporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/gitrepository.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/jobhook.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/joblogentry.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/jobqueue.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/jobresult.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/metadatachoice.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/metadatatype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/objectmetadata.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/role.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/savedview.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/secret.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/secretsgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/staticgroupassociation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/status.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/extras/team.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/ipam/ipaddress.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/ipam/prefix.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/ipam/rir.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/ipam/routetarget.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/ipam/service.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/ipam/vlan.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/ipam/vlangroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/ipam/vrf.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/tenancy/tenant.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/tenancy/tenantgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/virtualization/cluster.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/virtualization/clustergroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/virtualization/clustertype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/virtualization/virtualmachine.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/virtualization/vminterface.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/wireless/radioprofile.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/wireless/supporteddatarate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/models/wireless/wirelessnetwork.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/nautobot_logo.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/nautobot_logo.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/overview/design_philosophy.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/overview/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/plugins/development.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/plugins/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/plugins/porting-from-netbox.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-1.0.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-1.1.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-1.2.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-1.3.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-1.4.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-1.5.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-1.6.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-2.0.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-2.1.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-2.2.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/release-notes/version-2.3.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/rest-api/overview.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/node-configuration.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/redis.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/caching.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/docker.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation/app-install.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation/docker.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation/install_system.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation/services.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/security/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/security/notices.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-behavior-changes.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-removed-fields.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-api-renamed-fields.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-location-changes.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-nautobot-app-location.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-removals.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-code-renames.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-behavior-changes.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-removed-fields.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-database-renamed-fields.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-corrected-fields.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-enhanced-fields.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-removed-fields.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-filters-renamed-fields.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/tables/v2-logging-renamed-loggers.yaml +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/media/ipam_namespace_documentation.drawio.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/graphql.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/circuit.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/circuit_button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/contact_form_tabs.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/contact_forms.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/existing_contact_association.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/existing_contact_form.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/existing_contact_selected.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/existing_contact_table.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/new_contact_association_info.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/new_contact_info.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/contact-and-team/new_contact_table.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_choices.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_grouped.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_detail_label.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_edit.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/custom-fields/custom_field_select.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/1-create-location-type.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/10-add-platform.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/11-platforms-page.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/12-add-tenant.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/13-assign-tenant-to-device.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/14-assign-tenant-to-device-2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/15-create-device-type.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/16-interface-templates.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/17-templated-interfaces.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/18-assign-device-type.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/19-edit-ints-for-lag.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/2-create-manufacturer.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/20-ints-int-lag.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/21-device-type.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/22-create-vlans.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/23-create-vlans-2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/24-vlan-main-page.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/25-add-vlan-to-interface.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/26-add-vlan-to-interface-2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/27-add-rir.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/3-create-role.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/30-add-prefix.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/32-add-ip-addr.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/33-assign-address.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/34-assign-address-2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/35-assign-address-3.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/36-verify-address.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/37-verify-prefix.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/38-verify-prefix2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/4-create-device-type.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/41-device-search-results.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/42-address-search-v2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/43-get-to-device-main-page.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/44-add-platform.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/5-create-device.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/6-create-location.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/7-location-type-page.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/getting-started-nautobot-ui/8-location-page.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/01-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/02-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/03-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/04-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/05-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/06-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/07-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/08-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/09-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/10-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/11-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/12-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/13-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/14-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/15-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/16-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/git-as-data-source/17-git-data-source.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/00-graphiql.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/01-graphiql-explorer.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/02-graphiql-explorer-device-query.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/03-graphiql-explorer-device-attributes.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/04-graphql-query-01.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/05-graphiql-autocomplete.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/06-graphql-query-02.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/07-graphql-query-03.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/08-graphql-query-04.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/09-graphql-query-05.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/10-graphql-swagger.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/graphql/11-graphql-query-06.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/ip_merge_button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/merge_view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/no_more_dup_ips.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/skip_button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/ip-address-merge-tool/unselect_ips.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/01-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/02-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/03-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/04-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/05-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/06-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/07-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/08-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/09-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/10-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/relationships/11-relationships.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/clear-view-button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/cleared-view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/config-table-columns-to-locations.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/configure-button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/create-saved-view-success.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/current-saved-view-drop-down-menu.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/default-location-list-view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/dropdown-button-after-new-saved-view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/filter-application-to-locations.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/filter-button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/global-default-location-list-view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/location-list-view-with-saved-views.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/navigation-menu.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/save-as-new-view-drop-down.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/save-view-modal.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-buttons.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-success.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-view-unchecked.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-different-user.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-modal-unchecked.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/set-as-my-default-button.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/set-as-my-default-success.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/unsaved-saved-view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/updated-saved-view.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/software-image-files-and-versions/assign-software-version-to-device.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/software-image-files-and-versions/software-image-file-create.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/software-image-files-and-versions/software-version-create.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/central-mode.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-add.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-1.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/device-group-create-2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-add.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/radio-profile-create.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-add.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/supported-data-rate-create.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-add.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-1.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-controller-create-2.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-add.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/images/wireless/wireless-network-create.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/relationships.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/events.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/note.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/role.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/secret.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/status.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/tag.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/custom-fields.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/getting-started/creating-devices.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/getting-started/index.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/getting-started/interfaces.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/getting-started/ipam.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/getting-started/platforms.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/getting-started/search-bar.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/getting-started/tenants.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/getting-started/vlans-and-vlan-groups.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/git-data-source.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/graphql.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/ip-address-merge-tool.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/relationships.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/docs/user-guides/s3-django-storage.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/flatpickr-4.6.9/flatpickr.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/flatpickr-4.6.9/themes/light.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/UFL.txt +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/Ubuntu-Bold.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/Ubuntu-BoldItalic.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/Ubuntu-Italic.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/Ubuntu-Medium.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/Ubuntu-MediumItalic.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/Ubuntu-Regular.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/UbuntuMono-Bold.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/UbuntuMono-BoldItalic.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/UbuntuMono-Italic.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/fonts/UbuntuMono-Regular.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/graphiql-1.5.16/graphiql.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/graphiql-1.5.16/graphiql.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/highlight.js-11.9.0/github-dark.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/highlight.js-11.9.0/github.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/highlight.js-11.9.0/highlight.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/ajax-loader.gif +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/dark-theme.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/favicon.ico +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/jinja_logo.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/light-theme.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_chevron.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_chevron_header.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_icon.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_icon_16x16.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_icon_180x180.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_icon_192x192.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_icon_270x270.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_icon_32x32.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_icon_384x384.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_icon_monochrome.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_logo.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/nautobot_logo.svg +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/system-theme.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/img/tint_20.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery/jquery-3.7.1.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery/jquery.formset.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_444444_256x240.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_555555_256x240.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_777620_256x240.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_777777_256x240.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_cc0000_256x240.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/images/ui-icons_ffffff_256x240.png +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/jquery-ui-1.13.2/jquery-ui.theme.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/cabletrace.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/connection_toggles.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/dropdown.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/editor.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/forms.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/homepage_layout.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/interface_filtering.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/job_result.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/log_level_filtering.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/nav_menu.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/rack_elevations.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/table_sorting_indicator.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/tableconfig.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/js/theme.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/materialdesignicons-7.4.47/LICENSE +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/materialdesignicons-7.4.47/css/materialdesignicons.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.eot +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.ttf +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.woff +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.woff2 +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/README.md +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/base/worker/workerMain.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/basic-languages/xml/xml.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/basic-languages/yaml/yaml.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/editor/editor.main.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/editor/editor.main.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/language/json/jsonMode.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/language/json/jsonWorker.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/monaco-editor-0.52.2/vs/loader.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/react-16.14.0/react.production.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/react-dom-16.14.0/react-dom.production.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/af.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ar.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/az.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/bg.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/bn.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/bs.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ca.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/cs.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/da.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/de.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/dsb.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/el.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/en.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/es.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/et.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/eu.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/fa.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/fi.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/fr.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/gl.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/he.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/hi.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/hr.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/hsb.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/hu.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/hy.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/id.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/is.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/it.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ja.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ka.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/km.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ko.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/lt.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/lv.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/mk.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ms.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/nb.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ne.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/nl.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/pl.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ps.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/pt-BR.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/pt.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ro.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/ru.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/sk.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/sl.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/sq.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/sr-Cyrl.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/sr.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/sv.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/th.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/tk.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/tr.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/uk.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/vi.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/zh-CN.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/i18n/zh-TW.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/select2.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-4.0.13/select2.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/select2-bootstrap-0.1.0-beta.10/select2-bootstrap.min.css +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/subscriptions-transport-ws-0.9.18/client.min.js +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/project-static/whatwg-fetch-3.6.2/fetch.umd.min.js +0 -0
- {nautobot-2.4.4/nautobot/tenancy/api → nautobot-2.4.6/nautobot/tenancy}/__init__.py +0 -0
- {nautobot-2.4.4/nautobot/tenancy/migrations → nautobot-2.4.6/nautobot/tenancy/api}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/filters/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/filters/mixins.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0001_initial.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0002_auto_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0003_mptt_to_tree_queries.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0004_change_tree_manager_on_tree_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0005_rename_foreign_keys_and_related_names.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0006_created_datetime.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0007_remove_tenant_tenantgroup_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0008_tagsfield.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/migrations/0009_update_all_charfields_max_length_to_255.py +0 -0
- {nautobot-2.4.4/nautobot/tenancy/tests → nautobot-2.4.6/nautobot/tenancy/migrations}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/navigation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/templates/tenancy/tenant.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/templates/tenancy/tenant_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/templates/tenancy/tenant_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/templates/tenancy/tenantgroup.html +0 -0
- /nautobot-2.4.4/nautobot/virtualization/templates/virtualization/clustertype.html → /nautobot-2.4.6/nautobot/tenancy/templates/tenancy/tenantgroup_retrieve.html +0 -0
- {nautobot-2.4.4/nautobot/users → nautobot-2.4.6/nautobot/tenancy/tests}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/tests/test_api.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/tests/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/tests/test_views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/tenancy/views.py +0 -0
- {nautobot-2.4.4/nautobot/users/api → nautobot-2.4.6/nautobot/users}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/admin.py +0 -0
- {nautobot-2.4.4/nautobot/users/migrations → nautobot-2.4.6/nautobot/users/api}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0001_initial.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0002_token_ordering_by_created.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0003_alter_user_options.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0004_alter_user_managers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0005_ensure_object_permission_names_are_unique.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0006_make_object_permission_name_globally_unique.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0007_alter_objectpermission_object_types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0008_make_object_permission_a_changelogged_model.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0009_update_all_charfields_max_length_to_255.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/migrations/0010_user_default_saved_views.py +0 -0
- {nautobot-2.4.4/nautobot/users/tests → nautobot-2.4.6/nautobot/users/migrations}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/templates/users/advanced_settings_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/templates/users/api_tokens.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/templates/users/base.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/templates/users/change_password.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/templates/users/preferences.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/templates/users/profile.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/templates/users/sessionkey_delete.html +0 -0
- {nautobot-2.4.4/nautobot/virtualization → nautobot-2.4.6/nautobot/users/tests}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/tests/test_api.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/tests/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/tests/test_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/tests/test_views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/utils.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/users/views.py +0 -0
- {nautobot-2.4.4/nautobot/virtualization/api → nautobot-2.4.6/nautobot/virtualization}/__init__.py +0 -0
- {nautobot-2.4.4/nautobot/virtualization/graphql → nautobot-2.4.6/nautobot/virtualization/api}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/filters.py +0 -0
- {nautobot-2.4.4/nautobot/virtualization/migrations → nautobot-2.4.6/nautobot/virtualization/graphql}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/graphql/types.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0001_initial.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0002_virtualmachine_local_context_schema.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0003_vminterface_verbose_name.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0004_auto_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0005_add_natural_indexing.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0006_vminterface_status.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0007_vminterface_status_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0008_vminterface_parent.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0009_cluster_location.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0010_vminterface_mac_address_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0011_alter_vminterface_mac_address.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0012_alter_virtualmachine_role_add_new_role.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0013_migrate_virtualmachine_role_data.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0014_rename_virtualmachine_roles.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0015_rename_foreignkey_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0016_remove_site_foreign_key_from_cluster_class.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0017_created_datetime.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0018_related_name_changes.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0019_vminterface_ip_addresses_m2m.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0020_remove_clustergroup_clustertype_slug.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0021_tagsfield_and_vminterface_to_primarymodel.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0022_vminterface_timestamps_data_migration.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0023_ipam__namespaces.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0024_fixup_null_statuses.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0025_status_nonnullable.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0026_change_virtualmachine_primary_ip_fields.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0027_virtualmachine_software_image.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0028_update_all_charfields_max_length_to_255.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0029_add_role_field_to_interface_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/migrations/0030_alter_virtualmachine_local_config_context_data_owner_content_type_and_more.py +0 -0
- {nautobot-2.4.4/nautobot/virtualization/tests → nautobot-2.4.6/nautobot/virtualization/migrations}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/navigation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/signals.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/cluster.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/cluster_add_devices.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/cluster_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/virtual_machine_vminterface_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/virtualmachine.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/virtualmachine_component_add.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/virtualmachine_edit.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/virtualmachine_list.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/vminterface.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/vminterface_bulk_delete.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/templates/virtualization/vminterface_edit.html +0 -0
- {nautobot-2.4.4/nautobot/wireless → nautobot-2.4.6/nautobot/virtualization/tests}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/tests/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/virtualization/tests/test_models.py +0 -0
- {nautobot-2.4.4/nautobot/wireless/api → nautobot-2.4.6/nautobot/wireless}/__init__.py +0 -0
- {nautobot-2.4.4/nautobot/wireless/migrations → nautobot-2.4.6/nautobot/wireless/api}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/api/serializers.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/api/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/api/views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/apps.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/choices.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/factory.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/forms.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/homepage.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/migrations/0001_initial.py +0 -0
- {nautobot-2.4.4/nautobot/wireless/tests → nautobot-2.4.6/nautobot/wireless/migrations}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/navigation.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/tables.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/templates/wireless/radioprofile_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/templates/wireless/supporteddatarate_retrieve.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/templates/wireless/wirelessnetwork_create.html +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/templates/wireless/wirelessnetwork_retrieve.html +0 -0
- {nautobot-2.4.4/nautobot/wireless/tests/integration → nautobot-2.4.6/nautobot/wireless/tests}/__init__.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/tests/integration/test_radio_profile.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/tests/test_api.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/tests/test_filters.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/tests/test_models.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/tests/test_views.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/urls.py +0 -0
- {nautobot-2.4.4 → nautobot-2.4.6}/nautobot/wireless/views.py +0 -0
nautobot-2.4.6/PKG-INFO
ADDED
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: nautobot
|
|
3
|
+
Version: 2.4.6
|
|
4
|
+
Summary: Source of truth and network automation platform.
|
|
5
|
+
Home-page: https://nautobot.com
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Keywords: Nautobot
|
|
8
|
+
Author: Network to Code
|
|
9
|
+
Author-email: opensource@networktocode.com
|
|
10
|
+
Requires-Python: >=3.9.2,<3.13
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
+
Provides-Extra: all
|
|
20
|
+
Provides-Extra: ldap
|
|
21
|
+
Provides-Extra: mysql
|
|
22
|
+
Provides-Extra: napalm
|
|
23
|
+
Provides-Extra: remote-storage
|
|
24
|
+
Provides-Extra: sso
|
|
25
|
+
Requires-Dist: Django (>=4.2.20,<4.3.0)
|
|
26
|
+
Requires-Dist: GitPython (>=3.1.44,<3.2.0)
|
|
27
|
+
Requires-Dist: Jinja2 (>=3.1.6,<3.2.0)
|
|
28
|
+
Requires-Dist: Markdown (>=3.6,<3.7)
|
|
29
|
+
Requires-Dist: Pillow (>=11.0.0,<11.1.0)
|
|
30
|
+
Requires-Dist: PyYAML (>=6.0.2,<6.1.0)
|
|
31
|
+
Requires-Dist: celery (>=5.3.6,<5.4.0)
|
|
32
|
+
Requires-Dist: cryptography (>=44.0.2,<44.1.0)
|
|
33
|
+
Requires-Dist: django-ajax-tables (>=1.1.1,<1.2.0)
|
|
34
|
+
Requires-Dist: django-auth-ldap (>=5.1.0,<5.2.0) ; extra == "all" or extra == "ldap"
|
|
35
|
+
Requires-Dist: django-celery-beat (>=2.6.0,<2.7.0)
|
|
36
|
+
Requires-Dist: django-celery-results (>=2.5.1,<2.6.0)
|
|
37
|
+
Requires-Dist: django-constance (>=4.3.0,<4.4.0)
|
|
38
|
+
Requires-Dist: django-cors-headers (>=4.4.0,<4.5.0)
|
|
39
|
+
Requires-Dist: django-db-file-storage (>=0.5.6.1,<0.6.0.0)
|
|
40
|
+
Requires-Dist: django-extensions (>=3.2.3,<3.3.0)
|
|
41
|
+
Requires-Dist: django-filter (>=25.1,<25.2)
|
|
42
|
+
Requires-Dist: django-health-check (>=3.18.3,<3.19.0)
|
|
43
|
+
Requires-Dist: django-jinja (>=2.11.0,<2.12.0)
|
|
44
|
+
Requires-Dist: django-prometheus (>=2.3.1,<2.4.0)
|
|
45
|
+
Requires-Dist: django-redis (>=5.4.0,<5.5.0)
|
|
46
|
+
Requires-Dist: django-silk (>=5.3.2,<5.4.0)
|
|
47
|
+
Requires-Dist: django-storages (==1.14.3) ; extra == "all" or extra == "remote-storage"
|
|
48
|
+
Requires-Dist: django-structlog[celery] (>=9.0.1,<10.0.0)
|
|
49
|
+
Requires-Dist: django-tables2 (>=2.7.5,<2.8.0)
|
|
50
|
+
Requires-Dist: django-taggit (>=6.1.0,<6.2.0)
|
|
51
|
+
Requires-Dist: django-timezone-field (>=7.0,<7.1)
|
|
52
|
+
Requires-Dist: django-tree-queries (>=0.19.0,<0.20.0)
|
|
53
|
+
Requires-Dist: django-webserver (>=1.2.0,<1.3.0)
|
|
54
|
+
Requires-Dist: djangorestframework (>=3.15.2,<3.16.0)
|
|
55
|
+
Requires-Dist: drf-spectacular[sidecar] (>=0.27.2,<0.28.0)
|
|
56
|
+
Requires-Dist: emoji (>=2.12.1,<2.13.0)
|
|
57
|
+
Requires-Dist: graphene-django (>=2.16.0,<2.17.0)
|
|
58
|
+
Requires-Dist: graphene-django-optimizer (>=0.8.0,<0.9.0)
|
|
59
|
+
Requires-Dist: jsonschema (>=4.7.0,<5.0.0)
|
|
60
|
+
Requires-Dist: kombu (>=5.4.2,<5.5.0)
|
|
61
|
+
Requires-Dist: kubernetes (>=32.0.1,<33.0.0)
|
|
62
|
+
Requires-Dist: mysqlclient (>=2.2.7,<2.3.0) ; extra == "all" or extra == "mysql"
|
|
63
|
+
Requires-Dist: napalm (>=4.1.0,<6.0.0) ; extra == "all" or extra == "napalm"
|
|
64
|
+
Requires-Dist: netaddr (>=1.3.0,<1.4.0)
|
|
65
|
+
Requires-Dist: netutils (>=1.6.0,<2.0.0)
|
|
66
|
+
Requires-Dist: nh3 (>=0.2.21,<0.3.0)
|
|
67
|
+
Requires-Dist: packaging (>=23.1)
|
|
68
|
+
Requires-Dist: prometheus-client (>=0.20.0,<0.21.0)
|
|
69
|
+
Requires-Dist: psycopg2-binary (>=2.9.10,<2.10.0)
|
|
70
|
+
Requires-Dist: python-slugify (>=8.0.3,<8.1.0)
|
|
71
|
+
Requires-Dist: pyuwsgi (>=2.0.26,<2.1.0)
|
|
72
|
+
Requires-Dist: social-auth-app-django (>=5.4.3,<5.5.0)
|
|
73
|
+
Requires-Dist: social-auth-core[saml] (>=4.5.6,<4.6.0) ; extra == "all" or extra == "sso"
|
|
74
|
+
Requires-Dist: svgwrite (>=1.4.2,<1.5.0)
|
|
75
|
+
Project-URL: Documentation, https://docs.nautobot.com
|
|
76
|
+
Project-URL: Repository, https://github.com/nautobot/nautobot
|
|
77
|
+
Description-Content-Type: text/markdown
|
|
78
|
+
|
|
79
|
+
# Nautobot
|
|
80
|
+
|
|
81
|
+

|
|
82
|
+
|
|
83
|
+
Nautobot is a Network Source of Truth and Network Automation Platform built as a web application atop the [Django](https://www.djangoproject.com/) Python framework with a
|
|
84
|
+
[PostgreSQL](https://www.postgresql.org/) or [MySQL](https://www.mysql.com) database.
|
|
85
|
+
|
|
86
|
+
## Key Use Cases
|
|
87
|
+
|
|
88
|
+
**1. Flexible Source of Truth for Networking** - Nautobot core data models are used to define the intended state of network infrastructure enabling it as a Source of Truth. While a baseline set of models are provided (such as IP networks and addresses, devices and racks, circuits and cable, etc.) it is Nautobot's goal to offer maximum data model flexibility. This is enabled through features such as user-defined relationships, custom fields on any model, and data validation that permits users to codify everything from naming standards to having automated tests run before data can be populated into Nautobot.
|
|
89
|
+
|
|
90
|
+
**2. Extensible Data Platform for Automation** - Nautobot has a rich feature set to seamlessly integrate with network automation solutions. Nautobot offers GraphQL and native Git integration along with REST APIs and webhooks. Git integration dynamically loads YAML data files as Nautobot config contexts. Nautobot also has an evolving plugin system that enables users to create custom models, APIs, and UI elements. The plugin system is also used to unify and aggregate disparate data sources creating a Single Source of Truth to streamline data management for network automation.
|
|
91
|
+
|
|
92
|
+
**3. Platform for Network Automation Apps** - The Nautobot plugin system enables users to create Network Automation Apps. Apps can be as lightweight or robust as needed based on user needs. Using Nautobot for creating custom applications saves up to 70% development time by re-using features such as authentication, permissions, webhooks, GraphQL, change logging, etc. all while having access to the data already stored in Nautobot. Some production ready applications include:
|
|
93
|
+
|
|
94
|
+
The complete documentation for Nautobot can be found at [Read the Docs](https://docs.nautobot.com/).
|
|
95
|
+
|
|
96
|
+
Questions? Comments? Start by perusing our [GitHub discussions](https://github.com/nautobot/nautobot/discussions) for the topic you have in mind, or join the `#nautobot` channel on [Network to Code's Slack community](https://slack.networktocode.com/)!
|
|
97
|
+
|
|
98
|
+
## Build Status
|
|
99
|
+
|
|
100
|
+
| Branch | Status |
|
|
101
|
+
|-------------|------------|
|
|
102
|
+
| **[main](https://github.com/nautobot/nautobot/tree/main)** | [](https://github.com/nautobot/nautobot/actions/workflows/ci_integration.yml) |
|
|
103
|
+
| **[develop](https://github.com/nautobot/nautobot/tree/develop)** | [](https://github.com/nautobot/nautobot/actions/workflows/ci_integration.yml) |
|
|
104
|
+
| **[next](https://github.com/nautobot/nautobot/tree/next)** | [](https://github.com/nautobot/nautobot/actions/workflows/ci_integration.yml) |
|
|
105
|
+
|
|
106
|
+
## Screenshots
|
|
107
|
+
|
|
108
|
+

|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+

|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+

|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+

|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+

|
|
125
|
+
|
|
126
|
+
## Installation
|
|
127
|
+
|
|
128
|
+
Please see [the documentation](https://docs.nautobot.com/projects/core/en/stable/user-guide/administration/installation/) for instructions on installing Nautobot.
|
|
129
|
+
|
|
130
|
+
## Application Stack
|
|
131
|
+
|
|
132
|
+
Below is a simplified overview of the Nautobot application stack for reference:
|
|
133
|
+
|
|
134
|
+

|
|
135
|
+
|
|
136
|
+
## Plugins and Extensibility
|
|
137
|
+
|
|
138
|
+
Nautobot offers the ability to customize your setup to better align with your direct business needs. It does so through the use of various plugins that have been developed for network automation, and are designed to be used in environments where needed.
|
|
139
|
+
|
|
140
|
+
There are many plugins available within the Nautobot Apps ecosystem. The below screenshots are an example of some popular ones that are currently available.
|
|
141
|
+
|
|
142
|
+
### Plugin Screenshots
|
|
143
|
+
|
|
144
|
+
#### Golden Config Plugin
|
|
145
|
+
|
|
146
|
+

|
|
147
|
+
|
|
148
|
+
#### ChatOps Plugin
|
|
149
|
+
|
|
150
|
+

|
|
151
|
+
|
|
152
|
+
#### Device Lifecycle Management Plugin
|
|
153
|
+
|
|
154
|
+

|
|
155
|
+
|
|
156
|
+
## Providing Feedback
|
|
157
|
+
|
|
158
|
+
The best platform for general feedback, assistance, and other discussion is our [GitHub discussions](https://github.com/nautobot/nautobot/discussions). To report a bug or request a specific feature, please open a GitHub issue using the [appropriate template](https://github.com/nautobot/nautobot/issues/new/choose).
|
|
159
|
+
|
|
160
|
+
If you are interested in contributing to the development of Nautobot, please read our [contributing guide](https://docs.nautobot.com/projects/core/en/stable/development/core/#contributing) prior to beginning any work.
|
|
161
|
+
|
|
162
|
+
## Related projects
|
|
163
|
+
|
|
164
|
+
Please check out [the GitHub `nautobot` topic](https://github.com/topics/nautobot) for a list of relevant community projects.
|
|
165
|
+
|
|
166
|
+
## Notices
|
|
167
|
+
|
|
168
|
+
> Nautobot was initially developed as a fork of NetBox (v2.10.4). NetBox was originally developed by Jeremy Stretch at DigitalOcean and the NetBox Community.
|
|
169
|
+
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
from importlib import metadata
|
|
2
|
+
import logging
|
|
3
|
+
import os
|
|
4
|
+
import sys
|
|
5
|
+
|
|
6
|
+
import django
|
|
7
|
+
|
|
8
|
+
# Primary package version
|
|
9
|
+
__version__ = metadata.version(__name__)
|
|
10
|
+
|
|
11
|
+
# Sentinel to make sure we only initialize once.
|
|
12
|
+
__initialized = False
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def add_success_logger():
|
|
16
|
+
"""Add a custom log level for success messages."""
|
|
17
|
+
SUCCESS = 25 # between INFO and WARNING
|
|
18
|
+
logging.addLevelName(SUCCESS, "SUCCESS")
|
|
19
|
+
|
|
20
|
+
def success(self, message, *args, **kwargs):
|
|
21
|
+
kwargs["stacklevel"] = kwargs.get("stacklevel", 1) + 1 # so that funcName is the caller function, not "success"
|
|
22
|
+
if self.isEnabledFor(SUCCESS):
|
|
23
|
+
self._log(SUCCESS, message, args, **kwargs)
|
|
24
|
+
|
|
25
|
+
logging.Logger.success = success
|
|
26
|
+
return success
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def add_failure_logger():
|
|
30
|
+
"""Add a custom log level for failure messages less severe than an ERROR."""
|
|
31
|
+
FAILURE = 35 # between WARNING and ERROR
|
|
32
|
+
logging.addLevelName(FAILURE, "FAILURE")
|
|
33
|
+
|
|
34
|
+
def failure(self, message, *args, **kwargs):
|
|
35
|
+
kwargs["stacklevel"] = kwargs.get("stacklevel", 1) + 1 # so that funcName is the caller function, not "failure"
|
|
36
|
+
if self.isEnabledFor(FAILURE):
|
|
37
|
+
self._log(FAILURE, message, args, **kwargs)
|
|
38
|
+
|
|
39
|
+
logging.Logger.failure = failure
|
|
40
|
+
return failure
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
add_success_logger()
|
|
44
|
+
add_failure_logger()
|
|
45
|
+
logger = logging.getLogger(__name__)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def setup(config_path=None):
|
|
49
|
+
"""Similar to `django.setup()`, this configures Django with the appropriate Nautobot settings data."""
|
|
50
|
+
from nautobot.core.cli import get_config_path, load_settings
|
|
51
|
+
|
|
52
|
+
global __initialized
|
|
53
|
+
|
|
54
|
+
if __initialized:
|
|
55
|
+
return
|
|
56
|
+
|
|
57
|
+
if config_path is None:
|
|
58
|
+
config_path = get_config_path()
|
|
59
|
+
|
|
60
|
+
# Point Django to our 'nautobot_config' pseudo-module that we'll load from the provided config path
|
|
61
|
+
os.environ["DJANGO_SETTINGS_MODULE"] = "nautobot_config"
|
|
62
|
+
|
|
63
|
+
if "nautobot_config" not in sys.modules:
|
|
64
|
+
load_settings(config_path)
|
|
65
|
+
django.setup()
|
|
66
|
+
|
|
67
|
+
logger.info("Nautobot %s initialized!", __version__)
|
|
68
|
+
__initialized = True
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
import uuid
|
|
3
|
+
|
|
4
|
+
from django.core.exceptions import (
|
|
5
|
+
FieldError,
|
|
6
|
+
MultipleObjectsReturned,
|
|
7
|
+
ObjectDoesNotExist,
|
|
8
|
+
)
|
|
9
|
+
from django.db.models import AutoField, Model
|
|
10
|
+
from rest_framework.exceptions import ValidationError
|
|
11
|
+
|
|
12
|
+
from nautobot.core.api.utils import dict_to_filter_params
|
|
13
|
+
from nautobot.core.utils.data import is_url
|
|
14
|
+
|
|
15
|
+
logger = logging.getLogger(__name__)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class LimitQuerysetChoicesSerializerMixin:
|
|
19
|
+
"""Mixin field that restricts queryset choices to those accessible
|
|
20
|
+
for the queryset model that implemented it."""
|
|
21
|
+
|
|
22
|
+
def get_queryset(self):
|
|
23
|
+
"""Only emit options for this model/field combination."""
|
|
24
|
+
queryset = super().get_queryset()
|
|
25
|
+
# Get objects model e.g Location, Device... etc.
|
|
26
|
+
# Tags model can be gotten using self.parent.parent, while others uses self.parent
|
|
27
|
+
try:
|
|
28
|
+
model = self.parent.Meta.model
|
|
29
|
+
except AttributeError:
|
|
30
|
+
model = self.parent.parent.Meta.model
|
|
31
|
+
return queryset.get_for_model(model)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class WritableSerializerMixin:
|
|
35
|
+
"""
|
|
36
|
+
WritableSerializerMixin provides the to_internal_value() function.
|
|
37
|
+
The function provides the ability to write API requests that identify unique objects based on
|
|
38
|
+
combinations of fields other than the primary key.
|
|
39
|
+
e.g:
|
|
40
|
+
"parent": { "location_type__parent": {"name": "Campus"}, "parent__name": "Campus-29" }
|
|
41
|
+
vs
|
|
42
|
+
"parent": "10dff139-7333-46b0-bef6-f6a5a7b5497c"
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
def remove_non_filter_fields(self, filter_params):
|
|
46
|
+
"""
|
|
47
|
+
Make output from a WritableSerializer "round-trip" capable by automatically stripping from the
|
|
48
|
+
data any serializer fields that do not correspond to a specific model field
|
|
49
|
+
"""
|
|
50
|
+
if hasattr(self, "fields"):
|
|
51
|
+
for field_name, field_instance in self.fields.items():
|
|
52
|
+
if field_name in filter_params and field_instance.source == "*":
|
|
53
|
+
logger.debug("Discarding non-filter field %s", field_name)
|
|
54
|
+
del filter_params[field_name]
|
|
55
|
+
return filter_params
|
|
56
|
+
|
|
57
|
+
def get_queryset_filter_params(self, data, queryset):
|
|
58
|
+
"""
|
|
59
|
+
Data could be a dictionary and an int (for the User model) or a str that represents the primary key.
|
|
60
|
+
If it is a dictionary, we return it after remove non-filter fields.
|
|
61
|
+
If it is a primary key, we return a dictionary object formatted like this {"pk": pk}
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
if isinstance(data, dict):
|
|
65
|
+
params = dict_to_filter_params(data)
|
|
66
|
+
return self.remove_non_filter_fields(params)
|
|
67
|
+
|
|
68
|
+
# Account for the fact that HyperlinkedIdentityFields might pass in URLs.
|
|
69
|
+
if is_url(data):
|
|
70
|
+
# Strip the trailing slash and split on slashes, taking the last value as the PK.
|
|
71
|
+
data = data.rstrip("/").split("/")[-1]
|
|
72
|
+
|
|
73
|
+
# If we're passing the validated_data from one serializer as input to another serializer,
|
|
74
|
+
# data might already be a model instance:
|
|
75
|
+
if isinstance(data, Model):
|
|
76
|
+
return {"pk": data.pk}
|
|
77
|
+
|
|
78
|
+
try:
|
|
79
|
+
# The int case here is taking into account for the User model we inherit from django
|
|
80
|
+
pk = int(data) if isinstance(queryset.model._meta.pk, AutoField) else uuid.UUID(str(data))
|
|
81
|
+
except (TypeError, ValueError) as e:
|
|
82
|
+
raise ValidationError(
|
|
83
|
+
"Related objects must be referenced by ID or by dictionary of attributes. Received an "
|
|
84
|
+
f"unrecognized value: {data}"
|
|
85
|
+
) from e
|
|
86
|
+
return {"pk": pk}
|
|
87
|
+
|
|
88
|
+
def get_object(self, data, queryset):
|
|
89
|
+
"""
|
|
90
|
+
Retrieve an unique object based on a dictionary of data attributes and raise errors accordingly if the object is not found.
|
|
91
|
+
"""
|
|
92
|
+
filter_params = self.get_queryset_filter_params(data=data, queryset=queryset)
|
|
93
|
+
try:
|
|
94
|
+
return queryset.get(**filter_params)
|
|
95
|
+
except ObjectDoesNotExist as e:
|
|
96
|
+
raise ValidationError(f"Related object not found using the provided attributes: {filter_params}") from e
|
|
97
|
+
except MultipleObjectsReturned as e:
|
|
98
|
+
raise ValidationError(f"Multiple objects match the provided attributes: {filter_params}") from e
|
|
99
|
+
except FieldError as e:
|
|
100
|
+
raise ValidationError(e) from e
|
|
101
|
+
|
|
102
|
+
def to_internal_value(self, data):
|
|
103
|
+
"""
|
|
104
|
+
Return an object or a list of objects based on a dictionary of data attributes or an UUID.
|
|
105
|
+
"""
|
|
106
|
+
if data is None:
|
|
107
|
+
return None
|
|
108
|
+
if hasattr(self, "queryset"):
|
|
109
|
+
queryset = self.queryset
|
|
110
|
+
else:
|
|
111
|
+
queryset = self.Meta.model.objects
|
|
112
|
+
|
|
113
|
+
# Apply user permission on related objects
|
|
114
|
+
if (
|
|
115
|
+
"request" in self.context
|
|
116
|
+
and self.context["request"]
|
|
117
|
+
and self.context["request"].user
|
|
118
|
+
and hasattr(queryset, "restrict")
|
|
119
|
+
):
|
|
120
|
+
queryset = queryset.restrict(self.context["request"].user, "view")
|
|
121
|
+
|
|
122
|
+
if isinstance(data, list):
|
|
123
|
+
return [self.get_object(data=entry, queryset=queryset) for entry in data]
|
|
124
|
+
return self.get_object(data=data, queryset=queryset)
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import logging
|
|
3
|
+
import os
|
|
4
|
+
from pathlib import Path
|
|
5
|
+
import shutil
|
|
6
|
+
|
|
7
|
+
from celery import Celery, shared_task, signals
|
|
8
|
+
from celery.app.log import TaskFormatter
|
|
9
|
+
from celery.utils.log import get_logger
|
|
10
|
+
from django.conf import settings
|
|
11
|
+
from django.db.utils import OperationalError, ProgrammingError
|
|
12
|
+
from django.utils.functional import SimpleLazyObject
|
|
13
|
+
from django.utils.module_loading import import_string
|
|
14
|
+
from kombu.serialization import register
|
|
15
|
+
from prometheus_client import CollectorRegistry, multiprocess, start_http_server
|
|
16
|
+
|
|
17
|
+
from nautobot import add_failure_logger, add_success_logger
|
|
18
|
+
from nautobot.core.celery.control import discard_git_repository, refresh_git_repository # noqa: F401 # unused-import
|
|
19
|
+
from nautobot.core.celery.encoders import NautobotKombuJSONEncoder
|
|
20
|
+
from nautobot.core.celery.log import NautobotDatabaseHandler
|
|
21
|
+
from nautobot.core.utils.module_loading import import_modules_privately
|
|
22
|
+
from nautobot.extras.registry import registry
|
|
23
|
+
|
|
24
|
+
logger = logging.getLogger(__name__)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "nautobot_config")
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class NautobotCelery(Celery):
|
|
31
|
+
task_cls = "nautobot.core.celery.task:NautobotTask"
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
app = NautobotCelery("nautobot")
|
|
35
|
+
|
|
36
|
+
# Using a string here means the worker doesn't have to serialize
|
|
37
|
+
# the configuration object to child processes.
|
|
38
|
+
# - namespace='CELERY' means all celery-related configuration keys
|
|
39
|
+
# should have a `CELERY_` prefix.
|
|
40
|
+
app.config_from_object("django.conf:settings", namespace="CELERY")
|
|
41
|
+
|
|
42
|
+
# Load task modules from all registered Django apps.
|
|
43
|
+
app.autodiscover_tasks()
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
@signals.import_modules.connect
|
|
47
|
+
def import_jobs(sender=None, **kwargs):
|
|
48
|
+
"""
|
|
49
|
+
Import system Jobs into Nautobot as well as Jobs from JOBS_ROOT and GIT_ROOT.
|
|
50
|
+
|
|
51
|
+
Note that app-provided jobs are automatically imported at startup time via NautobotAppConfig.ready()
|
|
52
|
+
"""
|
|
53
|
+
import nautobot.core.jobs # noqa: F401
|
|
54
|
+
|
|
55
|
+
_import_jobs_from_jobs_root()
|
|
56
|
+
|
|
57
|
+
try:
|
|
58
|
+
_import_jobs_from_git_repositories()
|
|
59
|
+
except (
|
|
60
|
+
OperationalError, # Database not present, as may be the case when running pylint-nautobot
|
|
61
|
+
ProgrammingError, # Database not ready yet, as may be the case on initial startup and migration
|
|
62
|
+
):
|
|
63
|
+
pass
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
def _import_jobs_from_jobs_root():
|
|
67
|
+
"""
|
|
68
|
+
(Re)import all modules in settings.JOBS_ROOT.
|
|
69
|
+
"""
|
|
70
|
+
if not (settings.JOBS_ROOT and os.path.isdir(settings.JOBS_ROOT)):
|
|
71
|
+
return
|
|
72
|
+
|
|
73
|
+
# Flush any previously loaded non-system, non-App Jobs
|
|
74
|
+
for job_class_path in list(registry["jobs"]):
|
|
75
|
+
if job_class_path.startswith("nautobot."):
|
|
76
|
+
# System job
|
|
77
|
+
continue
|
|
78
|
+
if any(job_class_path.startswith(f"{app_name}.") for app_name in settings.PLUGINS):
|
|
79
|
+
# App provided job
|
|
80
|
+
continue
|
|
81
|
+
try:
|
|
82
|
+
from nautobot.extras.models import GitRepository
|
|
83
|
+
|
|
84
|
+
if any(
|
|
85
|
+
job_class_path.startswith(f"{repo.slug}.")
|
|
86
|
+
for repo in GitRepository.objects.filter(provided_contents__contains="extras.job")
|
|
87
|
+
):
|
|
88
|
+
# Git provided job
|
|
89
|
+
continue
|
|
90
|
+
except ProgrammingError: # Database not ready yet, as may be the case on initial startup and migration
|
|
91
|
+
pass
|
|
92
|
+
# Else, it's presumably a JOBS_ROOT job
|
|
93
|
+
del registry["jobs"][job_class_path]
|
|
94
|
+
|
|
95
|
+
# Load all modules in JOBS_ROOT
|
|
96
|
+
import_modules_privately(path=os.path.realpath(settings.JOBS_ROOT))
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
def _import_jobs_from_git_repositories():
|
|
100
|
+
git_root = os.path.realpath(settings.GIT_ROOT)
|
|
101
|
+
if not (git_root and os.path.exists(git_root)):
|
|
102
|
+
return
|
|
103
|
+
|
|
104
|
+
from nautobot.extras.models import GitRepository
|
|
105
|
+
|
|
106
|
+
# Make sure there are no git clones in GIT_ROOT that *aren't* tracked by a GitRepository;
|
|
107
|
+
# for example, maybe a GitRepository was deleted while this worker process wasn't running?
|
|
108
|
+
for filename in os.listdir(git_root):
|
|
109
|
+
filepath = os.path.join(git_root, filename)
|
|
110
|
+
if (
|
|
111
|
+
os.path.isdir(filepath)
|
|
112
|
+
and os.path.isdir(os.path.join(filepath, ".git"))
|
|
113
|
+
and not GitRepository.objects.filter(slug=filename).exists()
|
|
114
|
+
):
|
|
115
|
+
logger.warning("Deleting unmanaged (leftover?) Git repository clone at %s", filepath)
|
|
116
|
+
shutil.rmtree(filepath, ignore_errors=True)
|
|
117
|
+
|
|
118
|
+
# Make sure all GitRepository records that include Jobs have up-to-date git clones, and load their jobs
|
|
119
|
+
for repo in GitRepository.objects.filter(provided_contents__contains="extras.job"):
|
|
120
|
+
refresh_git_repository(state=None, repository_pk=repo.pk, head=repo.current_head)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
def add_nautobot_log_handler(logger_instance, log_format=None):
|
|
124
|
+
"""Add NautobotDatabaseHandler to logger and update logger level filtering to send all log levels to our handler."""
|
|
125
|
+
if any(isinstance(h, NautobotDatabaseHandler) for h in logger_instance.handlers):
|
|
126
|
+
return
|
|
127
|
+
if logger_instance.level not in (logging.NOTSET, logging.DEBUG):
|
|
128
|
+
for handler in logger_instance.handlers:
|
|
129
|
+
handler.setLevel(logger_instance.level)
|
|
130
|
+
logger_instance.setLevel(logging.DEBUG)
|
|
131
|
+
|
|
132
|
+
if log_format is None:
|
|
133
|
+
log_format = app.conf.worker_task_log_format
|
|
134
|
+
handler = NautobotDatabaseHandler()
|
|
135
|
+
handler.setFormatter(TaskFormatter(log_format, use_color=False))
|
|
136
|
+
logger_instance.addHandler(handler)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
@signals.after_setup_logger.connect
|
|
140
|
+
def setup_nautobot_global_logging(logger, **kwargs): # pylint: disable=redefined-outer-name
|
|
141
|
+
"""Add SUCCESS and FAILURE logs to celery global logger."""
|
|
142
|
+
logger.success = add_success_logger()
|
|
143
|
+
logger.failure = add_failure_logger()
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
@signals.after_setup_task_logger.connect
|
|
147
|
+
def setup_nautobot_task_logging(logger, **kwargs): # pylint: disable=redefined-outer-name
|
|
148
|
+
"""Add SUCCESS and FAILURE logs to celery task logger."""
|
|
149
|
+
logger.success = add_success_logger()
|
|
150
|
+
logger.failure = add_failure_logger()
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
@signals.celeryd_after_setup.connect
|
|
154
|
+
def setup_nautobot_job_logging(sender, instance, conf, **kwargs):
|
|
155
|
+
"""Add nautobot database logging handler to celery stdout/stderr redirect logger and celery task logger."""
|
|
156
|
+
task_logger = get_logger("celery.task")
|
|
157
|
+
add_nautobot_log_handler(task_logger)
|
|
158
|
+
if conf.worker_redirect_stdouts:
|
|
159
|
+
redirect_logger = get_logger("celery.redirected")
|
|
160
|
+
add_nautobot_log_handler(redirect_logger)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
@signals.worker_ready.connect
|
|
164
|
+
def setup_prometheus(**kwargs):
|
|
165
|
+
"""This sets up an HTTP server to serve prometheus metrics from the celery workers."""
|
|
166
|
+
# Don't set up the server if the port is undefined
|
|
167
|
+
if not settings.CELERY_WORKER_PROMETHEUS_PORTS:
|
|
168
|
+
return
|
|
169
|
+
|
|
170
|
+
logger.info("Setting up prometheus metrics HTTP server for celery worker.")
|
|
171
|
+
|
|
172
|
+
# Ensure that the multiprocess coordination directory exists. Note that we explicitly don't clear this directory
|
|
173
|
+
# out because the worker might share its filesystem with the core app or another worker. The multiprocess
|
|
174
|
+
# mechanism from prometheus-client takes care of this.
|
|
175
|
+
multiprocess_coordination_directory = Path(os.environ["prometheus_multiproc_dir"])
|
|
176
|
+
multiprocess_coordination_directory.mkdir(parents=True, exist_ok=True)
|
|
177
|
+
|
|
178
|
+
# Set up the collector registry
|
|
179
|
+
collector_registry = CollectorRegistry()
|
|
180
|
+
multiprocess.MultiProcessCollector(collector_registry, path=multiprocess_coordination_directory)
|
|
181
|
+
for port in settings.CELERY_WORKER_PROMETHEUS_PORTS:
|
|
182
|
+
try:
|
|
183
|
+
start_http_server(port, registry=collector_registry)
|
|
184
|
+
break
|
|
185
|
+
except OSError:
|
|
186
|
+
continue
|
|
187
|
+
else:
|
|
188
|
+
logger.warning("Cannot export Prometheus metrics from worker, no available ports in range.")
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
def nautobot_kombu_json_loads_hook(data):
|
|
192
|
+
"""
|
|
193
|
+
In concert with the NautobotKombuJSONEncoder json encoder, this object hook method decodes
|
|
194
|
+
objects that implement the `__nautobot_type__` interface via the `nautobot_deserialize()` class method.
|
|
195
|
+
"""
|
|
196
|
+
if "__nautobot_type__" in data:
|
|
197
|
+
qual_name = data.pop("__nautobot_type__")
|
|
198
|
+
logger.debug("Performing nautobot deserialization for type %s", qual_name)
|
|
199
|
+
cls = import_string(qual_name) # fully qualified dotted import path
|
|
200
|
+
if cls:
|
|
201
|
+
return SimpleLazyObject(lambda: cls.objects.get(id=data["id"]))
|
|
202
|
+
else:
|
|
203
|
+
raise TypeError(f"Unable to import {qual_name} during nautobot deserialization")
|
|
204
|
+
else:
|
|
205
|
+
return data
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
# Encoder function
|
|
209
|
+
def _dumps(obj):
|
|
210
|
+
return json.dumps(obj, cls=NautobotKombuJSONEncoder, ensure_ascii=False)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
# Decoder function
|
|
214
|
+
def _loads(obj):
|
|
215
|
+
return json.loads(obj, object_hook=nautobot_kombu_json_loads_hook)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
# Register the custom serialization type
|
|
219
|
+
register("nautobot_json", _dumps, _loads, content_type="application/x-nautobot-json", content_encoding="utf-8")
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
#
|
|
223
|
+
# nautobot_task
|
|
224
|
+
#
|
|
225
|
+
# By exposing `shared_task` within our own namespace, we leave the door open to
|
|
226
|
+
# extending and expanding the usage and meaning of shared_task without having
|
|
227
|
+
# to undergo further refactoring of task's decorators. We could also transparently
|
|
228
|
+
# swap out shared_task to a custom base task.
|
|
229
|
+
#
|
|
230
|
+
|
|
231
|
+
nautobot_task = shared_task
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
registry["jobs"] = {}
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
def register_jobs(*jobs):
|
|
238
|
+
"""
|
|
239
|
+
Method to register jobs - with Celery in Nautobot 2.0 through 2.2.2, with Nautobot itself in 2.2.3 and later.
|
|
240
|
+
"""
|
|
241
|
+
for job in jobs:
|
|
242
|
+
if job.class_path not in registry["jobs"]:
|
|
243
|
+
registry["jobs"][job.class_path] = job
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
|
|
3
|
+
from django.db import models
|
|
4
|
+
from rest_framework.utils.encoders import JSONEncoder
|
|
5
|
+
|
|
6
|
+
logger = logging.getLogger(__name__)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class NautobotKombuJSONEncoder(JSONEncoder):
|
|
10
|
+
"""
|
|
11
|
+
Custom json encoder based on restframework's JSONEncoder that serializes objects that implement
|
|
12
|
+
the `nautobot_serialize()` method via the `__nautobot_type__` interface. This is useful
|
|
13
|
+
in passing special objects to and from Celery tasks.
|
|
14
|
+
|
|
15
|
+
This pattern should generally be avoided by passing pointers to persisted objects to the
|
|
16
|
+
Celery tasks and retrieving them from within the task execution. While this is always possible
|
|
17
|
+
for model instances (which covers 99% of use cases), for rare instances where it does not,
|
|
18
|
+
and the actual object must be passed, this pattern allows for encoding and decoding
|
|
19
|
+
of such objects.
|
|
20
|
+
|
|
21
|
+
It requires a conforming class to implement the instance method `nautobot_serialize()` which
|
|
22
|
+
returns a json serializable dictionary of the object representation. The class must also implement
|
|
23
|
+
the `nautobot_deserialize()` class method which takes the dictionary representation and returns
|
|
24
|
+
an actual instance of the class.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
def default(self, obj):
|
|
28
|
+
# Import here to avoid django.core.exceptions.ImproperlyConfigured Error.
|
|
29
|
+
# Core App is not set up yet if we import this at the top of the file.
|
|
30
|
+
from nautobot.core.models.managers import TagsManager
|
|
31
|
+
|
|
32
|
+
if isinstance(obj, models.Model):
|
|
33
|
+
cls = obj.__class__
|
|
34
|
+
module = cls.__module__
|
|
35
|
+
qual_name = ".".join([module, cls.__qualname__]) # fully qualified dotted import path
|
|
36
|
+
logger.debug("Performing nautobot serialization on %s for type %s", obj, qual_name)
|
|
37
|
+
data = {
|
|
38
|
+
"id": obj.id,
|
|
39
|
+
"__nautobot_type__": qual_name,
|
|
40
|
+
# TODO: change to natural key to provide additional context if object is deleted from the db
|
|
41
|
+
"display": getattr(obj, "display", str(obj)),
|
|
42
|
+
}
|
|
43
|
+
return data
|
|
44
|
+
|
|
45
|
+
elif isinstance(obj, set):
|
|
46
|
+
# Convert a set to a list for passing to and from a task
|
|
47
|
+
return list(obj)
|
|
48
|
+
elif isinstance(obj, TagsManager):
|
|
49
|
+
obj = obj.values_list("id", flat=True)
|
|
50
|
+
return obj
|
|
51
|
+
elif isinstance(obj, Exception):
|
|
52
|
+
# JobResult.result uses NautobotKombuJSONEncoder as an encoder and expects a JSONSerializable object,
|
|
53
|
+
# although an exception, such as a RuntimeException, can be supplied as the obj.
|
|
54
|
+
return f"{obj.__class__.__name__}: {obj}"
|
|
55
|
+
else:
|
|
56
|
+
return super().default(obj)
|