nautobot 2.4.20__py3-none-any.whl → 2.4.21__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. nautobot/circuits/templates/circuits/circuit.html +1 -1
  2. nautobot/circuits/templates/circuits/circuittermination.html +1 -1
  3. nautobot/circuits/templates/circuits/circuittype.html +1 -1
  4. nautobot/circuits/templates/circuits/providernetwork.html +1 -1
  5. nautobot/core/cli/migrate_deprecated_templates.py +200 -0
  6. nautobot/core/jobs/__init__.py +2 -1
  7. nautobot/core/jobs/groups.py +31 -1
  8. nautobot/core/models/tree_queries.py +10 -5
  9. nautobot/core/signals.py +12 -1
  10. nautobot/core/templates/components/panel/panel.html +1 -1
  11. nautobot/core/templates/inc/image_attachments.html +2 -1
  12. nautobot/core/templatetags/helpers.py +22 -0
  13. nautobot/core/tests/runner.py +3 -0
  14. nautobot/core/tests/test_cli.py +40 -0
  15. nautobot/core/tests/test_forms.py +41 -0
  16. nautobot/core/tests/test_jobs.py +75 -1
  17. nautobot/core/tests/test_tree_queries.py +14 -1
  18. nautobot/core/ui/object_detail.py +41 -5
  19. nautobot/core/utils/filtering.py +11 -9
  20. nautobot/core/views/generic.py +3 -3
  21. nautobot/dcim/models/device_components.py +81 -68
  22. nautobot/dcim/templates/dcim/device/config.html +1 -1
  23. nautobot/dcim/templates/dcim/device/consoleports.html +1 -1
  24. nautobot/dcim/templates/dcim/device/consoleserverports.html +1 -1
  25. nautobot/dcim/templates/dcim/device/devicebays.html +1 -1
  26. nautobot/dcim/templates/dcim/device/frontports.html +1 -1
  27. nautobot/dcim/templates/dcim/device/interfaces.html +1 -1
  28. nautobot/dcim/templates/dcim/device/inventory.html +1 -1
  29. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +1 -1
  30. nautobot/dcim/templates/dcim/device/modulebays.html +1 -1
  31. nautobot/dcim/templates/dcim/device/poweroutlets.html +1 -1
  32. nautobot/dcim/templates/dcim/device/powerports.html +1 -1
  33. nautobot/dcim/templates/dcim/device/rearports.html +1 -1
  34. nautobot/dcim/templates/dcim/device/status.html +1 -1
  35. nautobot/dcim/templates/dcim/device/wireless.html +1 -1
  36. nautobot/dcim/templates/dcim/device.html +1 -1
  37. nautobot/dcim/templates/dcim/device_interface_delete.html +1 -1
  38. nautobot/dcim/templates/dcim/devicetype.html +1 -1
  39. nautobot/dcim/templates/dcim/footer_convert_to_contact_or_team_record.html +14 -0
  40. nautobot/dcim/templates/dcim/interface_bulk_delete.html +1 -1
  41. nautobot/dcim/templates/dcim/inventoryitem_bulk_delete.html +1 -1
  42. nautobot/dcim/templates/dcim/location_retrieve.html +1 -242
  43. nautobot/dcim/templates/dcim/modulefamily_retrieve.html +1 -1
  44. nautobot/dcim/templates/dcim/powerfeed.html +1 -1
  45. nautobot/dcim/templates/dcim/powerpanel.html +1 -1
  46. nautobot/dcim/templates/dcim/virtualchassis.html +1 -1
  47. nautobot/dcim/tests/test_models.py +43 -3
  48. nautobot/dcim/tests/test_views.py +52 -21
  49. nautobot/dcim/views.py +203 -87
  50. nautobot/extras/api/views.py +9 -1
  51. nautobot/extras/filters/customfields.py +9 -3
  52. nautobot/extras/models/groups.py +42 -5
  53. nautobot/extras/signals.py +20 -19
  54. nautobot/extras/tables.py +31 -2
  55. nautobot/extras/templates/extras/computedfield.html +1 -1
  56. nautobot/extras/templates/extras/configcontext.html +1 -1
  57. nautobot/extras/templates/extras/configcontextschema_validation.html +1 -1
  58. nautobot/extras/templates/extras/customfield.html +1 -1
  59. nautobot/extras/templates/extras/dynamicgroup_retrieve.html +11 -5
  60. nautobot/extras/templates/extras/gitrepository_result.html +0 -2
  61. nautobot/extras/templates/extras/graphqlquery_retrieve.html +1 -96
  62. nautobot/extras/templates/extras/inc/graphqlquery_execute.html +71 -0
  63. nautobot/extras/templates/extras/object_dynamicgroups.html +2 -2
  64. nautobot/extras/templates/extras/secretsgroup.html +1 -1
  65. nautobot/extras/templates/extras/tag.html +1 -1
  66. nautobot/extras/tests/integration/test_dynamicgroups.py +5 -1
  67. nautobot/extras/tests/test_api.py +1 -0
  68. nautobot/extras/tests/test_changelog.py +28 -0
  69. nautobot/extras/tests/test_customfields.py +10 -2
  70. nautobot/extras/tests/test_dynamicgroups.py +37 -1
  71. nautobot/extras/views.py +49 -19
  72. nautobot/ipam/signals.py +71 -0
  73. nautobot/ipam/templates/ipam/prefix_delete.html +1 -1
  74. nautobot/ipam/templates/ipam/service.html +1 -1
  75. nautobot/ipam/templates/ipam/vlan.html +1 -1
  76. nautobot/ipam/templates/ipam/vlan_interfaces.html +1 -1
  77. nautobot/ipam/templates/ipam/vlan_vminterfaces.html +1 -1
  78. nautobot/ipam/tests/test_models.py +42 -0
  79. nautobot/users/templates/users/sessionkey_delete.html +1 -1
  80. nautobot/users/views.py +2 -2
  81. nautobot/virtualization/models.py +1 -68
  82. nautobot/virtualization/templates/virtualization/virtual_machine_vminterface_delete.html +1 -1
  83. nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -1
  84. nautobot/virtualization/tests/test_models.py +42 -3
  85. {nautobot-2.4.20.dist-info → nautobot-2.4.21.dist-info}/METADATA +9 -9
  86. {nautobot-2.4.20.dist-info → nautobot-2.4.21.dist-info}/RECORD +90 -86
  87. nautobot-2.4.21.dist-info/entry_points.txt +4 -0
  88. nautobot-2.4.20.dist-info/entry_points.txt +0 -3
  89. {nautobot-2.4.20.dist-info → nautobot-2.4.21.dist-info}/LICENSE.txt +0 -0
  90. {nautobot-2.4.20.dist-info → nautobot-2.4.21.dist-info}/NOTICE +0 -0
  91. {nautobot-2.4.20.dist-info → nautobot-2.4.21.dist-info}/WHEEL +0 -0
@@ -63,18 +63,18 @@ nautobot/circuits/models.py,sha256=nSMBhRsWd2P8qedIK1pxvd3MiKDp9mHTc-YwrrupgBA,9
63
63
  nautobot/circuits/navigation.py,sha256=tG_KMLsAWUJRKLdxbK5f1Va1CGNp5PLG2ELUqHoZChU,3499
64
64
  nautobot/circuits/signals.py,sha256=tPh4Wuj0vuE0J5lV7MwJ9zPI945s-m9A0EHBJzcrHsU,2220
65
65
  nautobot/circuits/tables.py,sha256=Gzp9xO-icINKUVlsc6xkf7iufXrA6gR9kdUkkbud2oA,4932
66
- nautobot/circuits/templates/circuits/circuit.html,sha256=0uDrM0BVd3xaUKMXDr_6gsFoszwmjp2gt5CfdN1uPnQ,174
66
+ nautobot/circuits/templates/circuits/circuit.html,sha256=4wKInFfKtmfr-sn998jmKTQpUVad4JAZxaKRzh5nsgs,172
67
67
  nautobot/circuits/templates/circuits/circuit_create.html,sha256=uqPBRog1hxHzyRTNpmFX_ZHhHnhtF_qBPVpVfpxuwOw,1668
68
68
  nautobot/circuits/templates/circuits/circuit_edit.html,sha256=iL62fsBWHRl5gAkB77wICuh2UGyckn59F8rnX_derSI,172
69
69
  nautobot/circuits/templates/circuits/circuit_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
70
70
  nautobot/circuits/templates/circuits/circuit_terminations_swap.html,sha256=cIXFCjjtRVwh3TIp7aRflPGYgpqUSRtmzmqaZNVDjG0,1016
71
71
  nautobot/circuits/templates/circuits/circuit_update.html,sha256=CaLhuI28x9Pe7VpipK3cv2BdXhq-wOh7RVBtORggfxc,45
72
- nautobot/circuits/templates/circuits/circuittermination.html,sha256=csUEypPh2c6CMqpIRnKbLoq6TH5gJBybqqzyTfv5IgU,185
72
+ nautobot/circuits/templates/circuits/circuittermination.html,sha256=4wKInFfKtmfr-sn998jmKTQpUVad4JAZxaKRzh5nsgs,172
73
73
  nautobot/circuits/templates/circuits/circuittermination_create.html,sha256=Hd9c9X7Xb7FE5plx-B80hS3Kt0PYqwdUtrhXtnlFJw8,4776
74
74
  nautobot/circuits/templates/circuits/circuittermination_edit.html,sha256=J5eLg3FosqJ4o-bK1ioi2VzaRFYbcZa0sfRu6DsQ8yE,183
75
75
  nautobot/circuits/templates/circuits/circuittermination_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
76
76
  nautobot/circuits/templates/circuits/circuittermination_update.html,sha256=QPkz_eKJ-j1dbD6P91KaVz7qTZ7fgKKNCKmsjapMTrw,56
77
- nautobot/circuits/templates/circuits/circuittype.html,sha256=onRlyqy7KQpGQkuYba7txeXwEPAtR9pLcbA-55ql5oo,178
77
+ nautobot/circuits/templates/circuits/circuittype.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
78
78
  nautobot/circuits/templates/circuits/circuittype_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
79
79
  nautobot/circuits/templates/circuits/inc/circuit_termination.html,sha256=I35NKM1R5NYOaTvh7KQi5bPsPrlz84Sq16kbOojEMwA,3544
80
80
  nautobot/circuits/templates/circuits/inc/circuit_termination_cable_fragment.html,sha256=JucAJCWK_1HKzTBd3ONrLg2feXahTJQUpYVQal8n4CE,2604
@@ -86,7 +86,7 @@ nautobot/circuits/templates/circuits/provider_create.html,sha256=YEGTLvoR9ZsTNf4
86
86
  nautobot/circuits/templates/circuits/provider_edit.html,sha256=9p3Stoly4rD6GVhUlI25cpUl9yhAZDK2r4Jbhg6gYGM,173
87
87
  nautobot/circuits/templates/circuits/provider_retrieve.html,sha256=Ra6lZcs405aC0VV_tVmY7__81yWRS155Yn9iYSMMSlA,45
88
88
  nautobot/circuits/templates/circuits/provider_update.html,sha256=EsYQpPzQC6OcNnYNPXS_8NJtnGa6oWHzCOr8Q1z2wSs,46
89
- nautobot/circuits/templates/circuits/providernetwork.html,sha256=K42IWith8UtxGdACAIH7elYM05kMwzDUKpktWqGYeQQ,182
89
+ nautobot/circuits/templates/circuits/providernetwork.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
90
90
  nautobot/circuits/templates/circuits/providernetwork_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
91
91
  nautobot/circuits/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
92
  nautobot/circuits/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -161,6 +161,7 @@ nautobot/core/checks.py,sha256=-9PkB2Pmg3d7II0IhKhodfnsmmH2r8Um_FAWN6WHfCE,4587
161
161
  nautobot/core/choices.py,sha256=a04is10Xy0pkyQ5EbGPKQMWnDtd65IsvrY7u-EQHWZg,6698
162
162
  nautobot/core/cli/__init__.py,sha256=VZEIGaam3C3HDYv4WJT-CrGJRtr8SiddlTb8nQgt60g,12608
163
163
  nautobot/core/cli/__main__.py,sha256=tYe4q7TQEYS_jxpxmgnEZSIhFhFAUHXkeKuSG6dni8E,43
164
+ nautobot/core/cli/migrate_deprecated_templates.py,sha256=JCTH-qCINHg6F6RXEljWtFBF02VXhlKkcEP_Olq3k3o,8856
164
165
  nautobot/core/constants.py,sha256=QnSr58K0Um_ST8WpjzGI2OjstnElJDfsBeB56-2Qo3Q,5168
165
166
  nautobot/core/context_processors.py,sha256=QwIs6A-VDSTBkVa_RuTpxolH3kzQrVRw613wjxBOSks,1408
166
167
  nautobot/core/events/__init__.py,sha256=ennvZ0ijRSmfAeifsPEhOQ0_YEl-5gVmR5daYsB6T50,5129
@@ -184,10 +185,10 @@ nautobot/core/graphql/schema.py,sha256=Gv977FMHZIo6rBnBImwc-fwN3Es4NHuHgRH-FhE8G
184
185
  nautobot/core/graphql/schema_init.py,sha256=p5z7usFxshmEII1akimwaXDRTqMtpAFcFn4F64dIWFA,319
185
186
  nautobot/core/graphql/types.py,sha256=_I-J0S5HFUmG4Hwt2sIbAoSllERZRQl-uoR6MwI7V6E,1547
186
187
  nautobot/core/graphql/utils.py,sha256=cfRHdMSXbBCFq4HcNUOvZ5ibezUa-k9EFh7UcExRq4Y,4740
187
- nautobot/core/jobs/__init__.py,sha256=r1pPYgZApJkqHjMInQsbRFW69conbjuIAEaYq8ReGSo,17105
188
+ nautobot/core/jobs/__init__.py,sha256=9vVWZce5T4xt-wITfrOOY1iumYR30M-_gURgyv3Dk3U,17195
188
189
  nautobot/core/jobs/bulk_actions.py,sha256=0e4HgbgBjnLHWox1vzJ0YFLxA56FfJTg1_mmPMasnIs,11496
189
190
  nautobot/core/jobs/cleanup.py,sha256=dPdZVSNh19HvS6K0TCNC-B8-ZNy3jWy7q3fbaqodytI,6627
190
- nautobot/core/jobs/groups.py,sha256=GMcIvRmfJN0Lwa90KeR1mFGqvpg8LXbQFCVJ4Y4f9Lc,1408
191
+ nautobot/core/jobs/groups.py,sha256=_vL5bdWXUoWtEGSlQYLbNGZ7JYwfgGAZViYRfePWrKE,2790
191
192
  nautobot/core/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
192
193
  nautobot/core/management/commands/__init__.py,sha256=rzxYmNIH9WLuO6OE-zOnOk6ojQGK-EjoRcT1vKWO60M,696
193
194
  nautobot/core/management/commands/audit_dynamic_groups.py,sha256=_NM6RCy6IxhvLsS4I3fXKGCju39Hwbi5Meyepa-YIU4,1967
@@ -214,14 +215,14 @@ nautobot/core/models/name_color_content_types.py,sha256=v4YkhX-mBxqSejNqlF8YHnJk
214
215
  nautobot/core/models/ordering.py,sha256=zSCbYX68mkfh1k6Lhv4cs1dMKC9a_cl20pS8pw-WfZg,2768
215
216
  nautobot/core/models/query_functions.py,sha256=OSAVozhOex8C38TWiV_j3VqDGDMlouIDlN2IBaUw518,8483
216
217
  nautobot/core/models/querysets.py,sha256=ArkPbvnOpj0BXGxvQ1pJwa1PmVYHT4qJizus-NEHbFo,8232
217
- nautobot/core/models/tree_queries.py,sha256=EwFD12ZuaQXrtuG3mKHZrzKNKOGklTERR_SmOfwaqIs,6388
218
+ nautobot/core/models/tree_queries.py,sha256=YBGgM8Ki6bPzqWASIRI179Uqpf6HGWzeadEWSRxozzE,6355
218
219
  nautobot/core/models/utils.py,sha256=EQYCWpEnWyYvXDWQhqoxkZOodK5JvR7TPxNGGVgGikg,10788
219
220
  nautobot/core/models/validators.py,sha256=ckZuqwAjxFb1b_X5t0j3oPqmDv2TvDsYC-OJKOMNoWY,2089
220
221
  nautobot/core/releases.py,sha256=fqbWLBaYI8rlxfCGDhOaUCpbHAbFHGIsNX9DWgw0XeE,1214
221
222
  nautobot/core/settings.py,sha256=msWmpcSryzFyEp4mmpbMjoDFdlWSt1am9ZDpZyZunWc,51185
222
223
  nautobot/core/settings.yaml,sha256=tGaN8M9I7Zh2fbTs9ERrGjyU-kuLkyKd1x8G1MDHW_4,88469
223
224
  nautobot/core/settings_funcs.py,sha256=QQ_olczPhH0r6yT6qNZ6YAqTEK06ZkhemprvAHv9PR0,6579
224
- nautobot/core/signals.py,sha256=oteF3tAsHnFEPsNG1bp1SGJA0fIzsKIDEO9wF5Wq_N0,2853
225
+ nautobot/core/signals.py,sha256=2fLrxqk8OM3YfG8dkFkv_f0ddRfjjz7IDUY9B470s2c,3330
225
226
  nautobot/core/tables.py,sha256=JRZgwg_6W6Y--LJjGJncBMVs9UNMT0LwaUxyWDelEDM,33269
226
227
  nautobot/core/tasks.py,sha256=eitDpGSum6DHxeI7lCm_sUMHEaOC1SFx0TFcmC8txow,2102
227
228
  nautobot/core/templates/403.html,sha256=J-47-TSCkhxcsIlXYQDZmXkZswayCkA_AUpJALtGMPE,219
@@ -277,7 +278,7 @@ nautobot/core/templates/components/panel/footer_contacts_table.html,sha256=mE46g
277
278
  nautobot/core/templates/components/panel/footer_content_table.html,sha256=1g_gIhTSQMOrToUQ5DW4aqWmQQwFUudlH9G8xU-55Js,1536
278
279
  nautobot/core/templates/components/panel/grouping_toggle.html,sha256=TKEeOO7IWTPGsyM8TGM-RV9YEsE4_pExXEtHu3auoI8,480
279
280
  nautobot/core/templates/components/panel/header_extra_content_table.html,sha256=2D_EFxCtMnlNVXafgyq8MJbxKge8QBa0UJhZGHEZS5I,900
280
- nautobot/core/templates/components/panel/panel.html,sha256=BqWnL97ZapUbpaInBa27oeXPQC093gIjI_qykb9Wi7k,630
281
+ nautobot/core/templates/components/panel/panel.html,sha256=WeYTHmvRnEuH_x0OI5f7AGnKNrCl_ynjH6UGStU2VMc,655
281
282
  nautobot/core/templates/components/panel/stats_panel_body.html,sha256=eo7CINkcug9WdbVzaDrNZzlc0rx05zTaoO56Wn0wQfs,362
282
283
  nautobot/core/templates/components/tab/content_wrapper.html,sha256=YhFjp-9Dzt_kLh8lCxBliYeWkNIYDuveg--WNT1Jbd8,176
283
284
  nautobot/core/templates/components/tab/label_wrapper.html,sha256=eg06KjQutp-e-21zPL0J-yHXf-J66spk8krRfsSYqGA,292
@@ -317,7 +318,7 @@ nautobot/core/templates/inc/custom_fields_panel.html,sha256=sidEQ07YfuRx2YgE8aVl
317
318
  nautobot/core/templates/inc/dynamic_groups_panel.html,sha256=7xZVkNzdHIduaOt4vSNAnNyP5Bh0zKS2uh3bL3XrKOw,474
318
319
  nautobot/core/templates/inc/extras_features_edit_form_fields.html,sha256=Rh8ISQfZNm0kPBZyeZc7oNJa5rHoGwMtyZXtRuzMOww,1363
319
320
  nautobot/core/templates/inc/footer.html,sha256=ciPy4mQbtWfgIIgfUHCjlX-9_UBpEGcgpgjP994Sues,2998
320
- nautobot/core/templates/inc/image_attachments.html,sha256=zLdLoLLh-4gDP1eo7rv2SmDb3bJKsmnXB7Z5SyOEJxQ,1567
321
+ nautobot/core/templates/inc/image_attachments.html,sha256=mv2dIccfz9MYCg2EX2CgOeOM54PIVUMNFyRAg0ATvKU,1673
321
322
  nautobot/core/templates/inc/javascript.html,sha256=cEo-Xfn5CRguxd9U7KTcp3NZSxx5VbR45tg61WaiwOw,3113
322
323
  nautobot/core/templates/inc/media.html,sha256=LUlKSOdA5v0nerssi-RTfukXSJJu8GWnA3zZBvMfVS4,3609
323
324
  nautobot/core/templates/inc/modal.html,sha256=O1MVMJ8oH2t8NQ3S3NiqGI-y4tSbxhNSCKvCH8oLQ1E,750
@@ -372,7 +373,7 @@ nautobot/core/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
372
373
  nautobot/core/templatetags/bootstrapped_goodies_tags.py,sha256=qDcDOHBwHPtekwh1HfyiK0n6s_ONwEQlY2NXaoRxII0,4121
373
374
  nautobot/core/templatetags/buttons.py,sha256=6ifSQhegS5denJVpklno0jcIZoUdgAxy1d3MV65E3m0,16749
374
375
  nautobot/core/templatetags/form_helpers.py,sha256=3duGYrTIEWu67HGQSlr_xaP6yNL-3Yf5HLntuaSdYCc,1690
375
- nautobot/core/templatetags/helpers.py,sha256=qgn_EZWT027u-yVL3GfbOzhnYupF6G07TBfCKEG_Zp8,46770
376
+ nautobot/core/templatetags/helpers.py,sha256=yFHxqXr56X-yLL2ZpTb5eLOpFd6H7Vhwi7HeE_T8j0g,47510
376
377
  nautobot/core/templatetags/netutils.py,sha256=P7SeV9KqWtlgZiFy_E1qxqaJHv4Xg4ObiuFzYiHhP4I,375
377
378
  nautobot/core/templatetags/perms.py,sha256=rItjknijsZW83jXkmPezGXwzPyJc3VdAYlLJy0SIhrE,665
378
379
  nautobot/core/templatetags/ui_framework.py,sha256=NC3dBtdiJZBCv9ZU7orYczUT2qtFVxz4Y2C788R9JN8,4804
@@ -401,23 +402,24 @@ nautobot/core/tests/integration/test_swagger.py,sha256=Km72077DJMBkGFa5dmH57OK51
401
402
  nautobot/core/tests/integration/test_theme.py,sha256=QD8pYFvyj7rxJwtjEBtY_NADEjdUHxzhfWTQzM9-1xQ,2760
402
403
  nautobot/core/tests/integration/test_view_authentication.py,sha256=zL_9_N4PUznFs44aJ_6j9RZQk7le5r2NdqQ6xmuC6jo,3121
403
404
  nautobot/core/tests/nautobot_config.py,sha256=PpdzBg_pEDsnonPR0Mi8K8fkwm8UtrKWc15GNP8u2pw,12828
404
- nautobot/core/tests/runner.py,sha256=sE6iGFaV3x6gTzjwjirvDr77t4UbrSljAWpLj5FGWps,9773
405
+ nautobot/core/tests/runner.py,sha256=0m29HOmqaUPPpbNKMLiEHT5aWn2cWQtP8FPKBOaV2Fs,9966
405
406
  nautobot/core/tests/test_api.py,sha256=MZNkmWcU11l4f7Yp54lQXXFnziXkRNQrWGgoilNFNq0,46269
406
407
  nautobot/core/tests/test_authentication.py,sha256=sKNCd3nkRDXNcZXu8DUPVk6_otUs6rx1rgmjDWXK7ho,28161
407
408
  nautobot/core/tests/test_breadcrumbs.py,sha256=IIggEajyR6tzYGbN0JRSD2rMwlj9I8k8VkouyFBi_I8,17679
408
409
  nautobot/core/tests/test_celery.py,sha256=dCSzVui-nbhHvTSoig8l3mVsEZIGxfWRv-U6lqSQfmk,203
409
410
  nautobot/core/tests/test_checks.py,sha256=yxZu2ZxM778RWXiN4s9lH0hLfz730MFLDBuPq5NK2ig,1697
410
411
  nautobot/core/tests/test_choices.py,sha256=XrzM3lX3ubVxJ3ugHGaovBBWhIDG3c_HFx1ASJS7Lhk,916
412
+ nautobot/core/tests/test_cli.py,sha256=8g9JFZ5ud9vCJ1sJRjIDpXrywsSN4YSoEyc5feG_rEg,1575
411
413
  nautobot/core/tests/test_commands.py,sha256=tHlruCxw3iYOxxPWLR0B-8UgjxjTZebE9ChaxhprwRk,3230
412
414
  nautobot/core/tests/test_config.py,sha256=4kN1-yd0Y5pl5RWhpkdm3-Xt1RNXPMkwWW2i_LMTfzw,4816
413
415
  nautobot/core/tests/test_csv.py,sha256=obK5rImQxt4HHRqa9GUm8TDYLk6k5UJ0l7qqlAsyhJU,19708
414
416
  nautobot/core/tests/test_events.py,sha256=1uV2RF2yEGEuOmXwtPB8K1oQTmg6-76gSVGA6egqJCg,12088
415
417
  nautobot/core/tests/test_factory.py,sha256=-e4MBBgRWbYFOi0ae1Znm8JWTiDCcFY9YGVzJpPiN8A,1785
416
418
  nautobot/core/tests/test_filters.py,sha256=WWjxQPk_CTJGKUHbeQQdVJ91iyfWO1l6ZFynlRyJ3Lw,68742
417
- nautobot/core/tests/test_forms.py,sha256=sVB7p1v770H8RN8NCiCFM16x2O_WzHz2wVwsx6YLR3c,35523
419
+ nautobot/core/tests/test_forms.py,sha256=GL6kQyHyrrgMbdJlC0YkYu9ugqZWoT87Q-X4BsVbfz8,37718
418
420
  nautobot/core/tests/test_graphql.py,sha256=6epvCjMy2FdR7byLViShbeo6JHxUZTL3aH5Gf_NsY3Q,109738
419
421
  nautobot/core/tests/test_jinja_filters.py,sha256=y5MqljKR0SyfVP-yXdy6OrcID0_3aURfDoUg-zme5Jc,6088
420
- nautobot/core/tests/test_jobs.py,sha256=6J9g71OGP9oTRoZ11fuojyrBdWzmCL-hBEuFBFtpG9s,58076
422
+ nautobot/core/tests/test_jobs.py,sha256=wH-b885VULWVK-GQJiocJ72l6cGvC-oMRNF3-y92Ebg,61127
421
423
  nautobot/core/tests/test_logging.py,sha256=rmuKmhWEac2HBZMn27GA9c9LEjFshzwTDmXnXukWXvk,3043
422
424
  nautobot/core/tests/test_managers.py,sha256=31PqBV_T83ZLoYxpKr-Zo0wD9MC366l-OBrjfLnaTOM,5653
423
425
  nautobot/core/tests/test_models.py,sha256=8YpWxVl77pSrDzx9MTaOsKOto0AFFUKVBnClXgcJNQc,9521
@@ -435,7 +437,7 @@ nautobot/core/tests/test_templatetags_helpers.py,sha256=eR1yKLRhIv1ngY88EEtN3x27
435
437
  nautobot/core/tests/test_templatetags_netutils.py,sha256=GSjUPovPDpP1x5PTluZEYaqSTWLUAvVclSXdeBn_uiE,2561
436
438
  nautobot/core/tests/test_templatetags_ui_framework.py,sha256=Gj7BmmFHOQppKlmIKGWeHvjj9ONs8t_kJwjYQbxabDk,5008
437
439
  nautobot/core/tests/test_titles.py,sha256=bNysqqQ2Y2BptLvU9WOoCoLlfyHjxn1KwIL_y8qS25I,7604
438
- nautobot/core/tests/test_tree_queries.py,sha256=fWap4Ih192AYgCS1majU1CA4Cs2InHQ-SKF8oXM-2kY,4214
440
+ nautobot/core/tests/test_tree_queries.py,sha256=R5zSITXmg5hhHAQpSQZlSIdho9ugW6OadUoUx-kLxMc,4959
439
441
  nautobot/core/tests/test_ui.py,sha256=C0svwSdXkx6hchRcoNOLEqU4i9mGQYxg6y2V5sVMT7o,16248
440
442
  nautobot/core/tests/test_utils.py,sha256=LlHrLm6ciOQAsoFsNVIgKCvRW8JivZ3gD3PQNWCW4g8,45821
441
443
  nautobot/core/tests/test_views.py,sha256=YgK5pn2nIYVGZ9IDYkAEih6-R_j0kQcJr2por5bZVTM,38427
@@ -448,7 +450,7 @@ nautobot/core/ui/bulk_buttons.py,sha256=qzpJ3h-u36X3Xh18ecVfekbrh4Pf-bJ-dqKbKB9j
448
450
  nautobot/core/ui/choices.py,sha256=oTIGzv5rH_xxqhZ0GVBh_tWdkRsrMcV0OPQUNQn65n8,1392
449
451
  nautobot/core/ui/homepage.py,sha256=duhnoDnjL2u_67QhAwOkI_4797W9ycKyF9fVL8b8P00,5256
450
452
  nautobot/core/ui/nav.py,sha256=k5HNWT2qpm89yCf_ZY8EzjiTeorAW0KGBexWE0sBslI,9811
451
- nautobot/core/ui/object_detail.py,sha256=APqVc5n4DFP_T-J01Jl-W1FCgxSX--xgXg19HI7BszA,94199
453
+ nautobot/core/ui/object_detail.py,sha256=SIHAVDVyel_sG1uAZ6todn_O-CQxucwuGx2egbmoWyE,95757
452
454
  nautobot/core/ui/titles.py,sha256=f3zT88pJQm82va2PHNBDx8VlTe-VgEv9pdVqXxE18_I,5250
453
455
  nautobot/core/ui/utils.py,sha256=lKQ7m73Z_bc5FDPP0Yjcu3prCMP-AB-05rNeCalCYYA,2036
454
456
  nautobot/core/urls.py,sha256=-crIwkn1zkCXFi9_GShJx_JxPCC-skGWc_I_2hmyjXg,4236
@@ -457,7 +459,7 @@ nautobot/core/utils/color.py,sha256=VST2TWSzTPIr4uf6iJQgI9Df8XFEmfEldtpFkCyDyNA,
457
459
  nautobot/core/utils/config.py,sha256=J5jTid2hqcZYrkrUakSR_mo9ffaLiUVti2ukBwb_iLQ,1702
458
460
  nautobot/core/utils/data.py,sha256=jj4PMOHqXFG2L8OO1HvtFfZ0-kHacThIjkgdW8pRlOc,5162
459
461
  nautobot/core/utils/deprecation.py,sha256=svWaxVGyYe10kirc3hzrJetWI0OtFNn0JAtwNjBfw1k,3021
460
- nautobot/core/utils/filtering.py,sha256=5RSDX5p8cylw4mpMFQQxI-zj07WIr-OTPhnh0X92-fA,7911
462
+ nautobot/core/utils/filtering.py,sha256=fkIB8tcVBJj81VNS5vkpR5jSvANAgf4bLBm_J-Dmpvo,7964
461
463
  nautobot/core/utils/git.py,sha256=sP2WmUFoQQ1lhTpIGtx4Kdb8k9aVrTz47NaNQXNV1Gg,10105
462
464
  nautobot/core/utils/logging.py,sha256=7jlZgHnYJOTyE5oIeTzQJx1MkRf771G6fSEZ9EaAw9k,2071
463
465
  nautobot/core/utils/lookup.py,sha256=lIBDptqxjSZouV1PFM1ZrSL_BAl4YnY3JEoYOYCudPU,18603
@@ -468,7 +470,7 @@ nautobot/core/utils/permissions.py,sha256=KFtDvCm3aS4qCmLCKvOGKGsSSBlv2xMW8IQ4ZR
468
470
  nautobot/core/utils/querysets.py,sha256=Fsftouekyf8POFNQfDJhLBVLbJr2dtpZsleEFFtpzYE,2517
469
471
  nautobot/core/utils/requests.py,sha256=IPI_zCJXAfucnRubnsUE1YRghVnKfK238qHx1mZ2gpY,10318
470
472
  nautobot/core/views/__init__.py,sha256=crfYo3RE9uD0H7EeIaKO7uDIHZRqULkHtlxPbqLiaos,24220
471
- nautobot/core/views/generic.py,sha256=Wtdr68tdI1v61A1XveMbY_WmXWxMGKGSeARNtXC1PMY,67223
473
+ nautobot/core/views/generic.py,sha256=gysktVxctpirbEgeiZ4sGciOroLRd8ze0sF9iVqVwQ4,67227
472
474
  nautobot/core/views/mixins.py,sha256=ULqsMF5Uv2SKmGCYjlTPzuH2LCG0xsX_mzkWu3lDzpQ,65121
473
475
  nautobot/core/views/paginator.py,sha256=EXGMQBOHNbczuSIR-2lsL2O-dRAV5R2qpjqtuV90O9E,2694
474
476
  nautobot/core/views/renderers.py,sha256=CXBgQzXhy_0J1B4k0cmqu3vUTZh1qePWLeOMLjfDlks,18778
@@ -580,7 +582,7 @@ nautobot/dcim/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
580
582
  nautobot/dcim/models/__init__.py,sha256=e_wjTrFPKOWfhLGpODXzythmD7q9fEEp4WWGfJpy6DI,2264
581
583
  nautobot/dcim/models/cables.py,sha256=3lnM-CJ4iDecLSVtyuykeuckhQG_Dhqsm3CwVe7_zhA,20071
582
584
  nautobot/dcim/models/device_component_templates.py,sha256=GQzs81oJRncv3WtUyu7c9NAxFcKjNReI7F-u34zrBm8,18834
583
- nautobot/dcim/models/device_components.py,sha256=LS2Bc4_8ZsrAzxggEJkApvnMxS8MrQr5o1M2fThJQBA,48308
585
+ nautobot/dcim/models/device_components.py,sha256=VLd2Xye-I0S_2k98vcmRJoSMnQXdO2umIxMuu4iTUmA,49091
584
586
  nautobot/dcim/models/devices.py,sha256=ZjbcGbJDzLOYNkau8WXO7EURuNDkQQ4mwuCvLVWpQP8,80707
585
587
  nautobot/dcim/models/locations.py,sha256=ZbX5sAy3UM9N-w7o25jf9AUMSJJ_qac2MKteRU1mcGw,13582
586
588
  nautobot/dcim/models/power.py,sha256=LCvk4K6O25S7rb7QNUdW5UiE344gC7er1usN-kbJhRU,13242
@@ -614,27 +616,27 @@ nautobot/dcim/templates/dcim/controller_wirelessnetworks.html,sha256=wAGvlQxw6gu
614
616
  nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html,sha256=aXJ8VfYbApGOIQEoa299HVgUBhi86wXtHq91Oq_9Qfw,6507
615
617
  nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
616
618
  nautobot/dcim/templates/dcim/device/base.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
617
- nautobot/dcim/templates/dcim/device/config.html,sha256=oggUZnjHHu7kbVS8qUU80WAFFdE4wjyZ2hZtV4LLJV8,2352
618
- nautobot/dcim/templates/dcim/device/consoleports.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
619
- nautobot/dcim/templates/dcim/device/consoleserverports.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
620
- nautobot/dcim/templates/dcim/device/devicebays.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
621
- nautobot/dcim/templates/dcim/device/frontports.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
622
- nautobot/dcim/templates/dcim/device/interfaces.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
623
- nautobot/dcim/templates/dcim/device/inventory.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
624
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html,sha256=Kp_zY4ucFLe63TTB1fjhIVcHhQNpKkCchdJP0AGN-FE,7048
625
- nautobot/dcim/templates/dcim/device/modulebays.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
626
- nautobot/dcim/templates/dcim/device/poweroutlets.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
627
- nautobot/dcim/templates/dcim/device/powerports.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
628
- nautobot/dcim/templates/dcim/device/rearports.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
629
- nautobot/dcim/templates/dcim/device/status.html,sha256=0aQl9fUP-zk_UXqE_flJgrLYWbZDhaiIxgCH8HxfL6o,6466
630
- nautobot/dcim/templates/dcim/device/wireless.html,sha256=S5rkmaIeS3eKEYwwXZFOxjVkV3CpPy5EQfH1dyUvKhA,165
631
- nautobot/dcim/templates/dcim/device.html,sha256=9W_qiWCJF4s9xxuGAvJeJbuU0eB8gN_fZy_FH9kQG-A,207
619
+ nautobot/dcim/templates/dcim/device/config.html,sha256=vS2SUS458CbMwVm6H8OZEaiEaifFCvmjnea2RtaT0Ts,2359
620
+ nautobot/dcim/templates/dcim/device/consoleports.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
621
+ nautobot/dcim/templates/dcim/device/consoleserverports.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
622
+ nautobot/dcim/templates/dcim/device/devicebays.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
623
+ nautobot/dcim/templates/dcim/device/frontports.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
624
+ nautobot/dcim/templates/dcim/device/interfaces.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
625
+ nautobot/dcim/templates/dcim/device/inventory.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
626
+ nautobot/dcim/templates/dcim/device/lldp_neighbors.html,sha256=fiV5n7m2RguO8-uiNz-9BGG6yPxZvK7TQioPs1fN4_k,7055
627
+ nautobot/dcim/templates/dcim/device/modulebays.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
628
+ nautobot/dcim/templates/dcim/device/poweroutlets.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
629
+ nautobot/dcim/templates/dcim/device/powerports.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
630
+ nautobot/dcim/templates/dcim/device/rearports.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
631
+ nautobot/dcim/templates/dcim/device/status.html,sha256=tcKRT64HWpxY2wzGJe_Wb9eTQf9DA6DWlksRQfg4WrE,6473
632
+ nautobot/dcim/templates/dcim/device/wireless.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
633
+ nautobot/dcim/templates/dcim/device.html,sha256=OgflsbrJVv1_Q3McGS7BeCiTdO6a5eVWr3bDEvhDnuI,214
632
634
  nautobot/dcim/templates/dcim/device_component.html,sha256=-pVrsbW1JCLMIJ03D75UvHsoty4VfuQ879UAYBTjzno,64
633
635
  nautobot/dcim/templates/dcim/device_component_add.html,sha256=zq31WrpnDD4cEqyQserW8ARkFjlaIt2qntv4SdDwaTE,1615
634
636
  nautobot/dcim/templates/dcim/device_component_edit.html,sha256=Lf15JwrB54I5M-UXa_E46XRmpt4He5qXK9IRaKVicBc,153
635
637
  nautobot/dcim/templates/dcim/device_create.html,sha256=y_n8utmfO__BgrXUWurJ0mOWEh5ptKg82JcKyRsOfNI,11424
636
638
  nautobot/dcim/templates/dcim/device_edit.html,sha256=az8UQI7CXuIJUTlKhx4tmiBXCHQ7L92tccgOPJdLJ8A,167
637
- nautobot/dcim/templates/dcim/device_interface_delete.html,sha256=xDZc8rVU50rPQ-QX23bn3xw_g74eGXu-mMY1Symnag0,149
639
+ nautobot/dcim/templates/dcim/device_interface_delete.html,sha256=qcYWkWKZEapcPmcfhvPmHYgCozKmvA4a3DIqWB0vCzs,150
638
640
  nautobot/dcim/templates/dcim/device_list.html,sha256=WpYPgIkGo_77Lr_pP_STubayLxTDyCMHgYwz2VTA5kk,2564
639
641
  nautobot/dcim/templates/dcim/devicebay.html,sha256=0L0Q1d1VpjRdi_dPw-VziVGow7EnFXk_BNH3QXTSB1U,1709
640
642
  nautobot/dcim/templates/dcim/devicebay_delete.html,sha256=L4IRWTgwldTlYoz3SsVlZF4yvFx7fhSSc0mWi_EDaik,281
@@ -643,12 +645,13 @@ nautobot/dcim/templates/dcim/devicebay_populate.html,sha256=Wl7yJmJCkQF2Fcfry6n9
643
645
  nautobot/dcim/templates/dcim/devicefamily_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
644
646
  nautobot/dcim/templates/dcim/deviceredundancygroup_create.html,sha256=c9gJ_c05C-4KztFin2RD4Qvi-fKDJMiAI1quNWO1_Po,791
645
647
  nautobot/dcim/templates/dcim/deviceredundancygroup_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
646
- nautobot/dcim/templates/dcim/devicetype.html,sha256=SZQIITulFE5axWkY9HOrDNY-l67c6GlwPsIFR8xM6Kk,172
648
+ nautobot/dcim/templates/dcim/devicetype.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
647
649
  nautobot/dcim/templates/dcim/devicetype_component_add.html,sha256=MVCZ5wC4jf_ui2vYUpZYSJjOvawWbpclAda1OD3k0SI,1753
648
650
  nautobot/dcim/templates/dcim/devicetype_edit.html,sha256=9ecyUvcSBF2QbNqdG09OtdJ6xy4mzRZnaQCJ6r1drWg,170
649
651
  nautobot/dcim/templates/dcim/devicetype_list.html,sha256=wf_ANtcEg7tu6tzlry-ZFpUEdXMO9AGCOANGXyQgPFk,504
650
652
  nautobot/dcim/templates/dcim/devicetype_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
651
653
  nautobot/dcim/templates/dcim/devicetype_update.html,sha256=1eIyJ5iEi8LLWyCwXBKLMAdZ-QfRnAv0t_w2yf88P2E,1191
654
+ nautobot/dcim/templates/dcim/footer_convert_to_contact_or_team_record.html,sha256=o6FT3UVs8voVABSMJ0Lzx8qhBn66XzW58LRCaGjbvNY,649
652
655
  nautobot/dcim/templates/dcim/frontport.html,sha256=xHpZy3_Rv9IiuA0COCZRJ3vve_zFNF-huapFmVHopFA,4592
653
656
  nautobot/dcim/templates/dcim/inc/cable_form.html,sha256=BScpSU80JCnLEtRac1cYeHoBjkhekaoEnNwudYaBsvs,1294
654
657
  nautobot/dcim/templates/dcim/inc/cable_termination.html,sha256=iVH02beFQVZyo427jzR8n-bylhoroCqbOabP15WBETs,1215
@@ -663,7 +666,7 @@ nautobot/dcim/templates/dcim/inc/location_hierarchy.html,sha256=TnQmRoTQ3WqpfHOq
663
666
  nautobot/dcim/templates/dcim/inc/moduletype_component_table.html,sha256=er1Gk6kFGOMKGUq-JDXm-Ph1Jw6HaQjo-iPvd0-YodU,2049
664
667
  nautobot/dcim/templates/dcim/inc/rack_elevation.html,sha256=ogxOQ7tuJVhdtLUQUz4uG--DqKbSKqBu_BOCmiaRYqI,450
665
668
  nautobot/dcim/templates/dcim/interface.html,sha256=VrHgCnOmQaHH2PCh1ZLOYBQ2zxXW9H08IolfXq6z0Z8,10292
666
- nautobot/dcim/templates/dcim/interface_bulk_delete.html,sha256=xSDTd8AE6GHWhxXdP2eFPxssh1hLvEIbu2HnTKMHhzY,156
669
+ nautobot/dcim/templates/dcim/interface_bulk_delete.html,sha256=Wyl2PAUfZLCWejXCQBVmDS1-S25gwBUcSR2dFbzAVZI,157
667
670
  nautobot/dcim/templates/dcim/interface_connection_list.html,sha256=44ujOqwapDTXy1uFIxH3FHDvRtD1oit57hYLRgH23XE,396
668
671
  nautobot/dcim/templates/dcim/interface_delete.html,sha256=q0j6og9TL7Vqa7Hsx--8LVUnK1xAMZfKM7C-brfChoY,279
669
672
  nautobot/dcim/templates/dcim/interface_edit.html,sha256=-1xYHq5v-Dcivtd74fjWXhThPxAsRpbKDSouA4rAacI,2007
@@ -671,13 +674,13 @@ nautobot/dcim/templates/dcim/interfaceredundancygroup_retrieve.html,sha256=wAGvl
671
674
  nautobot/dcim/templates/dcim/interfaceredundancygroupassociation_create.html,sha256=e-Xy_7kppxlYWIryOkX_I9TE3eJFxuaei1lMMmHQ4tw,390
672
675
  nautobot/dcim/templates/dcim/inventoryitem.html,sha256=nupD9fqrw6NFF0NBnjaQT9I7E1odEbHc-J1pMT3qZ6Q,1593
673
676
  nautobot/dcim/templates/dcim/inventoryitem_add.html,sha256=QxHNF2q2Nm9FkFLwBBcqU4BAll22BNbbpl6KKwtyXv4,2063
674
- nautobot/dcim/templates/dcim/inventoryitem_bulk_delete.html,sha256=xwjokSI_vQ3bz1ubsWZNOg5y8TDRhcwxcmSP4pxg9iM,228
677
+ nautobot/dcim/templates/dcim/inventoryitem_bulk_delete.html,sha256=4E7D0sYD3eKkH4alBahD3MqADwjUFnFCWhN8_PksBp8,229
675
678
  nautobot/dcim/templates/dcim/inventoryitem_delete.html,sha256=s_a8DzFjJMA7TN1hgCtHOTSy7ki9AzT2VAW-ilXoDvU,297
676
679
  nautobot/dcim/templates/dcim/inventoryitem_edit.html,sha256=fUk2VSwtKSdeEyujspTkV4deylI8a2_fJhDWp2_grGU,1197
677
680
  nautobot/dcim/templates/dcim/location.html,sha256=-0c4CP-IJXjfBwEfotzP4lJU2DqEapF39hZ6tZ3jYwY,170
678
681
  nautobot/dcim/templates/dcim/location_edit.html,sha256=7IWIIVxZ7FnFXrtaHLCerE_kkTrd08W20G6ctDKwoYs,168
679
682
  nautobot/dcim/templates/dcim/location_migrate_data_to_contact.html,sha256=kx5iWi8kraNDPhWvdm-0uNaF6MwMo0Ha8x1GFr-cG1k,5464
680
- nautobot/dcim/templates/dcim/location_retrieve.html,sha256=HN5KPmyKSPR2hroxW-2ayiBiTKngNx08xfQynmO_4rA,10837
683
+ nautobot/dcim/templates/dcim/location_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
681
684
  nautobot/dcim/templates/dcim/location_update.html,sha256=SUoA1ZHW4IyyNlU1lYya46qBVmg8Y17dX56_S74-nrM,1458
682
685
  nautobot/dcim/templates/dcim/locationtype.html,sha256=FT_A_aHNBS0MNQXe-P5pQ_CzTkapmYEKjT39qr3u_SU,173
683
686
  nautobot/dcim/templates/dcim/locationtype_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
@@ -700,18 +703,18 @@ nautobot/dcim/templates/dcim/modulebay_bulk_destroy.html,sha256=p0vOy_MJWPsjjCaP
700
703
  nautobot/dcim/templates/dcim/modulebay_destroy.html,sha256=_5yulmjIfnNgR_Xklj9PisVqELxg6N4g11hTZonjO0o,289
701
704
  nautobot/dcim/templates/dcim/modulebay_retrieve.html,sha256=oB8GsQwaus_6tRr3z49aZpYLfvGTmF6AmN4fMkkRDz4,3266
702
705
  nautobot/dcim/templates/dcim/modulebay_update.html,sha256=Xh8DWDvuevXR6II5CJShIyabU8e87R25bGYC8s6Hbi8,1808
703
- nautobot/dcim/templates/dcim/modulefamily_retrieve.html,sha256=sB35DSGhU-HZfq2jHcdJbSjEnMtwprUi3xw8Gl9X48M,967
706
+ nautobot/dcim/templates/dcim/modulefamily_retrieve.html,sha256=_bgwnBhf32c0vV2C5V6wlJhAA3inEcAEOcfp4zCSWZM,969
704
707
  nautobot/dcim/templates/dcim/moduletype_list.html,sha256=IKDagmDagaASRsZtBZn9XHxoR4rAevPuDSIa5sLaB5c,504
705
708
  nautobot/dcim/templates/dcim/moduletype_retrieve.html,sha256=OgkTysfClSbLl4sKt_soz6rZFHJLBvS8vUBows9pLEg,9483
706
709
  nautobot/dcim/templates/dcim/platform.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
707
710
  nautobot/dcim/templates/dcim/platform_create.html,sha256=eBZKsESebf2Y1J-wIDbdo8tseqkwo5UoFdHjW-RVi7E,2942
708
711
  nautobot/dcim/templates/dcim/power_port_connection_list.html,sha256=rSbTUs4clSbMVeUCDuw4I-FKY3bSDyafnyFiEKG27EQ,395
709
- nautobot/dcim/templates/dcim/powerfeed.html,sha256=BJxZHVDkY0857TgxHxbDFh4KOVToRl3qOeUPXyZEK6g,171
712
+ nautobot/dcim/templates/dcim/powerfeed.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
710
713
  nautobot/dcim/templates/dcim/powerfeed_edit.html,sha256=fIash2yyB-nPgneGrOeaFyXdffQG4_s2sUa63ekLXOk,1707
711
714
  nautobot/dcim/templates/dcim/powerfeed_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
712
715
  nautobot/dcim/templates/dcim/poweroutlet.html,sha256=W_NzzSIfnDvAKz7fmKBiymuoXnbHcf38m3U_5_8-DZ8,4313
713
716
  nautobot/dcim/templates/dcim/poweroutlet_delete.html,sha256=LBYoLm5-5AWUK0sCI7x4Gp34ak_QtMF9M23J3ZSyk6o,289
714
- nautobot/dcim/templates/dcim/powerpanel.html,sha256=HM_fKH5HL_xBzwLqAw5_pVQWl2PmzwtqeEqPSj4B0so,172
717
+ nautobot/dcim/templates/dcim/powerpanel.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
715
718
  nautobot/dcim/templates/dcim/powerpanel_edit.html,sha256=jJ-R2QZnrxav-iy3ILjwPFJulCNxT0LzoqqbyHGkhAU,169
716
719
  nautobot/dcim/templates/dcim/powerpanel_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
717
720
  nautobot/dcim/templates/dcim/powerport.html,sha256=XTeTOmJH5UuiEPn2iSo8M71ZD7b2PA60GaYA4s-yiHs,4862
@@ -734,7 +737,7 @@ nautobot/dcim/templates/dcim/trace/circuit.html,sha256=RpDpW2cKN2y-d8Q4ptxNURNh_
734
737
  nautobot/dcim/templates/dcim/trace/device.html,sha256=6IF3uJMX_U2ay5urQBhpIK9rgkxPwKCyNXmsqJvA2p8,310
735
738
  nautobot/dcim/templates/dcim/trace/powerpanel.html,sha256=trkmh6siiGzNBWtRQjXaDEKEoRa_3bqL8q1xc1PbOeM,179
736
739
  nautobot/dcim/templates/dcim/trace/termination.html,sha256=Cecq3YOF0ODXOHFJI5to7jc89n3CqW4GGke5Sm2gZW4,306
737
- nautobot/dcim/templates/dcim/virtualchassis.html,sha256=0fcdsoFUxm_21EjAMm-_vCy13n3o5OF93-Ro_oIILnU,176
740
+ nautobot/dcim/templates/dcim/virtualchassis.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
738
741
  nautobot/dcim/templates/dcim/virtualchassis_add.html,sha256=OJ5LEum7XfeGzMEzGINXh1DWOlZSdn0W4WFH_WmnH0U,174
739
742
  nautobot/dcim/templates/dcim/virtualchassis_add_member.html,sha256=xK1F4Bfl8yUS00ui-fpT8PVb-w8Yb3C3iSYr_RsyD0Q,1632
740
743
  nautobot/dcim/templates/dcim/virtualchassis_create.html,sha256=t2StHyUA63a9Tz5iAUhWn4fhLMY5iFIhQ-4AJN969s8,769
@@ -762,15 +765,15 @@ nautobot/dcim/tests/test_forms.py,sha256=2HWEFl9aY8SoVeLEQgGTwBp1A2BoIT8nclJLv-h
762
765
  nautobot/dcim/tests/test_graphql.py,sha256=zvO5HRRROiUlTIsoUS9W_PS7yabnL5RzT7zHekTdWfU,6850
763
766
  nautobot/dcim/tests/test_jobs.py,sha256=5777iCfbpw55fFIJAYx1zVsSZlHTeKhCYr7uLMzjqrI,4769
764
767
  nautobot/dcim/tests/test_migrations.py,sha256=HqJZJ3907E_LJV6XNHE5IDDoVImWBqAEN20y5YNGed8,53096
765
- nautobot/dcim/tests/test_models.py,sha256=JLJWnquPFp2CU_L6-4Ml75b6vPPYykNl9uGhlbDbkYQ,166849
768
+ nautobot/dcim/tests/test_models.py,sha256=_VTMcgc4SsiJ8jC1yev-Ve-gz_I7DRmz5_GvOjnqvn0,168937
766
769
  nautobot/dcim/tests/test_natural_ordering.py,sha256=2qPIo_XzgPIcSSbdry-KMpmyawPJK__CVaFwT1pB30c,4777
767
770
  nautobot/dcim/tests/test_schema.py,sha256=fCCJVIoPoMEEK64IQqKiTEBbjBwkHGMCwfTGbBuso_8,3176
768
771
  nautobot/dcim/tests/test_signals.py,sha256=i0owM4SFGlMK_WeJ3Kt5SwnZBBJgWVWoi6SsEmsoMXI,4553
769
- nautobot/dcim/tests/test_views.py,sha256=TjlmJCBd1Jl0AZ94hPn7inrXU-fxe8ZChpRGskq7VcU,197457
772
+ nautobot/dcim/tests/test_views.py,sha256=Fysl18dCoWUvOVDjhbr_WXw1KD-S3KtEzIrj3gcfV4A,198889
770
773
  nautobot/dcim/ui.py,sha256=SLzmGAi-SwGn1LRcOpcjpkFO2A7TZ0PnIDqPes_58vU,959
771
774
  nautobot/dcim/urls.py,sha256=rztM63HVq1-G1NGLgQCHhM84LTx2b199Cg0zVt-MiJw,36831
772
775
  nautobot/dcim/utils.py,sha256=xz499QF_w2W6hz8Okll835q3En9pdulJ3vPddr2qNmw,6700
773
- nautobot/dcim/views.py,sha256=AvLxxRSDBFRy3Zl9sEokv7RCvFrOgiduC4tBF-p1lR4,229205
776
+ nautobot/dcim/views.py,sha256=uTTGrVZHFhenczrJpzOMewgNL45z7DBWp3VqUQYMAuo,231831
774
777
  nautobot/extras/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
775
778
  nautobot/extras/admin.py,sha256=uG2igN7kzEzZqTG8oVTs8mNazLDn2GGhZ8y7hB6X0sU,1399
776
779
  nautobot/extras/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -780,7 +783,7 @@ nautobot/extras/api/mixins.py,sha256=Dg-RduWjnhGK98EVXUvwX__2VUN2CqEkrBWTdnhk9fY
780
783
  nautobot/extras/api/relationships.py,sha256=bq8Vqj4iRAo1QyEuRaR38o_jxfllW8SwNf_f_h-1cdw,13529
781
784
  nautobot/extras/api/serializers.py,sha256=Zqrg_n5z0z7qtwhR8W16Eqn_RkSvznT-MPKHVpZBh18,36166
782
785
  nautobot/extras/api/urls.py,sha256=N3cGfhi3UvCDzKdbvoGaC3-MKc30j-TWnHlY9vkC8S8,3383
783
- nautobot/extras/api/views.py,sha256=M5oJj6OejWI35JxQZRznhCrQLu3XUOD4UQTvXir-_4I,42211
786
+ nautobot/extras/api/views.py,sha256=r_2BoNlMryeq6_JqP4xRPOuOYIGnQ2FOtnYCuiGOZTc,42384
784
787
  nautobot/extras/apps.py,sha256=lDAGcH6jwT8cTz8CHVIzlvy5FLjhiARgRgVJvjuCZrQ,2472
785
788
  nautobot/extras/choices.py,sha256=fsSflSxd75J8ZTxG2tMg_Z4oE4ts8rcCEAv7lc2ZvHM,12725
786
789
  nautobot/extras/constants.py,sha256=baxJqNlyqWkCisRN4toOqecu8sYOpKrDHfjFsqQ0bmA,1583
@@ -791,7 +794,7 @@ nautobot/extras/datasources/registry.py,sha256=nduZ2lvxGRYg0SY923YLHREJ4MEQuvLMu
791
794
  nautobot/extras/datasources/utils.py,sha256=5XdFErDwHUdK3jBTQKX4Y480EkH5bPsBoSbra_G0s_s,1470
792
795
  nautobot/extras/factory.py,sha256=T5-oUMDhhaA9AB-61BluVAkZ_dli51P4b7QEYDLBDs8,24797
793
796
  nautobot/extras/filters/__init__.py,sha256=BO6V63MOTeXpDR9lqlJTCuje_7kstx4W0xb1e8rMK5I,42334
794
- nautobot/extras/filters/customfields.py,sha256=EC4xPabwnWSmpCYeOhOlnZ-Slr6I3B8z4ZrGuHrmiPA,6057
797
+ nautobot/extras/filters/customfields.py,sha256=_Rm4GGKy5baod_Cr6hpDHrWttET2V8AgDix2w6xKjRg,6292
795
798
  nautobot/extras/filters/mixins.py,sha256=qzaVF4ar9BtEAOPCsNCoKfdPpdPdm5NypqP5p5E-ez4,13769
796
799
  nautobot/extras/forms/__init__.py,sha256=idwnHYZyyf8Wyn_9tYe9ouWUY_OgHm1SpxoHua21ZR0,489
797
800
  nautobot/extras/forms/base.py,sha256=Yzf8-Y4WIQVBan91-5Ly1Br1qRHdFuIIba0ubnZ1Q-g,2026
@@ -947,7 +950,7 @@ nautobot/extras/models/change_logging.py,sha256=KTw47h5gB96nHwDjZg3z0oR9RuFZkr-K
947
950
  nautobot/extras/models/contacts.py,sha256=_JVQMtU17DmHwqQmV9phsEbG1k6k2dFdiqSs82YO5es,4056
948
951
  nautobot/extras/models/customfields.py,sha256=TC4eNYO835L34j88cBLkJDJdF7tMENi6BPFfYD4SLIA,44438
949
952
  nautobot/extras/models/datasources.py,sha256=EqHZywhfyPE6LdzVyb3xzSWQ9t40ncJLAZzzjl0sqME,9843
950
- nautobot/extras/models/groups.py,sha256=oS4dji2fcDSimajHSigqKpVLnhOFxCn63rcaWH3YFBo,52821
953
+ nautobot/extras/models/groups.py,sha256=bxzZ4rkIQC_jqJ5GBHabcJy8zptDCHXnlF_jnR1HgTw,54777
951
954
  nautobot/extras/models/jobs.py,sha256=s4lT0i0oDFTnjREeP7ZDYTsFZrRX-YpmX5gY-QWxT_E,59518
952
955
  nautobot/extras/models/metadata.py,sha256=eHozr4w2hdDFRKVUfZEuiu7KsShTav8PUpiThc9EUvQ,20634
953
956
  nautobot/extras/models/mixins.py,sha256=uOfakOMjmX3Wt4PU23NP9ZZumeKTQ21CqxL8k-BTBFc,5429
@@ -971,14 +974,14 @@ nautobot/extras/registry.py,sha256=p18j0CzEA20UVUPWKMB1x07KLm_kVbUCQFC9lqlkw40,2
971
974
  nautobot/extras/secrets/__init__.py,sha256=0oyzkeGax2yZQOS6vkd4oMY-O8vsoV_DjbOgKN_jods,2877
972
975
  nautobot/extras/secrets/exceptions.py,sha256=cQXyJrW96wQyg78E3tJ13kFYZkG8OiVjWDwDUcDDixA,1564
973
976
  nautobot/extras/secrets/providers.py,sha256=mR6cCdSD1J4PEdQFjkTawLJj7gaIqHKvirkh3uob5x8,2938
974
- nautobot/extras/signals.py,sha256=wjUgbh694GQl2d4uyUdnaVPudC7DOFUqlx8eAGLn-zQ,27533
975
- nautobot/extras/tables.py,sha256=oB4sFo2Mx1WLpAC-w39QXssZ7Wa8DaK2-K5RHflkZNQ,45093
977
+ nautobot/extras/signals.py,sha256=OzvtZgX48ATYipC1YD_rtSmJLKgteSDsmLxo0w3j9js,27803
978
+ nautobot/extras/tables.py,sha256=tb49aG14V5QvskSN6rvhkPlNCExV5UrJWZmuOFX14jQ,46902
976
979
  nautobot/extras/tasks.py,sha256=EC8LpX9n5_K1Ul5mnixd2mmDpcdAU6w1K2kiHlQG8LI,10822
977
980
  nautobot/extras/templates/django_ajax_tables/ajax_wrapper.html,sha256=ej98qO2zpS-J6SAkdfbLmG7XAFleIF1kt0GqKY7GipE,2097
978
- nautobot/extras/templates/extras/computedfield.html,sha256=hDaGjw0LCBC73C_WZZEO2sXPRUFOR18LVAyKRpgI0G4,177
981
+ nautobot/extras/templates/extras/computedfield.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
979
982
  nautobot/extras/templates/extras/computedfield_edit.html,sha256=7MxWNIRiBio_AbKuTmhUgEiLB1_3ie6QrTXbLBR0D48,290
980
983
  nautobot/extras/templates/extras/computedfield_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
981
- nautobot/extras/templates/extras/configcontext.html,sha256=a5hq1oS8nCcnq-s7NP8ZSntZdA3GCO3kBpBIfQaBXHk,177
984
+ nautobot/extras/templates/extras/configcontext.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
982
985
  nautobot/extras/templates/extras/configcontext_edit.html,sha256=NGmBA3mcPmiAnBWwYm4g0YVhu9kdTw4AURjN_2aT8tk,175
983
986
  nautobot/extras/templates/extras/configcontext_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
984
987
  nautobot/extras/templates/extras/configcontext_update.html,sha256=pVCRChb8xOrji_Dn7FqggcQGq0DTvQbE6uxiR4M-GtM,1982
@@ -986,16 +989,16 @@ nautobot/extras/templates/extras/configcontextschema.html,sha256=RDFTw_nZN2pVAmf
986
989
  nautobot/extras/templates/extras/configcontextschema_edit.html,sha256=d8kOG848EcpplhHaXkfwTwPedSAIXRAaY6nB6aS8yIA,181
987
990
  nautobot/extras/templates/extras/configcontextschema_retrieve.html,sha256=jb1Fz6BkK96dm-JSYEb_ONuT-bBkpsIuJaX9FHSqUDs,1563
988
991
  nautobot/extras/templates/extras/configcontextschema_update.html,sha256=AR0qOJBqTaR2j4vOEuO3gtyUOSjqW-MwSHClO7350SM,642
989
- nautobot/extras/templates/extras/configcontextschema_validation.html,sha256=vDP3O84LwQmnTYvYL-B1AWqWw56N78Ey8ij8DKf64jM,652
992
+ nautobot/extras/templates/extras/configcontextschema_validation.html,sha256=SPUqqkS0oU2EJmh5mR3kV92WF79IoMcS5ly45bVRePw,661
990
993
  nautobot/extras/templates/extras/contact_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
991
- nautobot/extras/templates/extras/customfield.html,sha256=jdFpk5QLKTn7LK-M06-_Pg2_vYZE_kdb-BN3v-UpdjU,175
994
+ nautobot/extras/templates/extras/customfield.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
992
995
  nautobot/extras/templates/extras/customfield_edit.html,sha256=hWCuCVRsBhL-kMRSiAd-XN-3BNdkyQBGFkFwpSz7_O4,173
993
996
  nautobot/extras/templates/extras/customfield_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
994
997
  nautobot/extras/templates/extras/customfield_update.html,sha256=XGAaJjhTudWyk7Ktl2maOZo-MnonhT15cCa3kea3Xbw,4770
995
998
  nautobot/extras/templates/extras/customlink.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
996
999
  nautobot/extras/templates/extras/dynamicgroup.html,sha256=wbHwOCRxlVJrm1WHv3eKEQcEHcVLbU9JdoA-xSMM9YM,176
997
1000
  nautobot/extras/templates/extras/dynamicgroup_edit.html,sha256=uVbrhgAgliNQnxqE1VuqX8EuyOMXHEfyf4Qm8iWlo9o,174
998
- nautobot/extras/templates/extras/dynamicgroup_retrieve.html,sha256=ri-x6PCkXgpLjDdnIO70HX9UykpjyVSkWGnuA-Mb7R4,4025
1001
+ nautobot/extras/templates/extras/dynamicgroup_retrieve.html,sha256=pgcNNsYIPzaMj2QzWg5vaGF6OzNIeG7zSxlA9-IO0q0,4442
999
1002
  nautobot/extras/templates/extras/dynamicgroup_update.html,sha256=MC-tvd-BTzXIixbVBNZ7rF5dFTptzqybWf_x6FXKmLU,9912
1000
1003
  nautobot/extras/templates/extras/exporttemplate.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1001
1004
  nautobot/extras/templates/extras/externalintegration_retrieve.html,sha256=-pVrsbW1JCLMIJ03D75UvHsoty4VfuQ879UAYBTjzno,64
@@ -1003,15 +1006,16 @@ nautobot/extras/templates/extras/externalintegration_update.html,sha256=yqdwxoor
1003
1006
  nautobot/extras/templates/extras/gitrepository.html,sha256=x-W_cdPthAGdCPwhP2UW6URSa8jrtKu8M_di2UUZtXw,177
1004
1007
  nautobot/extras/templates/extras/gitrepository_list.html,sha256=oECLGSzdjvJwYX1T-jHNAczvY2rGun4XyPrK5y3OqOM,453
1005
1008
  nautobot/extras/templates/extras/gitrepository_object_edit.html,sha256=MH662vlidS3lXOe4WB1wdPSw50tHYwmea6pNTcQZr-Q,175
1006
- nautobot/extras/templates/extras/gitrepository_result.html,sha256=sxFd89WzybfawNJzvkaJKFUjv-3gLfzdKOVtDYsR6pk,657
1009
+ nautobot/extras/templates/extras/gitrepository_result.html,sha256=uCyve-Ooz6UwBkMp9H-BqLp61qqOKeGErPpgq7rfxxE,582
1007
1010
  nautobot/extras/templates/extras/gitrepository_retrieve.html,sha256=s4asPppYCsTHfRUAGMCECtOUh_0lOlbLSIGwLw4V14M,3103
1008
1011
  nautobot/extras/templates/extras/gitrepository_update.html,sha256=I7Wvn19z37Ixs55nLwWAX6dVDQFAfvZnjy6ibjKu5VQ,686
1009
1012
  nautobot/extras/templates/extras/graphqlquery.html,sha256=GGLLvV2xVyjhlBXIfLSsEGmw1b33iLi7NlQ_YlvxT10,176
1010
1013
  nautobot/extras/templates/extras/graphqlquery_list.html,sha256=MzuhCkQJPIgqO2YvK4z7VGIbBcE-438UaoKNyPfytUQ,40
1011
- nautobot/extras/templates/extras/graphqlquery_retrieve.html,sha256=ROIfGJDiFpYGhCCMgV5W6aIvDMmbMTUy8471X-_Cg18,3241
1014
+ nautobot/extras/templates/extras/graphqlquery_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1012
1015
  nautobot/extras/templates/extras/inc/bulk_edit_overridable_field.html,sha256=YGni85oAaouIShm-GektnjIZazEffozXEe0SK-z7PAU,1274
1013
1016
  nautobot/extras/templates/extras/inc/configcontext_data.html,sha256=qLmWzF4rboBfoJk4jaiYHhh-AoDf2Ugb2WmcEh6_ne8,82
1014
1017
  nautobot/extras/templates/extras/inc/configcontext_format.html,sha256=Mp-Pf48dneKndQatNh7w1yV2_oJm2cjCdhomxsK13Gs,349
1018
+ nautobot/extras/templates/extras/inc/graphqlquery_execute.html,sha256=YELUafJB4N83TZ_w2sNFoovefu56L7p3YA3WtdQ5zhk,2184
1015
1019
  nautobot/extras/templates/extras/inc/job_label.html,sha256=JPIxmNT3kBTRJrCymXzCYjqR-ADRXDvdLxWa6Qi4rX8,444
1016
1020
  nautobot/extras/templates/extras/inc/job_table.html,sha256=XPdzXQ2oxuf0XES2aIOyyn7BA6-rpCI3gB6bjzZhR0c,2341
1017
1021
  nautobot/extras/templates/extras/inc/job_tiles.html,sha256=RtQKEeu1vX1S7Th2GjLqAK5CHnZI8aofPY9fZqD0Weg,3880
@@ -1045,7 +1049,7 @@ nautobot/extras/templates/extras/note_retrieve.html,sha256=Ra6lZcs405aC0VV_tVmY7
1045
1049
  nautobot/extras/templates/extras/object_assign_contact_or_team.html,sha256=jfqnGMyeuXA5czf8bX2fLLdcGH5cfG9A3Q9mqP8kKIo,1713
1046
1050
  nautobot/extras/templates/extras/object_changelog.html,sha256=yTeT5I1VdsLtFwiuYLp8hjNBy2C3tte3ZVi8XVev4Pk,175
1047
1051
  nautobot/extras/templates/extras/object_configcontext.html,sha256=mUTksyTbXJbbt7_skaaTEjAcHm8DUTViGHybcxfAPKU,2933
1048
- nautobot/extras/templates/extras/object_dynamicgroups.html,sha256=BVhtCFtCfvbAZSLX1ZWF8IERGiqq1JeY4vXorupPEk0,904
1052
+ nautobot/extras/templates/extras/object_dynamicgroups.html,sha256=d3wcIOChEiE3V3ePN7Eh_e_P7j7-qUiRiP_kPooCmHs,948
1049
1053
  nautobot/extras/templates/extras/object_new_contact.html,sha256=eNlK_-JU9-KB6jthXhmC0JFyS0LzSMfTocbprbUp0Ao,1157
1050
1054
  nautobot/extras/templates/extras/object_new_team.html,sha256=wnUF0bUQLD5Gfav5yHj9-RL7uwGLj7iHaj7GbZ7sgy8,1154
1051
1055
  nautobot/extras/templates/extras/object_notes.html,sha256=VSQCYeM1z1AjIBbqJnoX3JqfyopVN4LitxoQxWAlq2k,171
@@ -1064,13 +1068,13 @@ nautobot/extras/templates/extras/secret.html,sha256=Ra6lZcs405aC0VV_tVmY7__81yWR
1064
1068
  nautobot/extras/templates/extras/secret_check.js,sha256=gggUDwh3UBMYzRN9rIlOb_9-IeWa86QikAcG12E0GlE,493
1065
1069
  nautobot/extras/templates/extras/secret_create.html,sha256=X-H-V-tki2bJ7TgdRwc7eCkedjmnYvbgm5BF40SYaMo,4584
1066
1070
  nautobot/extras/templates/extras/secret_edit.html,sha256=y7C06mTjZjNHwHuspVOtqnfhte19MyJUW4lHst5wJNk,42
1067
- nautobot/extras/templates/extras/secretsgroup.html,sha256=_ZXEXBYML-6TduT5qISkjRPOBPfwG04HVCHhUx5diLA,176
1071
+ nautobot/extras/templates/extras/secretsgroup.html,sha256=GKaIKyECGUsqMGcUzDaTb0o-Rj3jn2M8PWgj-Ro_eG8,171
1068
1072
  nautobot/extras/templates/extras/secretsgroup_edit.html,sha256=Qidp2uyQFhTuDTwBkYRzwDViXFap891f5BHqbetLAaQ,174
1069
1073
  nautobot/extras/templates/extras/secretsgroup_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1070
1074
  nautobot/extras/templates/extras/secretsgroup_update.html,sha256=8jAXzTNXMxhpJ6ohRiVuBNZfkPvwUlgtksA8RnXQpiM,3601
1071
1075
  nautobot/extras/templates/extras/staticgroupassociation_retrieve.html,sha256=fpPO4vQfaECoaTTkTqo48qqphXjHDehuo5YiEcveJXg,661
1072
1076
  nautobot/extras/templates/extras/status.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1073
- nautobot/extras/templates/extras/tag.html,sha256=KIusGwBDm6MsRtx9uxIutxUg7M5qXsmXQNg9tblw5uw,167
1077
+ nautobot/extras/templates/extras/tag.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1074
1078
  nautobot/extras/templates/extras/tag_edit.html,sha256=9KZpCfPFabLJEtQ927S_JIx-rQs6qe0iora95OHVtTc,165
1075
1079
  nautobot/extras/templates/extras/tag_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1076
1080
  nautobot/extras/templates/extras/tag_update.html,sha256=VhnMXREPhparxQ7cH9_gFaj7JoSNwTzXHOYhfE_k6L8,501
@@ -1156,20 +1160,20 @@ nautobot/extras/tests/integration/__init__.py,sha256=bAni6Fq0uL2OoZnJWgZQdTR7zqr
1156
1160
  nautobot/extras/tests/integration/test_computedfields.py,sha256=nVAYNoTb1jinlPszEZCeORAW068-59LvqqR5HkCu5jA,4062
1157
1161
  nautobot/extras/tests/integration/test_configcontextschema.py,sha256=TMwXQOFgxqo0Dm0q8rY2eNAk53K80z-tccfkdVHxEsY,10037
1158
1162
  nautobot/extras/tests/integration/test_customfields.py,sha256=JmhHpWfn142VGbzyttgV27m8fVYOxTnjCHUwgeK6CYw,16055
1159
- nautobot/extras/tests/integration/test_dynamicgroups.py,sha256=BACfnzIHqzrIYgCL35pJziu7zanvGC13IZ0TprIN73A,3273
1163
+ nautobot/extras/tests/integration/test_dynamicgroups.py,sha256=0LcMAyzU5A2e1krbGIe50fwlLigKgHDKFmxflerOvzA,3591
1160
1164
  nautobot/extras/tests/integration/test_jobs.py,sha256=5oJQ4lpbGKl9CAyOJpjsO5E4qHDgOUAwZPCm_CQHUmY,4407
1161
1165
  nautobot/extras/tests/integration/test_notes.py,sha256=fLSUDhL2uknb8aCbUnbmTPVg19ZK9Ws9cBr4ue5OTyk,1688
1162
1166
  nautobot/extras/tests/integration/test_plugin_banner.py,sha256=mS75MWsvG2uEbelhUYm7G89beFnyFrISpaVWizWIavQ,1206
1163
1167
  nautobot/extras/tests/integration/test_plugins.py,sha256=y_IGnINfbf1-eWoaS3__rprK6BtMsoqk10iLU04IZE4,8863
1164
1168
  nautobot/extras/tests/integration/test_relationships.py,sha256=2CR7kf2dEyvDtb4IrKP8F4xr8IKz44RwANTXLX9X1-Y,3441
1165
1169
  nautobot/extras/tests/integration/test_tagfilter.py,sha256=qlX0BTjXxUU3Cy6Yij6volS8-myl5Riz13tGjhFFQzU,2531
1166
- nautobot/extras/tests/test_api.py,sha256=AOn6BI2Sw1hs48hMmBFYbEalWtaYgie_7RiT6YZppSU,184271
1167
- nautobot/extras/tests/test_changelog.py,sha256=BCRt7ByqrwxNeJuCMoIXVcIBbgNooz6fZzTi1OS8O0g,28004
1170
+ nautobot/extras/tests/test_api.py,sha256=B3fCg4bG1-kjvovyI-WOLse9x-YrYcM0MtqY74jvPjU,184318
1171
+ nautobot/extras/tests/test_changelog.py,sha256=7U0YlX11nPD_ZhOcTEidQMbu1kMqh5ZBWIi1xDo2RQo,29092
1168
1172
  nautobot/extras/tests/test_context_managers.py,sha256=autsPHycMrps0DK_2r_EjWeoJW5vxn3Pv9IyXdsyu-k,20403
1169
- nautobot/extras/tests/test_customfields.py,sha256=t94ZAlf-_rVH3QVBkR_2vupiZk9H1CmDpEobHe6B9sc,101526
1173
+ nautobot/extras/tests/test_customfields.py,sha256=IZpSsdfJJzeoKVoE1fFYJ6PebZMn4KUUkO6RXVNVpB0,101942
1170
1174
  nautobot/extras/tests/test_customfields_filters.py,sha256=0dMe05YM1r2xkjAP5qG33IeczX7eDXPqIKweqRbPdC8,22751
1171
1175
  nautobot/extras/tests/test_datasources.py,sha256=bsMJh8y7HFnapnq6lX8u8l6BBQfaPHtmkc-0nysdQyM,39493
1172
- nautobot/extras/tests/test_dynamicgroups.py,sha256=QHzdkXS4m-RfCdDPAXTGg1_vkMRgPu3mnax7EtPo9B8,60027
1176
+ nautobot/extras/tests/test_dynamicgroups.py,sha256=dPx1QFcIqBa-L42ojZKIQG-lHc5UhNNdH1XEmT1t1-k,61515
1173
1177
  nautobot/extras/tests/test_filters.py,sha256=QSDTDvGV6mhxVqs2f9yRz7Oh2Ub-gUlR4Xdcxm-AxxY,72991
1174
1178
  nautobot/extras/tests/test_forms.py,sha256=B8ifsRLM8cLPtEnI3JsgQpkRb_2E-BRH84o6HsQrJGc,53276
1175
1179
  nautobot/extras/tests/test_job_variables.py,sha256=dK6PhwqcpL0MvG3ZveQvRhHMEMdXhTSWPi_EMvdqo90,5978
@@ -1188,7 +1192,7 @@ nautobot/extras/tests/test_views.py,sha256=7NxbvBotC362TgbGa4F1UHFJB9JSpFAaFRxYg
1188
1192
  nautobot/extras/tests/test_webhooks.py,sha256=PenrxDwCDt6obI1OzvNN_PlyFP4Euh4EBsMbeEfOxFo,15790
1189
1193
  nautobot/extras/urls.py,sha256=-RaE3QRbBgMf40WAoVIBvihVG58mkml3OWIUTKdEkoA,5524
1190
1194
  nautobot/extras/utils.py,sha256=DOWW-AzWdXdRc8xgzfe9UZrnPQN0TZHXrPZQvGi059g,39684
1191
- nautobot/extras/views.py,sha256=X1ZEqdscqipsaPGJioXdefsmRd5yKzlcuDPU-1ci6QI,120107
1195
+ nautobot/extras/views.py,sha256=2dg5rXRP1kPhfELxiWjPVHa2HZM-WrIcZZIAb4X0Tm8,121458
1192
1196
  nautobot/extras/webhooks.py,sha256=ZgXXgE-gAgJhrtyKCSD976EMD2GSj6iGLJoGOS_YwgA,2466
1193
1197
  nautobot/generate_secret_key.py,sha256=4HQOyZMPFdXx-Ob5RjCrIdU37TSYmK_cWvM9OXZKYE0,509
1194
1198
  nautobot/ipam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1272,7 +1276,7 @@ nautobot/ipam/mixins.py,sha256=bd6hX3q0j64Lmu5N08scSRz5JGNk1Ua5jenUQaXo-wM,1578
1272
1276
  nautobot/ipam/models.py,sha256=lmoHne24IZvVVv4F7_QaBFTO07HThKf_CYGOBAXUQg8,70781
1273
1277
  nautobot/ipam/navigation.py,sha256=8M-BjE_GNOEThoURIg1cpkEKGB3GMRq9RjPiNGgr7a8,7111
1274
1278
  nautobot/ipam/querysets.py,sha256=NL8qF8CaUULGz_u5VFLf-kpHwVdeXhiXwZq7b8DaB8k,21076
1275
- nautobot/ipam/signals.py,sha256=tNlLlfJpOxYYgbV7dxJ2zLOJqHVaD8faQGD9Oc_NPQo,5239
1279
+ nautobot/ipam/signals.py,sha256=XIp_633nZM7IsXka6XjyUAVTPAGi46zFR5HFs8dzT9A,8352
1276
1280
  nautobot/ipam/tables.py,sha256=46icTs7zWx8Bir3r5Sooh33ZETz42HUJhqnkeqHWqdM,25662
1277
1281
  nautobot/ipam/templates/ipam/inc/ipadress_edit_header.html,sha256=ukrIzlbZ0kJrZfbxBJnA0-c7O-OlWsTeF6CEXZUPpw0,786
1278
1282
  nautobot/ipam/templates/ipam/inc/prefix_header_extra_content_table.html,sha256=NR-Pwt5DByiHiQT8cSmQSbpPSFsfjkSPrSMoqN7Fjxg,170
@@ -1294,21 +1298,21 @@ nautobot/ipam/templates/ipam/namespace_retrieve.html,sha256=Ra6lZcs405aC0VV_tVmY
1294
1298
  nautobot/ipam/templates/ipam/namespace_vrfs.html,sha256=hG0mIxV5fJYfVsUfBkMKu_rqmj7oeX260YmWOoWx-g4,415
1295
1299
  nautobot/ipam/templates/ipam/prefix.html,sha256=s23obJr5y67xHH62JMyjL2kcUGcPoLtuKfu7c9bCuL4,169
1296
1300
  nautobot/ipam/templates/ipam/prefix_create.html,sha256=8pXa-olucawOHFOeqkkvpbsS6eJZz_H1u6-9l3mvihk,1249
1297
- nautobot/ipam/templates/ipam/prefix_delete.html,sha256=nouHZZaPq_qmEjeE3SLRLw3KjKWyO0S3__hUaaY7XYY,176
1301
+ nautobot/ipam/templates/ipam/prefix_delete.html,sha256=pzQ63_doFmFFi7kjnTMdcv683Fe40LWQi0kM_hnrCMg,177
1298
1302
  nautobot/ipam/templates/ipam/prefix_edit.html,sha256=QGl4sdZ176hKUn9QaGOPTK01thuDLBthmcajkPlbIno,39
1299
1303
  nautobot/ipam/templates/ipam/prefix_list.html,sha256=Ya1BccqmMSasj3ObST7WAUjdpYhWNOxVLuH6bggiGbo,1000
1300
1304
  nautobot/ipam/templates/ipam/prefix_retrieve.html,sha256=g3wJJ5zPc8XZ7056p56AT7d8wVNu6vDKn28QkK5H93Y,65
1301
1305
  nautobot/ipam/templates/ipam/rir.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
1302
1306
  nautobot/ipam/templates/ipam/routetarget.html,sha256=Ra6lZcs405aC0VV_tVmY7__81yWRS155Yn9iYSMMSlA,45
1303
- nautobot/ipam/templates/ipam/service.html,sha256=hxmF1QqCsKjP6Oeyn7DW5L2tdFJsbxqA0B_HoPL_l68,170
1307
+ nautobot/ipam/templates/ipam/service.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
1304
1308
  nautobot/ipam/templates/ipam/service_edit.html,sha256=fIHW00aN2TjyEBSb8ll78mtX9mAHJXcv6cw8PXNEhvw,170
1305
1309
  nautobot/ipam/templates/ipam/service_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
1306
- nautobot/ipam/templates/ipam/vlan.html,sha256=Cm1Ur2KLtvnPvyrQMInC3azk7whiFRzKv_hpkDf-6wk,166
1310
+ nautobot/ipam/templates/ipam/vlan.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1307
1311
  nautobot/ipam/templates/ipam/vlan_edit.html,sha256=UXllWLts-jpUk-OGrFBF2IgJEpDZlpvTiRm7f8zXeaU,164
1308
- nautobot/ipam/templates/ipam/vlan_interfaces.html,sha256=Jz1-cjnUBI5gdourlhFwqLoccU0IgPl75_73-x9CqZs,299
1312
+ nautobot/ipam/templates/ipam/vlan_interfaces.html,sha256=mhZXe0MxoY7VKavsii3Jqv-18ayCVi3hpZiJc6crfc0,313
1309
1313
  nautobot/ipam/templates/ipam/vlan_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
1310
1314
  nautobot/ipam/templates/ipam/vlan_update.html,sha256=-pJtwE79IrMfzpYO5CP5fpO1XgQ1xavNpX76Gzi4vpg,842
1311
- nautobot/ipam/templates/ipam/vlan_vminterfaces.html,sha256=Vza1yQXkQwRsH3TUW6mRGrmfWqCv2XawPj-zauZZZfg,308
1315
+ nautobot/ipam/templates/ipam/vlan_vminterfaces.html,sha256=U41v5kzlyVVWcQsLSGr5R-udOGQDBWC0Il8jPlFIRDo,322
1312
1316
  nautobot/ipam/templates/ipam/vlangroup.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1313
1317
  nautobot/ipam/templates/ipam/vrf.html,sha256=Ra6lZcs405aC0VV_tVmY7__81yWRS155Yn9iYSMMSlA,45
1314
1318
  nautobot/ipam/templates/ipam/vrf_edit.html,sha256=0rJsLT9vfYrY75tm7cyfKTh2kGgx7D970b9OVi-7zbA,1498
@@ -1323,7 +1327,7 @@ nautobot/ipam/tests/test_filters.py,sha256=FvBGtIVD3Dl73Z4gy1tg6c8OyPDl-AXu9WndJ
1323
1327
  nautobot/ipam/tests/test_forms.py,sha256=o1j-yR2sk_D7xQjW8gh2Wagv3EepC59aJzZu7_EiVGo,5146
1324
1328
  nautobot/ipam/tests/test_graphql.py,sha256=TueQWXtLIxyYmFM158IhG4DeYcVZbMHlhv09oKJiQAo,1140
1325
1329
  nautobot/ipam/tests/test_jobs.py,sha256=MzskUDArf-ERM2DI_y46tPgt3eDuskqrQru2QuxwjmU,18641
1326
- nautobot/ipam/tests/test_models.py,sha256=NUfQ5ulK7-d0uP_-K9HENg7iQfO6PZFnY9Q5HXjNZ38,109023
1330
+ nautobot/ipam/tests/test_models.py,sha256=2GZUfFjeXn3989XdTWsNRBoMM_2QY-5KoFVnx42qx9w,111632
1327
1331
  nautobot/ipam/tests/test_ordering.py,sha256=lZoOx-W4Lgf16doDNgdsNd8obs0aa7hAWfuXLQi_rDc,1389
1328
1332
  nautobot/ipam/tests/test_querysets.py,sha256=Yg7J8jW03UfJR7VxMjPPlE_fJtkvBsUuSf0yRwcxbFQ,45937
1329
1333
  nautobot/ipam/tests/test_tables.py,sha256=hR6j8gEjqELlfQFRwpz7ry8zMyjPCTmYoBRF8Ikb9Xo,2520
@@ -1565,7 +1569,7 @@ nautobot/users/templates/users/base.html,sha256=Z4uqR1N9La4Wjxv25NqYyj0evbD3x3uB
1565
1569
  nautobot/users/templates/users/change_password.html,sha256=z4nkcUe8-f982m5V0STE39LYdewUw2xUQ0228UPdQr4,1144
1566
1570
  nautobot/users/templates/users/preferences.html,sha256=zOVHW2haLLoJ7VYK7B6LLj9MjDCTubvgNp0dcBuEano,2159
1567
1571
  nautobot/users/templates/users/profile.html,sha256=vOCDKG2OdqnkdIyMUBTHzwJNNsnHqqgV10mfzqhZGlY,726
1568
- nautobot/users/templates/users/sessionkey_delete.html,sha256=R0nopZVo5YIdOF8ry7DmgQwG-o8JR1GfjX4t9ZRhi3o,140
1572
+ nautobot/users/templates/users/sessionkey_delete.html,sha256=8veGmj9BG3EZJLZ6l4DIzLAY8hxUe0U-05CYY0JQ4uY,141
1569
1573
  nautobot/users/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1570
1574
  nautobot/users/tests/test_api.py,sha256=FdAWRAFuT_KfsCVHylyUz-BgCPXqJQd6TJXs1F_a9qw,18123
1571
1575
  nautobot/users/tests/test_filters.py,sha256=b161mYgfQsrAZqohUH_zMtHKwUZHNjT9dJ2O8XX9Ck4,8751
@@ -1573,7 +1577,7 @@ nautobot/users/tests/test_models.py,sha256=elvg-AFVSACNrxJ0aq7uwYon6CsRkjJCmbvGq
1573
1577
  nautobot/users/tests/test_views.py,sha256=hqfTq14mbxiJwgN8AKsPEnJQZ-EBc0-Il4zVf2d_SIE,8431
1574
1578
  nautobot/users/urls.py,sha256=s2SDVxQUvdu3z1V_BmFTmc07vQHniVWGVdgjFpjEAA0,973
1575
1579
  nautobot/users/utils.py,sha256=E0Bcw_QDO5BUUK_jU1lrCmt6-DBlO7GhdNiYpqHJSQo,291
1576
- nautobot/users/views.py,sha256=ZIUSxVDoNAiX52YvjR4Lphj64bRHT8V6bEpZv1DVKs0,13366
1580
+ nautobot/users/views.py,sha256=uu8O4klg5O3Ewtvr5Zt53eQJt9P4E4_4RuUeblFEOkI,13368
1577
1581
  nautobot/virtualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1578
1582
  nautobot/virtualization/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1579
1583
  nautobot/virtualization/api/serializers.py,sha256=wRxm_NfnJixX0NqOJNiKekHfDyl_BEPPt6jMnrfuQTc,2853
@@ -1618,7 +1622,7 @@ nautobot/virtualization/migrations/0028_update_all_charfields_max_length_to_255.
1618
1622
  nautobot/virtualization/migrations/0029_add_role_field_to_interface_models.py,sha256=NCJaSX7JcTlpkTDWIojTiSVETUg5Zbr86QU0OH1dNyI,784
1619
1623
  nautobot/virtualization/migrations/0030_alter_virtualmachine_local_config_context_data_owner_content_type_and_more.py,sha256=p8IAo33hl3F1FfDqxNIP7VvzFGwoyG1bKKufmCA5_dI,2512
1620
1624
  nautobot/virtualization/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1621
- nautobot/virtualization/models.py,sha256=T36nTJBDYycALgCkNhlee72rBkRVMndvHP-bFkwJIEI,14950
1625
+ nautobot/virtualization/models.py,sha256=FMtsjHKAuPUx8h1FZBQKdSaBgoOdHprhCYOY09AOzGE,12213
1622
1626
  nautobot/virtualization/navigation.py,sha256=nPxhdqf8VVHQz21VYTF_tZO6rMs0RNWhwPhreTz8kJY,3648
1623
1627
  nautobot/virtualization/signals.py,sha256=2t3J0H-BRnZj6ypeTVy-7TafxA9wNEfr87LMzjs8UaE,526
1624
1628
  nautobot/virtualization/tables.py,sha256=Aivs2dq6ZRMO3gFAFycuT27IIIfhVBvwlrfhWn_DVKM,6677
@@ -1628,8 +1632,8 @@ nautobot/virtualization/templates/virtualization/cluster_edit.html,sha256=P9vc-s
1628
1632
  nautobot/virtualization/templates/virtualization/clustergroup.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
1629
1633
  nautobot/virtualization/templates/virtualization/clustertype.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
1630
1634
  nautobot/virtualization/templates/virtualization/inc/virtualmachine_vminterface_filter.html,sha256=2C8livCqH7DfWYNPwhGVjL_shW-xwKEAL1IjXGkts8E,368
1631
- nautobot/virtualization/templates/virtualization/virtual_machine_vminterface_delete.html,sha256=T-ZT3pYarc46zEy4UAjsHQka2MqcPcJMgVoMOrVKIZE,154
1632
- nautobot/virtualization/templates/virtualization/virtualmachine.html,sha256=8RIavMJ75-IEcuhfLyATlW-Mjq1bM9jVmYSui4XRt30,186
1635
+ nautobot/virtualization/templates/virtualization/virtual_machine_vminterface_delete.html,sha256=U4KRYgW1AvssZpwzJTezjnWYvD9Regs3b0BN8QQGw4M,155
1636
+ nautobot/virtualization/templates/virtualization/virtualmachine.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
1633
1637
  nautobot/virtualization/templates/virtualization/virtualmachine_component_add.html,sha256=TXpNfAZvHZxDan4E4R0B0ddXr7sTWdZTV4u80N0RjII,1640
1634
1638
  nautobot/virtualization/templates/virtualization/virtualmachine_edit.html,sha256=ccCK7Y-smLhgbY1m8wcSOm9jokhrJqKZE5MdUglyuUM,184
1635
1639
  nautobot/virtualization/templates/virtualization/virtualmachine_list.html,sha256=OEsucQcL85UqD3GLs7P2hGKrH2Q57Z_zrazvr2aIXmA,794
@@ -1641,7 +1645,7 @@ nautobot/virtualization/templates/virtualization/vminterface_edit.html,sha256=0s
1641
1645
  nautobot/virtualization/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1642
1646
  nautobot/virtualization/tests/test_api.py,sha256=uGtEyZtXHCHxsZ0XAS_ZHEooYUCfy5zSuBg9Y8_q9cc,16565
1643
1647
  nautobot/virtualization/tests/test_filters.py,sha256=5S-JVQkKLYYmZCpiBrl9Hsqoz5ZZX6RCGYfD5cGb2YY,26833
1644
- nautobot/virtualization/tests/test_models.py,sha256=Skv2INRTXuiicvP5TL77aKqEzRHTkuxik3NW6s7p6yE,8815
1648
+ nautobot/virtualization/tests/test_models.py,sha256=WPScMmr_aMcjBLHFsK0GFIHUQdcc7eZsVPnDkpJSd-U,10968
1645
1649
  nautobot/virtualization/tests/test_views.py,sha256=6n2KewBvuroEhp_WBeOgCNMNBOCyLqWC07hnIdYffM4,14766
1646
1650
  nautobot/virtualization/urls.py,sha256=7rXIPFaHOF6nAqiBYJI9E_659yxUPNTilcU0ZnpGOC0,2524
1647
1651
  nautobot/virtualization/views.py,sha256=T5gdAd9dyK-Wp5ppeBxZ1yN3i93y5zWIENIYe3DMWdc,19251
@@ -1674,9 +1678,9 @@ nautobot/wireless/tests/test_models.py,sha256=Fpqc8H7qxXhlM8M8EuBVxTu623L58AHW_e
1674
1678
  nautobot/wireless/tests/test_views.py,sha256=_387uMzc_F9xgxdRGu81PkVyDLmNFb1J-vXt3PdQGFA,18781
1675
1679
  nautobot/wireless/urls.py,sha256=yfYcx1WHLx99pBesoaF602_fUQLXHtodWOi7XHtuX4c,395
1676
1680
  nautobot/wireless/views.py,sha256=Mgj-1yUuPuP5_qV-WaQ8ABp4g9fKr9qJlL15qx5nG9I,5472
1677
- nautobot-2.4.20.dist-info/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
1678
- nautobot-2.4.20.dist-info/METADATA,sha256=8O3yrRbKIXFz-R1bjpnEHWNOnLOtx2F4EnLgNT_O2Ic,9889
1679
- nautobot-2.4.20.dist-info/NOTICE,sha256=RA2yQ-u70Ex-APSWYkMN6IdM7zp7cWK0SzmVrqBCcUA,284
1680
- nautobot-2.4.20.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
1681
- nautobot-2.4.20.dist-info/entry_points.txt,sha256=kUwm_Ve_FyUFjcYqTtQWsqJ2JKWPkHFOD8rcK71jX2k,58
1682
- nautobot-2.4.20.dist-info/RECORD,,
1681
+ nautobot-2.4.21.dist-info/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
1682
+ nautobot-2.4.21.dist-info/METADATA,sha256=2E37L0BVyDD4Q0EdlyPjSqxyAwJci0XZyi2lyJ7jMEw,9895
1683
+ nautobot-2.4.21.dist-info/NOTICE,sha256=RA2yQ-u70Ex-APSWYkMN6IdM7zp7cWK0SzmVrqBCcUA,284
1684
+ nautobot-2.4.21.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
1685
+ nautobot-2.4.21.dist-info/entry_points.txt,sha256=42BEJlv0XylqjTQ8gHtZeW-edvylzk8PmlPYe7kf8Fw,148
1686
+ nautobot-2.4.21.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ nautobot-migrate-deprecated-templates=nautobot.core.cli.migrate_deprecated_templates:main
3
+ nautobot-server=nautobot.core.cli:main
4
+
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- nautobot-server=nautobot.core.cli:main
3
-