nautobot 2.4.17__py3-none-any.whl → 2.4.18__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/views.py +2 -0
- nautobot/circuits/templates/circuits/circuittermination_retrieve.html +1 -8
- nautobot/circuits/templates/circuits/inc/circuit_termination_speed_fragment.html +9 -0
- nautobot/circuits/tests/integration/test_circuit.py +2 -2
- nautobot/circuits/views.py +32 -15
- nautobot/core/filters.py +2 -2
- nautobot/core/settings.py +1 -0
- nautobot/core/settings.yaml +9 -0
- nautobot/core/tables.py +21 -23
- nautobot/core/templates/components/breadcrumbs.html +19 -0
- nautobot/core/templates/generic/object_changelog.html +0 -2
- nautobot/core/templates/generic/object_list.html +15 -12
- nautobot/core/templates/generic/object_notes.html +0 -2
- nautobot/core/templates/generic/object_retrieve.html +16 -9
- nautobot/core/templatetags/helpers.py +24 -0
- nautobot/core/templatetags/ui_framework.py +40 -5
- nautobot/core/testing/filters.py +37 -21
- nautobot/core/testing/views.py +25 -0
- nautobot/core/tests/test_tables.py +43 -6
- nautobot/core/tests/test_templatetags_ui_framework.py +146 -0
- nautobot/core/tests/test_titles.py +2 -2
- nautobot/core/tests/test_ui.py +14 -1
- nautobot/core/tests/test_views.py +45 -0
- nautobot/core/ui/breadcrumbs.py +13 -8
- nautobot/core/ui/object_detail.py +43 -5
- nautobot/core/ui/titles.py +9 -5
- nautobot/core/views/__init__.py +24 -3
- nautobot/core/views/generic.py +42 -17
- nautobot/core/views/mixins.py +146 -12
- nautobot/core/views/utils.py +117 -0
- nautobot/dcim/models/devices.py +4 -0
- nautobot/dcim/tables/__init__.py +2 -0
- nautobot/dcim/tables/devices.py +24 -0
- nautobot/dcim/tables/power.py +2 -2
- nautobot/dcim/templates/dcim/device/base.html +1 -11
- nautobot/dcim/templates/dcim/device_component.html +0 -19
- nautobot/dcim/templates/dcim/modulebay_retrieve.html +0 -16
- nautobot/dcim/templates/dcim/virtualchassis_retrieve.html +1 -50
- nautobot/dcim/tests/test_views.py +41 -0
- nautobot/dcim/views.py +160 -39
- nautobot/extras/filters/mixins.py +1 -1
- nautobot/extras/forms/forms.py +15 -0
- nautobot/extras/models/groups.py +10 -1
- nautobot/extras/models/jobs.py +2 -2
- nautobot/extras/plugins/views.py +18 -5
- nautobot/extras/tables.py +4 -2
- nautobot/extras/templates/extras/customfield_retrieve.html +1 -128
- nautobot/extras/templates/extras/dynamicgroup.html +2 -99
- nautobot/extras/templates/extras/dynamicgroup_edit.html +2 -199
- nautobot/extras/templates/extras/dynamicgroup_retrieve.html +99 -0
- nautobot/extras/templates/extras/dynamicgroup_update.html +199 -0
- nautobot/extras/templates/extras/gitrepository.html +2 -82
- nautobot/extras/templates/extras/gitrepository_object_edit.html +2 -13
- nautobot/extras/templates/extras/gitrepository_retrieve.html +82 -0
- nautobot/extras/templates/extras/gitrepository_update.html +13 -0
- nautobot/extras/templates/extras/note_retrieve.html +0 -52
- nautobot/extras/templates/extras/plugin_detail.html +3 -7
- nautobot/extras/templates/extras/plugins_list.html +0 -2
- nautobot/extras/tests/test_dynamicgroups.py +73 -18
- nautobot/extras/tests/test_views.py +5 -0
- nautobot/extras/urls.py +2 -94
- nautobot/extras/views.py +424 -430
- nautobot/ipam/querysets.py +3 -3
- nautobot/ipam/signals.py +6 -1
- nautobot/ipam/templates/ipam/prefix.html +0 -8
- nautobot/ipam/tests/test_api.py +5 -0
- nautobot/ipam/tests/test_models.py +387 -0
- nautobot/ipam/tests/test_querysets.py +46 -0
- nautobot/ipam/utils/migrations.py +1 -1
- nautobot/ipam/views.py +17 -8
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +72 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +45 -9
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +393 -15
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +1 -1
- nautobot/project-static/docs/development/core/getting-started.html +0 -15
- nautobot/project-static/docs/development/core/ui-component-framework.html +6 -11
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/release-notes/version-2.4.html +222 -0
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +300 -300
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +27 -0
- nautobot/project-static/img/nautobot_icon.svg +32 -34
- nautobot/project-static/js/table_sorting_indicator.js +0 -2
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/METADATA +4 -4
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/RECORD +90 -85
- nautobot/core/templates/inc/breadcrumbs.html +0 -14
- nautobot/project-static/docs/requirements.txt +0 -14
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/NOTICE +0 -0
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/WHEEL +0 -0
- {nautobot-2.4.17.dist-info → nautobot-2.4.18.dist-info}/entry_points.txt +0 -0
|
@@ -22,7 +22,7 @@ nautobot/apps/testing.py,sha256=Y1DBB0SSpxxxbfPKC23JFZ5D7aPU_y_0dNqoHXXC1ds,1790
|
|
|
22
22
|
nautobot/apps/ui.py,sha256=0rj_qpuIVBhY3mInrVH3r6qpcmNo7lVsU8Kd27DBIqs,2198
|
|
23
23
|
nautobot/apps/urls.py,sha256=oOma0J9wH3M8Og3y_xtHF8wZ8sc6hwXOdeT6lUooDVQ,156
|
|
24
24
|
nautobot/apps/utils.py,sha256=1queI4QnRP_GeBsIE7rezsMMZxLVX84Qd-RmnhEPfXM,4327
|
|
25
|
-
nautobot/apps/views.py,sha256=
|
|
25
|
+
nautobot/apps/views.py,sha256=icb9nMb-IzRpmaf8Rzf88jNRLLU7WgEsfxRO1BK20M4,2698
|
|
26
26
|
nautobot/circuits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
nautobot/circuits/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
nautobot/circuits/api/serializers.py,sha256=EYXCHveQU-Esh4UYjLVEG0Xbvd16RJ6lFdmwjhxYnWU,1483
|
|
@@ -72,13 +72,14 @@ nautobot/circuits/templates/circuits/circuit_update.html,sha256=CaLhuI28x9Pe7Vpi
|
|
|
72
72
|
nautobot/circuits/templates/circuits/circuittermination.html,sha256=csUEypPh2c6CMqpIRnKbLoq6TH5gJBybqqzyTfv5IgU,185
|
|
73
73
|
nautobot/circuits/templates/circuits/circuittermination_create.html,sha256=2pqz1HdYvblN_9fO5rDh6HbUKe1m4N4fcQ_1L5MaYbU,4684
|
|
74
74
|
nautobot/circuits/templates/circuits/circuittermination_edit.html,sha256=J5eLg3FosqJ4o-bK1ioi2VzaRFYbcZa0sfRu6DsQ8yE,183
|
|
75
|
-
nautobot/circuits/templates/circuits/circuittermination_retrieve.html,sha256=
|
|
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
77
|
nautobot/circuits/templates/circuits/circuittype.html,sha256=onRlyqy7KQpGQkuYba7txeXwEPAtR9pLcbA-55ql5oo,178
|
|
78
78
|
nautobot/circuits/templates/circuits/circuittype_retrieve.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
|
|
79
79
|
nautobot/circuits/templates/circuits/inc/circuit_termination.html,sha256=M_yWtnupUo-HXHpynx9Ij8OYwQP7WbZQkgWi5safqM4,3464
|
|
80
80
|
nautobot/circuits/templates/circuits/inc/circuit_termination_cable_fragment.html,sha256=JucAJCWK_1HKzTBd3ONrLg2feXahTJQUpYVQal8n4CE,2604
|
|
81
81
|
nautobot/circuits/templates/circuits/inc/circuit_termination_header_extra_content.html,sha256=Q0DGG1nEIjDjXHBIxGwAGGOLPws1jX-RKqIoe6I_HFU,1425
|
|
82
|
+
nautobot/circuits/templates/circuits/inc/circuit_termination_speed_fragment.html,sha256=sSTLIaPRfvh5lQdCjogV8wpdQdU28qxCQ9xxTSYL5wA,405
|
|
82
83
|
nautobot/circuits/templates/circuits/inc/speed_widget.html,sha256=XYth40i-Q6g5_u0cCGl95STM2dlKFfYOsA2UADf6F-Q,1205
|
|
83
84
|
nautobot/circuits/templates/circuits/provider.html,sha256=pQPV4DgU2_2NrcItc27z55YXkUqdfbdiMvKtO7Gy338,175
|
|
84
85
|
nautobot/circuits/templates/circuits/provider_create.html,sha256=YEGTLvoR9ZsTNf4yTioc-g7WyGaljylN9pxToeIRQSw,973
|
|
@@ -89,7 +90,7 @@ nautobot/circuits/templates/circuits/providernetwork.html,sha256=K42IWith8UtxGdA
|
|
|
89
90
|
nautobot/circuits/templates/circuits/providernetwork_retrieve.html,sha256=uy5sVqXmvqDkv3S_DT_Z78DB0s81UQyPuZwzCzdMSMA,230
|
|
90
91
|
nautobot/circuits/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
92
|
nautobot/circuits/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
-
nautobot/circuits/tests/integration/test_circuit.py,sha256=
|
|
93
|
+
nautobot/circuits/tests/integration/test_circuit.py,sha256=yXyf3_pKBzCG-yHm9lqe1uECsNyO0Noeh2qM6rcknRU,6477
|
|
93
94
|
nautobot/circuits/tests/integration/test_circuits_bulk_operations.py,sha256=8lqnSQh6gjWhOV1ep84zGqiSd1tRt3Hwm3_MxanNpzQ,1374
|
|
94
95
|
nautobot/circuits/tests/integration/test_relationships.py,sha256=VPXy3d0sqN6ccy9MAttS6x7iAc_Jo9BFyike4ZQFidU,6242
|
|
95
96
|
nautobot/circuits/tests/test_api.py,sha256=B52ymZflm8hbEKngltrDT_5Oq5zIOEuBxVjZ-PLVdfw,10286
|
|
@@ -98,7 +99,7 @@ nautobot/circuits/tests/test_models.py,sha256=PCGQkqFlJBabeh5FnNPvE0AKixyBY7O4St
|
|
|
98
99
|
nautobot/circuits/tests/test_urls.py,sha256=Wffz2brIFBoN3X5hJn4SzEadl-bXlPanLqxLgwb2E2o,1166
|
|
99
100
|
nautobot/circuits/tests/test_views.py,sha256=a4-Yo9qEA0b20a2HnLlcKfqDb8BQ3ODSYtbQfCSzqf0,12169
|
|
100
101
|
nautobot/circuits/urls.py,sha256=bRiJzzSFMNpwl3RlM89NfozLUAk3pfmbSYJ4u9IwZDk,1416
|
|
101
|
-
nautobot/circuits/views.py,sha256=
|
|
102
|
+
nautobot/circuits/views.py,sha256=U1YQSRX2RNi3V65qPw9bATMBV-I3NdsnLyZ1u3_8m3g,18556
|
|
102
103
|
nautobot/cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
104
|
nautobot/cloud/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
105
|
nautobot/cloud/api/serializers.py,sha256=88TTH9z_9NtSOK1KVtyyBhSe3kmkhiC1WCB_ZVKRLVk,1536
|
|
@@ -169,7 +170,7 @@ nautobot/core/events/redis_broker.py,sha256=yPH_rsMelhL6n16ixsk5UqX1PQoIk-t6u7nz
|
|
|
169
170
|
nautobot/core/events/syslog_broker.py,sha256=RR9wrpOxiWBK1pEfmdaXd72wgJQZVRN5qml5H58oIfE,612
|
|
170
171
|
nautobot/core/exceptions.py,sha256=Z3XMLz8P-Tgrv-7MlUlyH2a88PjLu2uHZf4zwkdioyA,1085
|
|
171
172
|
nautobot/core/factory.py,sha256=cCoULZkVnfZdo27RLwStG9sPzNnXmlrDOghwGxkloGg,10279
|
|
172
|
-
nautobot/core/filters.py,sha256=
|
|
173
|
+
nautobot/core/filters.py,sha256=8AGGNmee2lzvkDL-GaufdU0JltlpzRQWK5hZJUJTpLE,37490
|
|
173
174
|
nautobot/core/forms/__init__.py,sha256=ycVGQHwHNYltitywLlTiIXZTaTQ6of8DQu0Osont4VY,3610
|
|
174
175
|
nautobot/core/forms/constants.py,sha256=VTocTEPex6D4aaxqK9CUqmajWChbyC59cw4XGs7ZiF0,499
|
|
175
176
|
nautobot/core/forms/fields.py,sha256=X_1g2qehqy500BjKYlFJfw3utJvx0jnGwBdJxb-Erkw,33082
|
|
@@ -217,11 +218,11 @@ nautobot/core/models/tree_queries.py,sha256=EwFD12ZuaQXrtuG3mKHZrzKNKOGklTERR_Sm
|
|
|
217
218
|
nautobot/core/models/utils.py,sha256=EQYCWpEnWyYvXDWQhqoxkZOodK5JvR7TPxNGGVgGikg,10788
|
|
218
219
|
nautobot/core/models/validators.py,sha256=ckZuqwAjxFb1b_X5t0j3oPqmDv2TvDsYC-OJKOMNoWY,2089
|
|
219
220
|
nautobot/core/releases.py,sha256=fqbWLBaYI8rlxfCGDhOaUCpbHAbFHGIsNX9DWgw0XeE,1214
|
|
220
|
-
nautobot/core/settings.py,sha256=
|
|
221
|
-
nautobot/core/settings.yaml,sha256=
|
|
221
|
+
nautobot/core/settings.py,sha256=msWmpcSryzFyEp4mmpbMjoDFdlWSt1am9ZDpZyZunWc,51185
|
|
222
|
+
nautobot/core/settings.yaml,sha256=tGaN8M9I7Zh2fbTs9ERrGjyU-kuLkyKd1x8G1MDHW_4,88469
|
|
222
223
|
nautobot/core/settings_funcs.py,sha256=QQ_olczPhH0r6yT6qNZ6YAqTEK06ZkhemprvAHv9PR0,6579
|
|
223
224
|
nautobot/core/signals.py,sha256=oteF3tAsHnFEPsNG1bp1SGJA0fIzsKIDEO9wF5Wq_N0,2853
|
|
224
|
-
nautobot/core/tables.py,sha256=
|
|
225
|
+
nautobot/core/tables.py,sha256=JRZgwg_6W6Y--LJjGJncBMVs9UNMT0LwaUxyWDelEDM,33269
|
|
225
226
|
nautobot/core/tasks.py,sha256=eitDpGSum6DHxeI7lCm_sUMHEaOC1SFx0TFcmC8txow,2102
|
|
226
227
|
nautobot/core/templates/403.html,sha256=J-47-TSCkhxcsIlXYQDZmXkZswayCkA_AUpJALtGMPE,219
|
|
227
228
|
nautobot/core/templates/403_csrf_failure.html,sha256=cfjvIeNvsEU32fX4oWarfVGJD0TmkDnYgmljJxGYFb8,504
|
|
@@ -258,6 +259,7 @@ nautobot/core/templates/buttons/edit.html,sha256=MH04TKdY5XbdqDRb0hNtoDzvlOK6FLh
|
|
|
258
259
|
nautobot/core/templates/buttons/export.html,sha256=zN4p97Hqh28Blgz91mZhuQXJqvAC2ZXP2sGsvxAkkQg,6619
|
|
259
260
|
nautobot/core/templates/buttons/import.html,sha256=hnmN6Rp5WhHREks-HboluWqK3cNHwpO0ikNHHYkAKTQ,385
|
|
260
261
|
nautobot/core/templates/buttons/job_import.html,sha256=vPnzd0cDcwXDdi00hONnmKbeCcClLDmE994tvWShPL4,473
|
|
262
|
+
nautobot/core/templates/components/breadcrumbs.html,sha256=ANJQuAMfUqDr3E-ZCGOBh03ZNO56wDf3F6u8xYaOC5A,510
|
|
261
263
|
nautobot/core/templates/components/button/default.html,sha256=YAWXOroc69QxvnorHWkT0CzipJaB-ZxNihnphEBUCu8,363
|
|
262
264
|
nautobot/core/templates/components/button/dropdown.html,sha256=9wgd6Nn16IsnMjMn5GIjv6z7fzlXub4tfjPziq9_e_k,873
|
|
263
265
|
nautobot/core/templates/components/button/formbutton.html,sha256=LG8y3Sm4agsNyDBMyA4BwLsvFHq5IF9cpcyVxG2C6pc,328
|
|
@@ -291,22 +293,21 @@ nautobot/core/templates/generic/object_bulk_import.html,sha256=mCjp49wCyShqUV3PT
|
|
|
291
293
|
nautobot/core/templates/generic/object_bulk_remove.html,sha256=D81opvPSRBGJAMYxBn_71Ah2XnxqNuKQzh8NPDpO8-w,1546
|
|
292
294
|
nautobot/core/templates/generic/object_bulk_rename.html,sha256=xZuaiZngg8uUPByYQRWMyTVGK70b3Cxh9OZpJVcFbb8,2311
|
|
293
295
|
nautobot/core/templates/generic/object_bulk_update.html,sha256=sPjHHEZt6kQOgUnDGPzY3fKPd-VepfthGqR5UcuibB0,2701
|
|
294
|
-
nautobot/core/templates/generic/object_changelog.html,sha256=
|
|
296
|
+
nautobot/core/templates/generic/object_changelog.html,sha256=zEBVCmSUL-n1l5L4gqojr4rDHfn73hPDXrHa1K5_wv0,187
|
|
295
297
|
nautobot/core/templates/generic/object_create.html,sha256=2Vs0HvFJRapuqhLv1DHpA_xPZfx8kK-Q8_jFWCXdegM,3209
|
|
296
298
|
nautobot/core/templates/generic/object_delete.html,sha256=oIXjnJvj0wfF1Q0Zx8slRVrRy6voXJ8Mjcdn7DVip1Y,171
|
|
297
299
|
nautobot/core/templates/generic/object_destroy.html,sha256=-_tjSgRII2GgmN_q_wiIbukvC-gCZ1CAFfee57JrgIg,294
|
|
298
300
|
nautobot/core/templates/generic/object_detail.html,sha256=buVo09WstBKbcvAMx5GGP2LO3Q495YrzM7kKM_OW6XI,172
|
|
299
301
|
nautobot/core/templates/generic/object_edit.html,sha256=fIHW00aN2TjyEBSb8ll78mtX9mAHJXcv6cw8PXNEhvw,170
|
|
300
302
|
nautobot/core/templates/generic/object_import.html,sha256=caV6bmARZb1QacDjY_KWAL1Kes7BT-fQZK_yZjYsvQ4,1621
|
|
301
|
-
nautobot/core/templates/generic/object_list.html,sha256=
|
|
302
|
-
nautobot/core/templates/generic/object_notes.html,sha256=
|
|
303
|
-
nautobot/core/templates/generic/object_retrieve.html,sha256=
|
|
303
|
+
nautobot/core/templates/generic/object_list.html,sha256=o6IAt0Moa947a_KWCNX9eY7pDbLKLJdPb-INmnasGLQ,15542
|
|
304
|
+
nautobot/core/templates/generic/object_notes.html,sha256=xIXCXbCg7wuk6sIlA5lqwCtq-y12eYy3Hu-d5o6cXqo,1340
|
|
305
|
+
nautobot/core/templates/generic/object_retrieve.html,sha256=9BOpZtYwZYsROQ4x-aSFaLrPyzPY45qoBcHvu8JBSXc,18496
|
|
304
306
|
nautobot/core/templates/generic/object_update.html,sha256=BYSEMLv__KK0LGE_UmoPPpIHhc58y6KwH-8L8GokOCY,226
|
|
305
307
|
nautobot/core/templates/graphene/graphiql.html,sha256=vyYTtYSohSs9MfNGyuYuoa7Z_2pCdTx-5btOA2ajKzE,8335
|
|
306
308
|
nautobot/core/templates/home.html,sha256=vfnYXyy_P_0rvy4PflT4sruSPZ0vK02_go4hsUiA3H8,9185
|
|
307
309
|
nautobot/core/templates/import_success.html,sha256=y4sDVM6UsW-mc6pBqseiM1bKMAtC9AcnMVymCidU744,445
|
|
308
310
|
nautobot/core/templates/inc/ajax_loader.html,sha256=j0STs41R93il4cjXpJQ3Q52-RHzwJX51R9WiucAITzI,112
|
|
309
|
-
nautobot/core/templates/inc/breadcrumbs.html,sha256=kxeM3TwjPEdxHla_M5g0hdyy-aD8gwImeidqsw9MhNw,405
|
|
310
311
|
nautobot/core/templates/inc/computed_fields/panel_data.html,sha256=NMPsit8lXAlGX7ZoXDzqvSpsQUZc_BOdF5t5UdcTeoo,1644
|
|
311
312
|
nautobot/core/templates/inc/created_updated.html,sha256=2VpvW0esCjvTcmLf-HBNjzF7-we_W0JeOwTobYSYPZ4,366
|
|
312
313
|
nautobot/core/templates/inc/custom_fields/panel.html,sha256=R1X3j98Y1UYR5LD3K08aBsH-E7YXiJbrdBq0d1WzZXE,209
|
|
@@ -370,14 +371,14 @@ nautobot/core/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
370
371
|
nautobot/core/templatetags/bootstrapped_goodies_tags.py,sha256=qDcDOHBwHPtekwh1HfyiK0n6s_ONwEQlY2NXaoRxII0,4121
|
|
371
372
|
nautobot/core/templatetags/buttons.py,sha256=9GxeRfZB39eMehHmF2P1wLW6MH3VoPQelBLa9ICIrOQ,16383
|
|
372
373
|
nautobot/core/templatetags/form_helpers.py,sha256=3duGYrTIEWu67HGQSlr_xaP6yNL-3Yf5HLntuaSdYCc,1690
|
|
373
|
-
nautobot/core/templatetags/helpers.py,sha256=
|
|
374
|
+
nautobot/core/templatetags/helpers.py,sha256=BknHc3vO6hN0yO_lk7xzTaQf5gERg8lKkdFpmLMP2XQ,46698
|
|
374
375
|
nautobot/core/templatetags/netutils.py,sha256=P7SeV9KqWtlgZiFy_E1qxqaJHv4Xg4ObiuFzYiHhP4I,375
|
|
375
376
|
nautobot/core/templatetags/perms.py,sha256=rItjknijsZW83jXkmPezGXwzPyJc3VdAYlLJy0SIhrE,665
|
|
376
|
-
nautobot/core/templatetags/ui_framework.py,sha256
|
|
377
|
+
nautobot/core/templatetags/ui_framework.py,sha256=NC3dBtdiJZBCv9ZU7orYczUT2qtFVxz4Y2C788R9JN8,4804
|
|
377
378
|
nautobot/core/testing/__init__.py,sha256=A1xmJiw5e4KIt1D7QPHTcsjaNuU_odBnAYrMeRPI2go,4534
|
|
378
379
|
nautobot/core/testing/api.py,sha256=rL0uVsoYro7AA0ZLXu2LpudxYlAKOBAFOX7XDEYZVSo,62601
|
|
379
380
|
nautobot/core/testing/context.py,sha256=Th0yRe1BOjQWVrGPjMOQhex5MPQ-gjxZZR1MosTI8JM,598
|
|
380
|
-
nautobot/core/testing/filters.py,sha256=
|
|
381
|
+
nautobot/core/testing/filters.py,sha256=vbu_MziQB34BHjmPXUgJV31mPmWejVSGY_vcgHskqHA,26523
|
|
381
382
|
nautobot/core/testing/forms.py,sha256=Ni0j5c6vsBSUfZ5qBcF4jae1E_1OCInWIVzmXgDotUg,1667
|
|
382
383
|
nautobot/core/testing/integration.py,sha256=25CIaXyphvzomYvBJMShso-9P48aF9_PA27K5BaOQdU,28009
|
|
383
384
|
nautobot/core/testing/migrations.py,sha256=Vai5Iv58RCINHszBAu4cL3y6lKg2zu_wtOQOPUeljpA,1604
|
|
@@ -385,7 +386,7 @@ nautobot/core/testing/mixins.py,sha256=oqucCxuwJEuQ2FY5iLOXO_JJVW3C2wzo4fTDORdgj
|
|
|
385
386
|
nautobot/core/testing/models.py,sha256=IMwZ4HNToX60iM2M1U_4R7nxLA8UUHXR01kSDtwBF8s,3294
|
|
386
387
|
nautobot/core/testing/schema.py,sha256=-AQe921CH7M0j-YZ-kDzXz2e5gmU2lV_pj_P5lnpRP4,6856
|
|
387
388
|
nautobot/core/testing/utils.py,sha256=a0m-5ThO50IGY4RAjOY1DwAc-nzD-NTjjN1zoESfWs4,3604
|
|
388
|
-
nautobot/core/testing/views.py,sha256=
|
|
389
|
+
nautobot/core/testing/views.py,sha256=_yo4-4d1EpUU18czyhZIKYKhCqh4BXUgKltzM_soJYo,79908
|
|
389
390
|
nautobot/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
391
|
nautobot/core/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
391
392
|
nautobot/core/tests/integration/test_app_home.py,sha256=omnM2kK8GIM62RKaYJQVGrVHtIzDhFwsIwcXN635wmE,5851
|
|
@@ -427,24 +428,25 @@ nautobot/core/tests/test_ordering.py,sha256=s_SyMz0J08aLQe5MPoLciXZB9W6g7XI6D5c-
|
|
|
427
428
|
nautobot/core/tests/test_paginator.py,sha256=1fP3_kkWW83CUJl2K7agQWr-3zgTb_NuPzQjysMi0RQ,6581
|
|
428
429
|
nautobot/core/tests/test_releases.py,sha256=ttUIF9liTxhm1KhsOrBnW9KrPhpe_D6lDO7zkfBM7Mw,6447
|
|
429
430
|
nautobot/core/tests/test_settings_schema.py,sha256=vJmjUW0tSnnH2VbiRE4EeHoLOWE8JtLnW6y860XulPk,13839
|
|
430
|
-
nautobot/core/tests/test_tables.py,sha256=
|
|
431
|
+
nautobot/core/tests/test_tables.py,sha256=D-eeEKrVQR8NiczzhmG7j5qDJMSAUOA2B6wPeJzd_vE,9381
|
|
431
432
|
nautobot/core/tests/test_templatetags_helpers.py,sha256=eR1yKLRhIv1ngY88EEtN3x273LdTviH40G3SZ6DksM0,16696
|
|
432
433
|
nautobot/core/tests/test_templatetags_netutils.py,sha256=GSjUPovPDpP1x5PTluZEYaqSTWLUAvVclSXdeBn_uiE,2561
|
|
433
|
-
nautobot/core/tests/
|
|
434
|
+
nautobot/core/tests/test_templatetags_ui_framework.py,sha256=Gj7BmmFHOQppKlmIKGWeHvjj9ONs8t_kJwjYQbxabDk,5008
|
|
435
|
+
nautobot/core/tests/test_titles.py,sha256=bNysqqQ2Y2BptLvU9WOoCoLlfyHjxn1KwIL_y8qS25I,7604
|
|
434
436
|
nautobot/core/tests/test_tree_queries.py,sha256=fWap4Ih192AYgCS1majU1CA4Cs2InHQ-SKF8oXM-2kY,4214
|
|
435
|
-
nautobot/core/tests/test_ui.py,sha256=
|
|
437
|
+
nautobot/core/tests/test_ui.py,sha256=fWm-mkXoTspCgm8fDoGR6u8--aOZnnKStFlnvq5ljx8,8649
|
|
436
438
|
nautobot/core/tests/test_utils.py,sha256=_eKinTM5I720k9f2E5XmP9jZQnCv3oQRnsX8wtcQc7E,44519
|
|
437
|
-
nautobot/core/tests/test_views.py,sha256=
|
|
439
|
+
nautobot/core/tests/test_views.py,sha256=YgK5pn2nIYVGZ9IDYkAEih6-R_j0kQcJr2por5bZVTM,38427
|
|
438
440
|
nautobot/core/tests/test_views_utils.py,sha256=Kj1M8WYJWRSXQ-456XM312dF-p20caz6eg1fMhF7Rco,10299
|
|
439
441
|
nautobot/core/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
440
442
|
nautobot/core/ui/base.py,sha256=tg8MQ1S_fs2m6pjIHoIX7cFDDVHCnV-8yjToOV9Be-4,446
|
|
441
|
-
nautobot/core/ui/breadcrumbs.py,sha256=
|
|
443
|
+
nautobot/core/ui/breadcrumbs.py,sha256=tEMBkILIC3ghXuseU6R4ax94KXASWF_ogztuHaC6vG8,21560
|
|
442
444
|
nautobot/core/ui/bulk_buttons.py,sha256=1DGhRu-ZbW9Sr4auBV8WmP4lunRHt-kdhke4aFNQbVY,1310
|
|
443
445
|
nautobot/core/ui/choices.py,sha256=oTIGzv5rH_xxqhZ0GVBh_tWdkRsrMcV0OPQUNQn65n8,1392
|
|
444
446
|
nautobot/core/ui/homepage.py,sha256=duhnoDnjL2u_67QhAwOkI_4797W9ycKyF9fVL8b8P00,5256
|
|
445
447
|
nautobot/core/ui/nav.py,sha256=k5HNWT2qpm89yCf_ZY8EzjiTeorAW0KGBexWE0sBslI,9811
|
|
446
|
-
nautobot/core/ui/object_detail.py,sha256=
|
|
447
|
-
nautobot/core/ui/titles.py,sha256=
|
|
448
|
+
nautobot/core/ui/object_detail.py,sha256=HPcFJ3wA3xDEylzKOGLId_i-4BHQFPpl1w_jLCDb2ig,90607
|
|
449
|
+
nautobot/core/ui/titles.py,sha256=2bKUTVuJBesUxp_JTwi3VMfRtg5wDAMY3rLOzHTlrmY,5172
|
|
448
450
|
nautobot/core/ui/utils.py,sha256=lKQ7m73Z_bc5FDPP0Yjcu3prCMP-AB-05rNeCalCYYA,2036
|
|
449
451
|
nautobot/core/urls.py,sha256=-crIwkn1zkCXFi9_GShJx_JxPCC-skGWc_I_2hmyjXg,4236
|
|
450
452
|
nautobot/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -461,13 +463,13 @@ nautobot/core/utils/module_loading.py,sha256=oNBPiaRKts4wqvPTzvuZ0sz5PeGlS23lQO_
|
|
|
461
463
|
nautobot/core/utils/permissions.py,sha256=KFtDvCm3aS4qCmLCKvOGKGsSSBlv2xMW8IQ4ZR-2NaY,3344
|
|
462
464
|
nautobot/core/utils/querysets.py,sha256=Fsftouekyf8POFNQfDJhLBVLbJr2dtpZsleEFFtpzYE,2517
|
|
463
465
|
nautobot/core/utils/requests.py,sha256=DWNYzVhBQLxMxfOSYtVsdZH1YW3PjgaWQsCiAp3as4M,9253
|
|
464
|
-
nautobot/core/views/__init__.py,sha256=
|
|
465
|
-
nautobot/core/views/generic.py,sha256=
|
|
466
|
-
nautobot/core/views/mixins.py,sha256=
|
|
466
|
+
nautobot/core/views/__init__.py,sha256=crfYo3RE9uD0H7EeIaKO7uDIHZRqULkHtlxPbqLiaos,24220
|
|
467
|
+
nautobot/core/views/generic.py,sha256=44Q0UGcOHu0smfbzWw0dpVBgHyDQPkpQqqPwK3i285U,66835
|
|
468
|
+
nautobot/core/views/mixins.py,sha256=ecFA9OjZeGSp3_iw3tIGNX5GrTrl_CkwKQf-4PIW9OU,66865
|
|
467
469
|
nautobot/core/views/paginator.py,sha256=rKJLBbOA4jrL69q_eyFxY6Dpli25ydn2-2FOMcQe1zE,2677
|
|
468
470
|
nautobot/core/views/renderers.py,sha256=CXBgQzXhy_0J1B4k0cmqu3vUTZh1qePWLeOMLjfDlks,18778
|
|
469
471
|
nautobot/core/views/routers.py,sha256=xdfNWuMRKF5woyrH3ISMDf8Y_ajSWMf0LTUMW0fs9bQ,2706
|
|
470
|
-
nautobot/core/views/utils.py,sha256=
|
|
472
|
+
nautobot/core/views/utils.py,sha256=Wz-nUKRGTTKnu5j2bYn8hD0pt28jgndmKhRpXMyP43Q,22619
|
|
471
473
|
nautobot/core/views/viewsets.py,sha256=cqp9un4F9n4-TlZ7iVks-0w3IjSQxcex-bFYo490BGs,727
|
|
472
474
|
nautobot/core/wsgi.py,sha256=cujlOp6n3G0IjNSR6FMEzkIBV2uQI8UK7u3lEE7j1Xs,1184
|
|
473
475
|
nautobot/dcim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -574,18 +576,18 @@ nautobot/dcim/models/__init__.py,sha256=e_wjTrFPKOWfhLGpODXzythmD7q9fEEp4WWGfJpy
|
|
|
574
576
|
nautobot/dcim/models/cables.py,sha256=3lnM-CJ4iDecLSVtyuykeuckhQG_Dhqsm3CwVe7_zhA,20071
|
|
575
577
|
nautobot/dcim/models/device_component_templates.py,sha256=GQzs81oJRncv3WtUyu7c9NAxFcKjNReI7F-u34zrBm8,18834
|
|
576
578
|
nautobot/dcim/models/device_components.py,sha256=mC8wcGAmdYDTfKSHNNB-t58vgImWXyuLj2ANdqQSzhw,48410
|
|
577
|
-
nautobot/dcim/models/devices.py,sha256=
|
|
579
|
+
nautobot/dcim/models/devices.py,sha256=giG73JUy8w7YDw_WylN1Xez2_DZXgHIE-_qyaTeVOtw,79626
|
|
578
580
|
nautobot/dcim/models/locations.py,sha256=ZbX5sAy3UM9N-w7o25jf9AUMSJJ_qac2MKteRU1mcGw,13582
|
|
579
581
|
nautobot/dcim/models/power.py,sha256=LCvk4K6O25S7rb7QNUdW5UiE344gC7er1usN-kbJhRU,13242
|
|
580
582
|
nautobot/dcim/models/racks.py,sha256=E8_UeWRC7L3bjjyyNHVGEO3c8TakIwp77PrpUmJ-Ie4,20421
|
|
581
583
|
nautobot/dcim/navigation.py,sha256=SrBafOObYMk6CsvviGdFUXzGdqRZsgqRvorFyuyBtd0,22229
|
|
582
584
|
nautobot/dcim/signals.py,sha256=fvyeoPe4HJCbuOl0TNX79RE6CJA0CvqV9r_eryrDHc8,13783
|
|
583
|
-
nautobot/dcim/tables/__init__.py,sha256=
|
|
585
|
+
nautobot/dcim/tables/__init__.py,sha256=YqScmDjAvRP4iPkMnzZNHLOuGKzGsImv8igcEaKiBUk,6005
|
|
584
586
|
nautobot/dcim/tables/cables.py,sha256=sOTlvmdTaqTMrc7sCw_tWrjcIOGw8VJDvlS4X8p7PwQ,2023
|
|
585
|
-
nautobot/dcim/tables/devices.py,sha256=
|
|
587
|
+
nautobot/dcim/tables/devices.py,sha256=ysNVqwoadA6RRMg3y_CZlL4uJ45U0F-WVWCW-uWokbg,45409
|
|
586
588
|
nautobot/dcim/tables/devicetypes.py,sha256=eIP-OrWAi2BHJh8f3HDBocFIpgGjlb1mAJJE6rUCzeA,9674
|
|
587
589
|
nautobot/dcim/tables/locations.py,sha256=InHxiaeg41NKYTh_TBQYjvicpcfXFJ1hjVd2RTyiJzA,2263
|
|
588
|
-
nautobot/dcim/tables/power.py,sha256=
|
|
590
|
+
nautobot/dcim/tables/power.py,sha256=ceMreLkGnPXqV68GhkRf5-auyWhbsieRX_EyaDseezs,3155
|
|
589
591
|
nautobot/dcim/tables/racks.py,sha256=P0PGMxir_ti33TCPjlPA_BdBFUaxxN8uCeEE0aXYYn8,4577
|
|
590
592
|
nautobot/dcim/tables/template_code.py,sha256=W14heOi25LdAt46PNzHvcyaeQOphkwLAHqtZ4wkUZtQ,16301
|
|
591
593
|
nautobot/dcim/templates/dcim/bulk_disconnect.html,sha256=jw-3-avxaYqQ0okK-2gUKj9SiWPvOH17WnQ1XLNEEUA,400
|
|
@@ -604,7 +606,7 @@ nautobot/dcim/templates/dcim/controller_retrieve.html,sha256=wAGvlQxw6gupxARY_NL
|
|
|
604
606
|
nautobot/dcim/templates/dcim/controller_wirelessnetworks.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
|
|
605
607
|
nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html,sha256=USL_HrAU-NjIIM-LW8H_IaEI0JubnPllJvEsytyNF_Q,6231
|
|
606
608
|
nautobot/dcim/templates/dcim/controllermanageddevicegroup_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
|
|
607
|
-
nautobot/dcim/templates/dcim/device/base.html,sha256=
|
|
609
|
+
nautobot/dcim/templates/dcim/device/base.html,sha256=HcYXSe23JSbfEA2HCPy8OK088_6WZ6rbVJBJTeNx94M,5820
|
|
608
610
|
nautobot/dcim/templates/dcim/device/config.html,sha256=p3SipzMiKYuq90rqaZ0UAWZxforkKQp89Xa81t3D17s,2228
|
|
609
611
|
nautobot/dcim/templates/dcim/device/consoleports.html,sha256=E-JziUiO7GMsyBIfPImtzbX2QUl1IoMK5jJ6_L7aMfc,3007
|
|
610
612
|
nautobot/dcim/templates/dcim/device/consoleserverports.html,sha256=bDXoadJSxO5m_NDbxiO0-LO9rS9Uoy4TUNpHhBUSKqU,3103
|
|
@@ -620,7 +622,7 @@ nautobot/dcim/templates/dcim/device/rearports.html,sha256=VF9pDCnND7uBNRyvpsqILv
|
|
|
620
622
|
nautobot/dcim/templates/dcim/device/status.html,sha256=v7jOr0dg-2QrYvL3eyafVfZ9xVi-_1jAlohw3CQgYf8,5954
|
|
621
623
|
nautobot/dcim/templates/dcim/device/wireless.html,sha256=esoeY6Hn7BCCv2-K7uma1eYh8kHd07qpG4Sa_TGNfEM,2879
|
|
622
624
|
nautobot/dcim/templates/dcim/device.html,sha256=VXnR0jfqJh0UN8um1sQFY85NzHsqATCUhpClhpXp_C4,27559
|
|
623
|
-
nautobot/dcim/templates/dcim/device_component.html,sha256
|
|
625
|
+
nautobot/dcim/templates/dcim/device_component.html,sha256=-pVrsbW1JCLMIJ03D75UvHsoty4VfuQ879UAYBTjzno,64
|
|
624
626
|
nautobot/dcim/templates/dcim/device_component_add.html,sha256=Xyzy_N3Kv_34GGa_TmZXZlgZ69KYH-ko4fz3FEmMyv4,1491
|
|
625
627
|
nautobot/dcim/templates/dcim/device_component_edit.html,sha256=Lf15JwrB54I5M-UXa_E46XRmpt4He5qXK9IRaKVicBc,153
|
|
626
628
|
nautobot/dcim/templates/dcim/device_edit.html,sha256=vx07y1qcI3a4b_NpqUzVwGw8fr9_CozICHG0WjrJ9aw,10464
|
|
@@ -687,7 +689,7 @@ nautobot/dcim/templates/dcim/module_retrieve.html,sha256=6Eg8fCQUyrYC7Or3WDfFXsl
|
|
|
687
689
|
nautobot/dcim/templates/dcim/module_update.html,sha256=Iv-lOV_IWFEcXKZ3rUWBMvjtx_F087YGCJrmiZw98oY,4566
|
|
688
690
|
nautobot/dcim/templates/dcim/modulebay_bulk_destroy.html,sha256=p0vOy_MJWPsjjCaPwh9BnqCU-sd2ygJcWKQHtVIMT3o,170
|
|
689
691
|
nautobot/dcim/templates/dcim/modulebay_destroy.html,sha256=9iwzW-dRvaH1LfkaM4Yh4mYGa7pmXaueSLAATLWqoQg,285
|
|
690
|
-
nautobot/dcim/templates/dcim/modulebay_retrieve.html,sha256=
|
|
692
|
+
nautobot/dcim/templates/dcim/modulebay_retrieve.html,sha256=NOyi4CxB-j_1fZvB8TK6ynyJ81uc2wx1psyZ8w15Pbs,4470
|
|
691
693
|
nautobot/dcim/templates/dcim/modulebay_update.html,sha256=xnEw308FtG0Tlk98zwud8Vd9NQTe2J6Vl-KxTLOi4Qg,1540
|
|
692
694
|
nautobot/dcim/templates/dcim/modulefamily_retrieve.html,sha256=9cd703rfFBxBha1uu-elKI3IvAIAe3MHKVZAL028O54,968
|
|
693
695
|
nautobot/dcim/templates/dcim/moduletype_list.html,sha256=IKDagmDagaASRsZtBZn9XHxoR4rAevPuDSIa5sLaB5c,504
|
|
@@ -729,7 +731,7 @@ nautobot/dcim/templates/dcim/virtualchassis_add_member.html,sha256=xK1F4Bfl8yUS0
|
|
|
729
731
|
nautobot/dcim/templates/dcim/virtualchassis_create.html,sha256=t2StHyUA63a9Tz5iAUhWn4fhLMY5iFIhQ-4AJN969s8,769
|
|
730
732
|
nautobot/dcim/templates/dcim/virtualchassis_edit.html,sha256=XsxxNYXwy0TxNYuBpyp3qvIsbKWGd2k4uYucViKdz4M,169
|
|
731
733
|
nautobot/dcim/templates/dcim/virtualchassis_remove_member.html,sha256=cKe8i7wbJtR7nZQh5iGN3sP6EYlAyr4G-Z42uwNqd6o,296
|
|
732
|
-
nautobot/dcim/templates/dcim/virtualchassis_retrieve.html,sha256=
|
|
734
|
+
nautobot/dcim/templates/dcim/virtualchassis_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
|
|
733
735
|
nautobot/dcim/templates/dcim/virtualchassis_update.html,sha256=TJLJ83qU0kGhhGmzVVrOGGgj1MJb3vzgLhfa0ay2s_w,5107
|
|
734
736
|
nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html,sha256=BN9Lfc768xdfDD33Sk_jF0b9bN8BtMYm6M9JzKWM6vo,219
|
|
735
737
|
nautobot/dcim/templates/dcim/virtualdevicecontext_update.html,sha256=B5v2MUOdRR8c_aR9l3RNXYf8SIl9Yp7efoqhykOdm5Y,1233
|
|
@@ -755,10 +757,10 @@ nautobot/dcim/tests/test_models.py,sha256=JLJWnquPFp2CU_L6-4Ml75b6vPPYykNl9uGhlb
|
|
|
755
757
|
nautobot/dcim/tests/test_natural_ordering.py,sha256=2qPIo_XzgPIcSSbdry-KMpmyawPJK__CVaFwT1pB30c,4777
|
|
756
758
|
nautobot/dcim/tests/test_schema.py,sha256=fCCJVIoPoMEEK64IQqKiTEBbjBwkHGMCwfTGbBuso_8,3176
|
|
757
759
|
nautobot/dcim/tests/test_signals.py,sha256=i0owM4SFGlMK_WeJ3Kt5SwnZBBJgWVWoi6SsEmsoMXI,4553
|
|
758
|
-
nautobot/dcim/tests/test_views.py,sha256=
|
|
760
|
+
nautobot/dcim/tests/test_views.py,sha256=hS7Coi23cynwpOi-iUBwtm8zIiS1JHLqZy7u85PSZ2s,190243
|
|
759
761
|
nautobot/dcim/urls.py,sha256=Z2bve0zXjBcEE4iB7w8lL0L8I3LddxePrUBttHdzp7I,38430
|
|
760
762
|
nautobot/dcim/utils.py,sha256=oiynm5hfPmo4DB2Qdouq9-z4rH5XFqixw_k621x116Q,5422
|
|
761
|
-
nautobot/dcim/views.py,sha256=
|
|
763
|
+
nautobot/dcim/views.py,sha256=0QKKARcHOA5BbFShqT5WXCTaR8J_y47AnaVD3DK93UA,197345
|
|
762
764
|
nautobot/extras/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
763
765
|
nautobot/extras/admin.py,sha256=uG2igN7kzEzZqTG8oVTs8mNazLDn2GGhZ8y7hB6X0sU,1399
|
|
764
766
|
nautobot/extras/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -780,11 +782,11 @@ nautobot/extras/datasources/utils.py,sha256=5XdFErDwHUdK3jBTQKX4Y480EkH5bPsBoSbr
|
|
|
780
782
|
nautobot/extras/factory.py,sha256=T5-oUMDhhaA9AB-61BluVAkZ_dli51P4b7QEYDLBDs8,24797
|
|
781
783
|
nautobot/extras/filters/__init__.py,sha256=BO6V63MOTeXpDR9lqlJTCuje_7kstx4W0xb1e8rMK5I,42334
|
|
782
784
|
nautobot/extras/filters/customfields.py,sha256=NjRHCx6s9sChEnuU5S_lyGXqJjRDPbCY7seWcGIJyiY,4117
|
|
783
|
-
nautobot/extras/filters/mixins.py,sha256=
|
|
785
|
+
nautobot/extras/filters/mixins.py,sha256=qzaVF4ar9BtEAOPCsNCoKfdPpdPdm5NypqP5p5E-ez4,13769
|
|
784
786
|
nautobot/extras/forms/__init__.py,sha256=idwnHYZyyf8Wyn_9tYe9ouWUY_OgHm1SpxoHua21ZR0,489
|
|
785
787
|
nautobot/extras/forms/base.py,sha256=Yzf8-Y4WIQVBan91-5Ly1Br1qRHdFuIIba0ubnZ1Q-g,2026
|
|
786
788
|
nautobot/extras/forms/contacts.py,sha256=PksSbDWgYicVirQ8HJg-WRhDPuiHDSSJQs49qzlaJ-U,6417
|
|
787
|
-
nautobot/extras/forms/forms.py,sha256=
|
|
789
|
+
nautobot/extras/forms/forms.py,sha256=Ff2PEjsyGLUPoFvpRFaqotSORUqf5chT7PT44Pq3glY,83522
|
|
788
790
|
nautobot/extras/forms/mixins.py,sha256=h4cTB-To0nKhu_Hap8jrhGj0eYUNFM02sY6IXqiQmSY,40939
|
|
789
791
|
nautobot/extras/graphql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
790
792
|
nautobot/extras/graphql/types.py,sha256=agY80xhUNXeUTXVJoysO-FqvFEDsuPo9tb5FoX5t2O0,1591
|
|
@@ -935,8 +937,8 @@ nautobot/extras/models/change_logging.py,sha256=KTw47h5gB96nHwDjZg3z0oR9RuFZkr-K
|
|
|
935
937
|
nautobot/extras/models/contacts.py,sha256=_JVQMtU17DmHwqQmV9phsEbG1k6k2dFdiqSs82YO5es,4056
|
|
936
938
|
nautobot/extras/models/customfields.py,sha256=TC4eNYO835L34j88cBLkJDJdF7tMENi6BPFfYD4SLIA,44438
|
|
937
939
|
nautobot/extras/models/datasources.py,sha256=EqHZywhfyPE6LdzVyb3xzSWQ9t40ncJLAZzzjl0sqME,9843
|
|
938
|
-
nautobot/extras/models/groups.py,sha256=
|
|
939
|
-
nautobot/extras/models/jobs.py,sha256=
|
|
940
|
+
nautobot/extras/models/groups.py,sha256=oS4dji2fcDSimajHSigqKpVLnhOFxCn63rcaWH3YFBo,52821
|
|
941
|
+
nautobot/extras/models/jobs.py,sha256=s4lT0i0oDFTnjREeP7ZDYTsFZrRX-YpmX5gY-QWxT_E,59518
|
|
940
942
|
nautobot/extras/models/metadata.py,sha256=eHozr4w2hdDFRKVUfZEuiu7KsShTav8PUpiThc9EUvQ,20634
|
|
941
943
|
nautobot/extras/models/mixins.py,sha256=uOfakOMjmX3Wt4PU23NP9ZZumeKTQ21CqxL8k-BTBFc,5429
|
|
942
944
|
nautobot/extras/models/models.py,sha256=vT6s1LPT93FpcyBvbgdvuruGLUwqm-A3x68BtNPs9C8,40997
|
|
@@ -953,14 +955,14 @@ nautobot/extras/plugins/tables.py,sha256=uA_Y7RC1Yj4WmXtCZ8MOqJoo21tgvHcqSsUcWiW
|
|
|
953
955
|
nautobot/extras/plugins/urls.py,sha256=S4s4JYY3sS29lYVAzee1_n9VSPjn-bcSzdKR0qy31uA,1917
|
|
954
956
|
nautobot/extras/plugins/utils.py,sha256=fcBhm6LbQ42F2xW0vNc7vrd-2FxUf7Q__CRuoqpxDm8,5280
|
|
955
957
|
nautobot/extras/plugins/validators.py,sha256=dutyyniQBxAhWmg6nEYn_xrL2jbxbKfnbSyDmYTI8m4,1774
|
|
956
|
-
nautobot/extras/plugins/views.py,sha256=
|
|
958
|
+
nautobot/extras/plugins/views.py,sha256=Q9e583MRwFlhkFHIIiIrO61rg2t34_WCz3K3j_LuF9M,9658
|
|
957
959
|
nautobot/extras/querysets.py,sha256=aWLCVfdEotaD2xJoXRkgpjcq9WqXTp1-S-e4bBtnLu8,10935
|
|
958
960
|
nautobot/extras/registry.py,sha256=p18j0CzEA20UVUPWKMB1x07KLm_kVbUCQFC9lqlkw40,2641
|
|
959
961
|
nautobot/extras/secrets/__init__.py,sha256=0oyzkeGax2yZQOS6vkd4oMY-O8vsoV_DjbOgKN_jods,2877
|
|
960
962
|
nautobot/extras/secrets/exceptions.py,sha256=cQXyJrW96wQyg78E3tJ13kFYZkG8OiVjWDwDUcDDixA,1564
|
|
961
963
|
nautobot/extras/secrets/providers.py,sha256=mR6cCdSD1J4PEdQFjkTawLJj7gaIqHKvirkh3uob5x8,2938
|
|
962
964
|
nautobot/extras/signals.py,sha256=wjUgbh694GQl2d4uyUdnaVPudC7DOFUqlx8eAGLn-zQ,27533
|
|
963
|
-
nautobot/extras/tables.py,sha256=
|
|
965
|
+
nautobot/extras/tables.py,sha256=SGSACR9a8wXB9xp_E2__2EFKTFCwZVLkGRx_EHWuBP4,44392
|
|
964
966
|
nautobot/extras/tasks.py,sha256=EC8LpX9n5_K1Ul5mnixd2mmDpcdAU6w1K2kiHlQG8LI,10822
|
|
965
967
|
nautobot/extras/templates/django_ajax_tables/ajax_wrapper.html,sha256=ej98qO2zpS-J6SAkdfbLmG7XAFleIF1kt0GqKY7GipE,2097
|
|
966
968
|
nautobot/extras/templates/extras/computedfield.html,sha256=hDaGjw0LCBC73C_WZZEO2sXPRUFOR18LVAyKRpgI0G4,177
|
|
@@ -978,18 +980,22 @@ nautobot/extras/templates/extras/configcontextschema_validation.html,sha256=vDP3
|
|
|
978
980
|
nautobot/extras/templates/extras/contact_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
|
|
979
981
|
nautobot/extras/templates/extras/customfield.html,sha256=jdFpk5QLKTn7LK-M06-_Pg2_vYZE_kdb-BN3v-UpdjU,175
|
|
980
982
|
nautobot/extras/templates/extras/customfield_edit.html,sha256=hWCuCVRsBhL-kMRSiAd-XN-3BNdkyQBGFkFwpSz7_O4,173
|
|
981
|
-
nautobot/extras/templates/extras/customfield_retrieve.html,sha256=
|
|
983
|
+
nautobot/extras/templates/extras/customfield_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
|
|
982
984
|
nautobot/extras/templates/extras/customfield_update.html,sha256=VE_D5tzGg1cOMYSDoMpEAVDlwRlEruLfGpNHNyRPUnE,4685
|
|
983
985
|
nautobot/extras/templates/extras/customlink.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
|
|
984
|
-
nautobot/extras/templates/extras/dynamicgroup.html,sha256=
|
|
985
|
-
nautobot/extras/templates/extras/dynamicgroup_edit.html,sha256=
|
|
986
|
+
nautobot/extras/templates/extras/dynamicgroup.html,sha256=wbHwOCRxlVJrm1WHv3eKEQcEHcVLbU9JdoA-xSMM9YM,176
|
|
987
|
+
nautobot/extras/templates/extras/dynamicgroup_edit.html,sha256=uVbrhgAgliNQnxqE1VuqX8EuyOMXHEfyf4Qm8iWlo9o,174
|
|
988
|
+
nautobot/extras/templates/extras/dynamicgroup_retrieve.html,sha256=2IGFsq-PAP9vLbjcxYTWZNdBIHUMW3C6RP9-On8bgbg,4013
|
|
989
|
+
nautobot/extras/templates/extras/dynamicgroup_update.html,sha256=xoOhMAk-tWcP8ptLZaugL2wMl2vKNwrfnCIo3nyYbD8,9650
|
|
986
990
|
nautobot/extras/templates/extras/exporttemplate.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
|
|
987
991
|
nautobot/extras/templates/extras/externalintegration_retrieve.html,sha256=-pVrsbW1JCLMIJ03D75UvHsoty4VfuQ879UAYBTjzno,64
|
|
988
992
|
nautobot/extras/templates/extras/externalintegration_update.html,sha256=yqdwxoorfrIXVvypLrCZBSpgAncnZcvlJ4A5suVpH-I,961
|
|
989
|
-
nautobot/extras/templates/extras/gitrepository.html,sha256=
|
|
993
|
+
nautobot/extras/templates/extras/gitrepository.html,sha256=x-W_cdPthAGdCPwhP2UW6URSa8jrtKu8M_di2UUZtXw,177
|
|
990
994
|
nautobot/extras/templates/extras/gitrepository_list.html,sha256=HXHKXYxSUyi8O0lIXp_mMtMpKwvIinWqg8sUEq962cg,413
|
|
991
|
-
nautobot/extras/templates/extras/gitrepository_object_edit.html,sha256=
|
|
995
|
+
nautobot/extras/templates/extras/gitrepository_object_edit.html,sha256=MH662vlidS3lXOe4WB1wdPSw50tHYwmea6pNTcQZr-Q,175
|
|
992
996
|
nautobot/extras/templates/extras/gitrepository_result.html,sha256=sxFd89WzybfawNJzvkaJKFUjv-3gLfzdKOVtDYsR6pk,657
|
|
997
|
+
nautobot/extras/templates/extras/gitrepository_retrieve.html,sha256=cKqT9hFd1QhzlLIsZdVIdh-xxJarpz-qujIMh5ENEfQ,3572
|
|
998
|
+
nautobot/extras/templates/extras/gitrepository_update.html,sha256=I7Wvn19z37Ixs55nLwWAX6dVDQFAfvZnjy6ibjKu5VQ,686
|
|
993
999
|
nautobot/extras/templates/extras/graphqlquery.html,sha256=GGLLvV2xVyjhlBXIfLSsEGmw1b33iLi7NlQ_YlvxT10,176
|
|
994
1000
|
nautobot/extras/templates/extras/graphqlquery_list.html,sha256=MzuhCkQJPIgqO2YvK4z7VGIbBcE-438UaoKNyPfytUQ,40
|
|
995
1001
|
nautobot/extras/templates/extras/graphqlquery_retrieve.html,sha256=YIboOOnTYRDoPn165P3IpBqo0lfI2UKzn4eX4hZ-xYQ,3221
|
|
@@ -1025,7 +1031,7 @@ nautobot/extras/templates/extras/marketplace.html,sha256=gJBYzhEaMeN33jzT3BIyYMZ
|
|
|
1025
1031
|
nautobot/extras/templates/extras/metadatatype_create.html,sha256=G6ReMUzUVh5VMxsVMb9JPjl2PLLuwTbfSnkohiAuaGw,3898
|
|
1026
1032
|
nautobot/extras/templates/extras/metadatatype_retrieve.html,sha256=wAGvlQxw6gupxARY_NLdY59ZcEMTUEXn00CtcQylai0,171
|
|
1027
1033
|
nautobot/extras/templates/extras/note.html,sha256=YgeIT35fuMo-tIZHdlvCopUwuk682Bg5hn1iKZSkcHE,168
|
|
1028
|
-
nautobot/extras/templates/extras/note_retrieve.html,sha256=
|
|
1034
|
+
nautobot/extras/templates/extras/note_retrieve.html,sha256=Ra6lZcs405aC0VV_tVmY7__81yWRS155Yn9iYSMMSlA,45
|
|
1029
1035
|
nautobot/extras/templates/extras/object_assign_contact_or_team.html,sha256=nia20a4S-6nGwGg1I-kzDYfIT7lvQdHyyFXkZjxYa0c,1633
|
|
1030
1036
|
nautobot/extras/templates/extras/object_changelog.html,sha256=yTeT5I1VdsLtFwiuYLp8hjNBy2C3tte3ZVi8XVev4Pk,175
|
|
1031
1037
|
nautobot/extras/templates/extras/object_configcontext.html,sha256=-p1wET26f0x-FJHGDfuOi1r_DRvjhX7_bixjxy-r70I,2991
|
|
@@ -1035,8 +1041,8 @@ nautobot/extras/templates/extras/object_new_team.html,sha256=wnUF0bUQLD5Gfav5yHj
|
|
|
1035
1041
|
nautobot/extras/templates/extras/object_notes.html,sha256=VSQCYeM1z1AjIBbqJnoX3JqfyopVN4LitxoQxWAlq2k,171
|
|
1036
1042
|
nautobot/extras/templates/extras/objectchange.html,sha256=6L6rNPsBzUwq9omurHL5ASgHazAjuUYc2HLdcT5_ISk,7051
|
|
1037
1043
|
nautobot/extras/templates/extras/objectchange_list.html,sha256=0Z1kwxaZwWd-lOOX3EGBzejh1PHanBI-HLPpRaHtbm4,84
|
|
1038
|
-
nautobot/extras/templates/extras/plugin_detail.html,sha256=
|
|
1039
|
-
nautobot/extras/templates/extras/plugins_list.html,sha256=
|
|
1044
|
+
nautobot/extras/templates/extras/plugin_detail.html,sha256=gCJcIxNLL5CMuVVBr_CGHMOD0dAEaAZWhI-BtyH6MPQ,21024
|
|
1045
|
+
nautobot/extras/templates/extras/plugins_list.html,sha256=mzoExFFh3XoN9VW-JzWmuxBHu-K9c18ft_ntirPMESY,2428
|
|
1040
1046
|
nautobot/extras/templates/extras/plugins_tiles.html,sha256=kY0V3DKOrWzsm0HS85tKZ40SmQIZr0XU0mxJ5RcGIKI,3112
|
|
1041
1047
|
nautobot/extras/templates/extras/relationship.html,sha256=Ra6lZcs405aC0VV_tVmY7__81yWRS155Yn9iYSMMSlA,45
|
|
1042
1048
|
nautobot/extras/templates/extras/relationship_edit.html,sha256=d-mMwnk4QehxcmlZfElpnBsiKN1wXcw-G7bMpA9hVyM,273
|
|
@@ -1151,7 +1157,7 @@ nautobot/extras/tests/test_changelog.py,sha256=BCRt7ByqrwxNeJuCMoIXVcIBbgNooz6fZ
|
|
|
1151
1157
|
nautobot/extras/tests/test_context_managers.py,sha256=autsPHycMrps0DK_2r_EjWeoJW5vxn3Pv9IyXdsyu-k,20403
|
|
1152
1158
|
nautobot/extras/tests/test_customfields.py,sha256=t94ZAlf-_rVH3QVBkR_2vupiZk9H1CmDpEobHe6B9sc,101526
|
|
1153
1159
|
nautobot/extras/tests/test_datasources.py,sha256=bsMJh8y7HFnapnq6lX8u8l6BBQfaPHtmkc-0nysdQyM,39493
|
|
1154
|
-
nautobot/extras/tests/test_dynamicgroups.py,sha256=
|
|
1160
|
+
nautobot/extras/tests/test_dynamicgroups.py,sha256=QHzdkXS4m-RfCdDPAXTGg1_vkMRgPu3mnax7EtPo9B8,60027
|
|
1155
1161
|
nautobot/extras/tests/test_filters.py,sha256=z5qBPu7mDcmcobDpKtUvnV4AjcKi9O4kj5cyLM68GlE,72991
|
|
1156
1162
|
nautobot/extras/tests/test_forms.py,sha256=B8ifsRLM8cLPtEnI3JsgQpkRb_2E-BRH84o6HsQrJGc,53276
|
|
1157
1163
|
nautobot/extras/tests/test_job_variables.py,sha256=dK6PhwqcpL0MvG3ZveQvRhHMEMdXhTSWPi_EMvdqo90,5978
|
|
@@ -1166,11 +1172,11 @@ nautobot/extras/tests/test_relationships.py,sha256=az9-lIXG7hNjOwFQbQ2oxGTo25xMq
|
|
|
1166
1172
|
nautobot/extras/tests/test_schema.py,sha256=8BcnvSWw7xeiHM7pmZFas4hD8tbIoml6-dTWK_Y0ngc,2489
|
|
1167
1173
|
nautobot/extras/tests/test_tags.py,sha256=QlsFqFimO-al_LtRG5ZX-uVpQ5EYgyVpp-rSmbQ4sT0,5031
|
|
1168
1174
|
nautobot/extras/tests/test_utils.py,sha256=WbmtN-asgus2dN6byuaX2YLMnFe3xsZwuT-8lrdlyo4,5827
|
|
1169
|
-
nautobot/extras/tests/test_views.py,sha256=
|
|
1175
|
+
nautobot/extras/tests/test_views.py,sha256=rVuvogVWeJwykigIA8IlgUQgO8X1hl4QTnhWkmxDNIA,185755
|
|
1170
1176
|
nautobot/extras/tests/test_webhooks.py,sha256=PenrxDwCDt6obI1OzvNN_PlyFP4Euh4EBsMbeEfOxFo,15790
|
|
1171
|
-
nautobot/extras/urls.py,sha256=
|
|
1177
|
+
nautobot/extras/urls.py,sha256=uUd_6-sP1dJLc-fXvuyn6JOm6M-HoAzRKYhIDgfcbNk,5669
|
|
1172
1178
|
nautobot/extras/utils.py,sha256=DOWW-AzWdXdRc8xgzfe9UZrnPQN0TZHXrPZQvGi059g,39684
|
|
1173
|
-
nautobot/extras/views.py,sha256=
|
|
1179
|
+
nautobot/extras/views.py,sha256=BxvjAh8MD8TY6x0DARQX8F-xTWS20C98nxirouUZ7JE,117046
|
|
1174
1180
|
nautobot/extras/webhooks.py,sha256=ZgXXgE-gAgJhrtyKCSD976EMD2GSj6iGLJoGOS_YwgA,2466
|
|
1175
1181
|
nautobot/generate_secret_key.py,sha256=4HQOyZMPFdXx-Ob5RjCrIdU37TSYmK_cWvM9OXZKYE0,509
|
|
1176
1182
|
nautobot/ipam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1252,8 +1258,8 @@ nautobot/ipam/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
1252
1258
|
nautobot/ipam/mixins.py,sha256=bd6hX3q0j64Lmu5N08scSRz5JGNk1Ua5jenUQaXo-wM,1578
|
|
1253
1259
|
nautobot/ipam/models.py,sha256=I4R8C0Ynrq0mXrI6_4aDHLJRiHmO5PLjWLbrvtZL2ZE,69750
|
|
1254
1260
|
nautobot/ipam/navigation.py,sha256=8M-BjE_GNOEThoURIg1cpkEKGB3GMRq9RjPiNGgr7a8,7111
|
|
1255
|
-
nautobot/ipam/querysets.py,sha256=
|
|
1256
|
-
nautobot/ipam/signals.py,sha256=
|
|
1261
|
+
nautobot/ipam/querysets.py,sha256=NL8qF8CaUULGz_u5VFLf-kpHwVdeXhiXwZq7b8DaB8k,21076
|
|
1262
|
+
nautobot/ipam/signals.py,sha256=tNlLlfJpOxYYgbV7dxJ2zLOJqHVaD8faQGD9Oc_NPQo,5239
|
|
1257
1263
|
nautobot/ipam/tables.py,sha256=CRmdZdNOdD3hu-zAWVZK0HP3aDPbR3TQxDAl4EAo_PA,25550
|
|
1258
1264
|
nautobot/ipam/templates/ipam/inc/ipadress_edit_header.html,sha256=ukrIzlbZ0kJrZfbxBJnA0-c7O-OlWsTeF6CEXZUPpw0,786
|
|
1259
1265
|
nautobot/ipam/templates/ipam/inc/service.html,sha256=4EmyWpT2DgzYhmgQa7uAr771FWkhLl2f2YH-jZ85r5U,1258
|
|
@@ -1272,7 +1278,7 @@ nautobot/ipam/templates/ipam/namespace_ip_addresses.html,sha256=jygjcBtuPclwom0X
|
|
|
1272
1278
|
nautobot/ipam/templates/ipam/namespace_prefixes.html,sha256=Q41gTSAv4H06gKhH0f3LxYsNITu3CeZiAcq32wW1vqM,432
|
|
1273
1279
|
nautobot/ipam/templates/ipam/namespace_retrieve.html,sha256=Ra6lZcs405aC0VV_tVmY7__81yWRS155Yn9iYSMMSlA,45
|
|
1274
1280
|
nautobot/ipam/templates/ipam/namespace_vrfs.html,sha256=hG0mIxV5fJYfVsUfBkMKu_rqmj7oeX260YmWOoWx-g4,415
|
|
1275
|
-
nautobot/ipam/templates/ipam/prefix.html,sha256=
|
|
1281
|
+
nautobot/ipam/templates/ipam/prefix.html,sha256=ZMdh03xmSqQ361Lyhtm0cP2BQ9-8x6kIL8a8mfWN1cQ,5177
|
|
1276
1282
|
nautobot/ipam/templates/ipam/prefix_delete.html,sha256=nouHZZaPq_qmEjeE3SLRLw3KjKWyO0S3__hUaaY7XYY,176
|
|
1277
1283
|
nautobot/ipam/templates/ipam/prefix_edit.html,sha256=TMP9wmW9RoSm72NCKXgbocl6VqwSv6Da9CfYHc6H_vA,1250
|
|
1278
1284
|
nautobot/ipam/templates/ipam/prefix_ipaddresses.html,sha256=4TfdCxsGPlh_joTLb0htWnbBiUkR11WhIlJh1_-2AnM,430
|
|
@@ -1298,23 +1304,23 @@ nautobot/ipam/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
|
1298
1304
|
nautobot/ipam/tests/integration/test_prefixes.py,sha256=WjN0pgmpw9snfdlRLiD9QrYn5VecjCCniVk8LxbbNFY,2133
|
|
1299
1305
|
nautobot/ipam/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1300
1306
|
nautobot/ipam/tests/migration/test_migrations.py,sha256=1q43klGU84F2WiJYt5lpfxKv7jvY3WeTFxQ-iQ0HjKM,25397
|
|
1301
|
-
nautobot/ipam/tests/test_api.py,sha256=
|
|
1307
|
+
nautobot/ipam/tests/test_api.py,sha256=a4Vx9Q5t1SqpBRdlW1fGvM_rsqSSgdfzZ6hMAxdUuIc,97758
|
|
1302
1308
|
nautobot/ipam/tests/test_filters.py,sha256=FvBGtIVD3Dl73Z4gy1tg6c8OyPDl-AXu9WndJCSHF00,59815
|
|
1303
1309
|
nautobot/ipam/tests/test_forms.py,sha256=o1j-yR2sk_D7xQjW8gh2Wagv3EepC59aJzZu7_EiVGo,5146
|
|
1304
1310
|
nautobot/ipam/tests/test_graphql.py,sha256=TueQWXtLIxyYmFM158IhG4DeYcVZbMHlhv09oKJiQAo,1140
|
|
1305
1311
|
nautobot/ipam/tests/test_jobs.py,sha256=MzskUDArf-ERM2DI_y46tPgt3eDuskqrQru2QuxwjmU,18641
|
|
1306
|
-
nautobot/ipam/tests/test_models.py,sha256=
|
|
1312
|
+
nautobot/ipam/tests/test_models.py,sha256=NUfQ5ulK7-d0uP_-K9HENg7iQfO6PZFnY9Q5HXjNZ38,109023
|
|
1307
1313
|
nautobot/ipam/tests/test_ordering.py,sha256=lZoOx-W4Lgf16doDNgdsNd8obs0aa7hAWfuXLQi_rDc,1389
|
|
1308
|
-
nautobot/ipam/tests/test_querysets.py,sha256=
|
|
1314
|
+
nautobot/ipam/tests/test_querysets.py,sha256=Yg7J8jW03UfJR7VxMjPPlE_fJtkvBsUuSf0yRwcxbFQ,45937
|
|
1309
1315
|
nautobot/ipam/tests/test_tables.py,sha256=hR6j8gEjqELlfQFRwpz7ry8zMyjPCTmYoBRF8Ikb9Xo,2520
|
|
1310
1316
|
nautobot/ipam/tests/test_utils.py,sha256=qSf4SK1NpTy_tGWJ-Tn79jxS0fg-JSxumcibNN5W_7k,5209
|
|
1311
1317
|
nautobot/ipam/tests/test_views.py,sha256=7SdJX-hxwm8ND4HZ0_32_p-eL6iXOu_7yLC3-9cDtcM,49932
|
|
1312
1318
|
nautobot/ipam/urls.py,sha256=lDRi3-VNxeMg9AdWCmnI_-tRNDWbVl3XWE5VKniqy60,4659
|
|
1313
1319
|
nautobot/ipam/utils/__init__.py,sha256=MJOftFAND-8cV9tLD3-thjVJ_SjmTSPYFsNdxOxW2HQ,15632
|
|
1314
|
-
nautobot/ipam/utils/migrations.py,sha256=
|
|
1320
|
+
nautobot/ipam/utils/migrations.py,sha256=UdFcVLuERGdLyN1MaHukc3jhWyvNF55B1WmCYJVu5Fc,30258
|
|
1315
1321
|
nautobot/ipam/utils/testing.py,sha256=C5XYHujSdBVPDmQtieoW4h6NqXMrxOZYrnS4PxvmNDU,9528
|
|
1316
1322
|
nautobot/ipam/validators.py,sha256=nWMKxLL3_vo4kc18y4ao1-dGJQ7H00yrERF4M5H6R2c,915
|
|
1317
|
-
nautobot/ipam/views.py,sha256=
|
|
1323
|
+
nautobot/ipam/views.py,sha256=HXR7qNvRVgnULWYdkMqG3hmXValEPUBoSmBxc0OZOho,51623
|
|
1318
1324
|
nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css,sha256=rZ6tuOEvNGTiA48WIL1XrJzUdmXcV9DbHHPBt1c3eUk,25878
|
|
1319
1325
|
nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.css.map,sha256=NTNT8TImhc3KYdv8noKqrkpSHmdAvwAaV4G5wacKsO0,76238
|
|
1320
1326
|
nautobot/project-static/bootstrap-3.4.1-dist/css/bootstrap-theme.min.css,sha256=-NLEv-9gaWa-5wKjXLU3xnGwwaw7f04WErZx6ERnoNU,23544
|
|
@@ -1432,11 +1438,11 @@ nautobot/project-static/docs/code-reference/nautobot/apps/models.html,sha256=M_o
|
|
|
1432
1438
|
nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html,sha256=_u_evdFM57FzZG6_0w7cLRCatx9pr6GbhWOCDZd006M,178386
|
|
1433
1439
|
nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html,sha256=fNHswHjadTa-HPAm9MOhhzVkgT--c4cJlBpmhQ_5fkM,182377
|
|
1434
1440
|
nautobot/project-static/docs/code-reference/nautobot/apps/tables.html,sha256=urSlziEKeAf6dxiJNqhG3T-845RLB2IhJIuZR0BiOrc,215072
|
|
1435
|
-
nautobot/project-static/docs/code-reference/nautobot/apps/testing.html,sha256=
|
|
1436
|
-
nautobot/project-static/docs/code-reference/nautobot/apps/ui.html,sha256=
|
|
1441
|
+
nautobot/project-static/docs/code-reference/nautobot/apps/testing.html,sha256=R_irKZKeWYzBfvhebTLHSfyBkNzqYRoLKl5xDy3alNg,383695
|
|
1442
|
+
nautobot/project-static/docs/code-reference/nautobot/apps/ui.html,sha256=gzVV8TeJTBunYeEqy5esuGLuF_0WhtrVAHKwbCJcMyE,500439
|
|
1437
1443
|
nautobot/project-static/docs/code-reference/nautobot/apps/urls.html,sha256=Niuh-X4a2VHcW2IwS2MjQomE_4XjcXTszlKBQjuAFP0,175947
|
|
1438
1444
|
nautobot/project-static/docs/code-reference/nautobot/apps/utils.html,sha256=lqT0CkRmzVjNBFrF5ASfY8LymJ5Cy-IW-nTOxh-bJMk,330924
|
|
1439
|
-
nautobot/project-static/docs/code-reference/nautobot/apps/views.html,sha256=
|
|
1445
|
+
nautobot/project-static/docs/code-reference/nautobot/apps/views.html,sha256=OFyFvXn1uq6O1PWRjint7z63afeN5uyaAsRmQsSFrd4,319226
|
|
1440
1446
|
nautobot/project-static/docs/configuration/authentication/ldap.html,sha256=84F6yPsXUVLUG2H2_2axd4ZbEM8zylhzYcqj-cZhSfg,662
|
|
1441
1447
|
nautobot/project-static/docs/configuration/authentication/remote.html,sha256=Hfmn921GIt0HT-fy8GibRg9t0xy9q6-ByjpJONwINUE,670
|
|
1442
1448
|
nautobot/project-static/docs/configuration/authentication/sso.html,sha256=zb29059E4j3D3LtlCIU9EaIV16wQstVrWNZmkw42Ah4,658
|
|
@@ -1461,7 +1467,7 @@ nautobot/project-static/docs/development/apps/api/models/django-admin.html,sha25
|
|
|
1461
1467
|
nautobot/project-static/docs/development/apps/api/models/global-search.html,sha256=0XTHeyyELtRZRMhSXRkXfTFAsd6Ub0hYYbiVBKZgsR8,174790
|
|
1462
1468
|
nautobot/project-static/docs/development/apps/api/models/graphql.html,sha256=_W8BUU1m3aS6mU40lJNWX8QxzOT6tAToKjjdgE_ToEY,187366
|
|
1463
1469
|
nautobot/project-static/docs/development/apps/api/models/index.html,sha256=7HZVvzsT3G5nuwQgWol1DNStL-3fsbgzF1GFrLX7ins,185877
|
|
1464
|
-
nautobot/project-static/docs/development/apps/api/nautobot-app-config.html,sha256=
|
|
1470
|
+
nautobot/project-static/docs/development/apps/api/nautobot-app-config.html,sha256=i0KJ1z9qVSoOakdVbEnHlUsiiDCfobbeKEcaVnMWv7Y,186241
|
|
1465
1471
|
nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html,sha256=JInzGMHfbR1vObAF_l2pTXAI2GgCTU5hmscfWh9GfJs,186897
|
|
1466
1472
|
nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html,sha256=foBlBR-ayHgaKkC1rrfskGQroZ9V9qxhXhDtvqv64P8,178987
|
|
1467
1473
|
nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html,sha256=y6OXNGoPtzdOuE_-QiFmIMlZQ50QwKwGt6eM7hi6f80,185814
|
|
@@ -1518,7 +1524,7 @@ nautobot/project-static/docs/development/core/controllers.html,sha256=ZN_-YFw2OE
|
|
|
1518
1524
|
nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html,sha256=mssMYHPdVMlrH0V2RXsJj-KI35iZBePi3zGX_ewMhPs,208627
|
|
1519
1525
|
nautobot/project-static/docs/development/core/extending-models.html,sha256=9DHRb3mkCFMoUzcsOW21SL6NOfEmVOizkyQ7bh22bEA,462
|
|
1520
1526
|
nautobot/project-static/docs/development/core/generic-views.html,sha256=7TZQpUKJizFXKvArotUGW2NJUazyPiiTLKNhDkJkv50,174825
|
|
1521
|
-
nautobot/project-static/docs/development/core/getting-started.html,sha256=
|
|
1527
|
+
nautobot/project-static/docs/development/core/getting-started.html,sha256=RQJlmxo9pw3LOGoL6VMxWcXVj0az-0Hm7cYbdPff9Mo,268411
|
|
1522
1528
|
nautobot/project-static/docs/development/core/homepage.html,sha256=OTG6Ojhq9dTFqdhNSEIhjma1-gcz2c7XhpBD3HmcvMU,182799
|
|
1523
1529
|
nautobot/project-static/docs/development/core/index.html,sha256=jS2ePhBD5SmYrOc9mn3Sp4F6qAn8f5Cm8NqK9jaeOw0,208590
|
|
1524
1530
|
nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html,sha256=oNqcwg8o8FLg6wnofAoxfKTkfiOpfFsPHHiKussZVoU,223680
|
|
@@ -1533,7 +1539,7 @@ nautobot/project-static/docs/development/core/settings.html,sha256=32WJTdic7FT_O
|
|
|
1533
1539
|
nautobot/project-static/docs/development/core/style-guide.html,sha256=LnJaaFV-SMPIGK4ozlu01xcvHcV3UDjEeBeRvRKA5Sk,201124
|
|
1534
1540
|
nautobot/project-static/docs/development/core/templates.html,sha256=-cqq7wFOpBBvLzA-a-kzzPZ7tSGhrXj9Sx3r4JHqbUA,183210
|
|
1535
1541
|
nautobot/project-static/docs/development/core/testing.html,sha256=blUjezqNx-Iys-z8QUJMk6tvdVT_zvs15Qpo99nbUXg,200825
|
|
1536
|
-
nautobot/project-static/docs/development/core/ui-component-framework.html,sha256=
|
|
1542
|
+
nautobot/project-static/docs/development/core/ui-component-framework.html,sha256=u58WZkSoYD5IkyaajqnrSkWVejRcUf5z5RafjVN8rGM,322530
|
|
1537
1543
|
nautobot/project-static/docs/development/core/user-preferences.html,sha256=dvXJeVslrDxJ4paY09z3yTxOAxnH6zsk3eZ-XMP02iw,174268
|
|
1538
1544
|
nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html,sha256=-LXeTcVveLtX-L5xuLmZrp7zKOVUotja0WnKlJ0FaVE,554
|
|
1539
1545
|
nautobot/project-static/docs/development/extending-models.html,sha256=FQL0EKJtvtvevHGWhsnYSS9zqkkEwGsA30W-EplbP8k,482
|
|
@@ -1768,7 +1774,7 @@ nautobot/project-static/docs/models/wireless/supporteddatarate.html,sha256=M7iq3
|
|
|
1768
1774
|
nautobot/project-static/docs/models/wireless/wirelessnetwork.html,sha256=Jd1CeE6iFb9iccZmmuBJUEk2t6pKsSF5eq4C3fLpJ84,630
|
|
1769
1775
|
nautobot/project-static/docs/nautobot_logo.png,sha256=mVJ0rWJcqys2XAJzSBZUDmTZSPWcI4OYvE_K4SB1580,9204
|
|
1770
1776
|
nautobot/project-static/docs/nautobot_logo.svg,sha256=jJ4smK4dolEszNsvkYp5xYF1jsZ9nw28GRPtT1Jj2o4,13318
|
|
1771
|
-
nautobot/project-static/docs/objects.inv,sha256=
|
|
1777
|
+
nautobot/project-static/docs/objects.inv,sha256=4wDIiRiwkbX3vF3oMytRI7PrY0V2LX-oD4fqVtig5Hg,36653
|
|
1772
1778
|
nautobot/project-static/docs/overview/application_stack.html,sha256=m9m9_JmwVRm5VFY8F3FYJeb4B7r14vfA8FXFp8RsiWk,189913
|
|
1773
1779
|
nautobot/project-static/docs/overview/design_philosophy.html,sha256=iB0MgVpTHbIE1z-Ga2XK4FAcs_DDGCpt8aIOgI2hDb4,177819
|
|
1774
1780
|
nautobot/project-static/docs/overview/index.html,sha256=_VpE7nvE4w9pJOwohLshOBX2yP-TDz5fEz5S4nK8aJM,434
|
|
@@ -1787,12 +1793,11 @@ nautobot/project-static/docs/release-notes/version-2.0.html,sha256=pkU4qSjqA3j93
|
|
|
1787
1793
|
nautobot/project-static/docs/release-notes/version-2.1.html,sha256=kHbbongYchlNTrajS-Afjv-wOm23Tmvw6pIdlJ1MxsM,281573
|
|
1788
1794
|
nautobot/project-static/docs/release-notes/version-2.2.html,sha256=CaXpnGKf0wtYo6nLhKbHR5SZkJgqDymx9_GMUxHsox4,279714
|
|
1789
1795
|
nautobot/project-static/docs/release-notes/version-2.3.html,sha256=wSsrMtUlyiI3Vj1YIa3wM3ARFsGM3PyWbpmbLJjXpV8,335424
|
|
1790
|
-
nautobot/project-static/docs/release-notes/version-2.4.html,sha256=
|
|
1791
|
-
nautobot/project-static/docs/requirements.txt,sha256=Klq9-ayVOez81rR3Z2bfig1sG2G_Lmds1H9Xb_oIlEU,387
|
|
1796
|
+
nautobot/project-static/docs/release-notes/version-2.4.html,sha256=R5GIuODjWosRfXAto7kryywRur1i7iYF2Yt0uB-rcZc,407437
|
|
1792
1797
|
nautobot/project-static/docs/rest-api/overview.html,sha256=VQVyL2N2SzKlJdGHCge8_Mh3f2W4ioPqI6BBRraIIwo,618
|
|
1793
|
-
nautobot/project-static/docs/search/search_index.json,sha256=
|
|
1794
|
-
nautobot/project-static/docs/sitemap.xml,sha256=
|
|
1795
|
-
nautobot/project-static/docs/sitemap.xml.gz,sha256=
|
|
1798
|
+
nautobot/project-static/docs/search/search_index.json,sha256=XNUr6Yli8FHMREZVUH-tDU3L75c6fiO4CGN5o6c0iAo,3118726
|
|
1799
|
+
nautobot/project-static/docs/sitemap.xml,sha256=Jmtbli_L876ss9FBZCj3OppZRQxlWQP-bwL1mjjG8GY,53809
|
|
1800
|
+
nautobot/project-static/docs/sitemap.xml.gz,sha256=6MRxymJ_fw2kFCBrGmNGLXVYbPwBLMaapttiESM2iXU,2654
|
|
1796
1801
|
nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html,sha256=IoR0GrChEYw1N-JsSP9ym6ZO1S3VGYtrBtm1kyFvgg8,213727
|
|
1797
1802
|
nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html,sha256=T4QRJu57WFDowvqUDMyVDxk6cvO2ic0POysRtqrFv6k,178008
|
|
1798
1803
|
nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html,sha256=Jw5_mcB4w1rjtLlgHx-Tn9v5ZqaRCq23zXOGjP5yXfg,254262
|
|
@@ -1801,7 +1806,7 @@ nautobot/project-static/docs/user-guide/administration/configuration/node-config
|
|
|
1801
1806
|
nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html,sha256=Jv7m2ev_runLJBjEle1DBW-S0RGCR7xL-FZTT6iNRiM,434
|
|
1802
1807
|
nautobot/project-static/docs/user-guide/administration/configuration/redis.html,sha256=6r1ncyELG5qJ1vpXWOtBYK2FyJYoRGmD5PutpYQYqlE,187443
|
|
1803
1808
|
nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html,sha256=Jv7m2ev_runLJBjEle1DBW-S0RGCR7xL-FZTT6iNRiM,434
|
|
1804
|
-
nautobot/project-static/docs/user-guide/administration/configuration/settings.html,sha256=
|
|
1809
|
+
nautobot/project-static/docs/user-guide/administration/configuration/settings.html,sha256=vpI3xvyJwZS2M6XD4ShOhCSRkwfP8By53hjAfVgbxEU,370285
|
|
1805
1810
|
nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html,sha256=Wem9mIt8vQ2rNk2ha75nQf_EjJ2di63wnHkO07gc9Sc,177833
|
|
1806
1811
|
nautobot/project-static/docs/user-guide/administration/guides/caching.html,sha256=kNQGZ3Z3liVeW8H2TKDfUwA_i61n6ylRYhUbNbXTt4E,490
|
|
1807
1812
|
nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html,sha256=LSJ02yxb9BTCw1hk-102M1fHcrN42uB31jl4Xapv_0Y,179440
|
|
@@ -2176,7 +2181,7 @@ nautobot/project-static/img/jinja_logo.svg,sha256=l4nV5otISikX5Wa01O4qIxidU_gWor
|
|
|
2176
2181
|
nautobot/project-static/img/light-theme.png,sha256=frWzKvNALIhueTDV5wvZg5q-qdllKxMq6Xl7i5-d0bU,28746
|
|
2177
2182
|
nautobot/project-static/img/nautobot_chevron.svg,sha256=G7AZ2hK5bgTeJOIRxpYwXqjIxfG7AO4PBKkL0Kzq08U,1089
|
|
2178
2183
|
nautobot/project-static/img/nautobot_chevron_header.svg,sha256=1UYQEU-mTl81LdcIiG6fpydDVKsYV2b-dcXaOdnpqUo,1089
|
|
2179
|
-
nautobot/project-static/img/nautobot_icon.svg,sha256=
|
|
2184
|
+
nautobot/project-static/img/nautobot_icon.svg,sha256=R0PIS6Jqt2vOc_SwIZj_p3kduq8Jly130PQc9PYTwjE,4238
|
|
2180
2185
|
nautobot/project-static/img/nautobot_icon_16x16.png,sha256=bHm5hxGSuCchkGV2uOYndFAPFq9jdrkY1maHbjzsV08,674
|
|
2181
2186
|
nautobot/project-static/img/nautobot_icon_180x180.png,sha256=B6oFjt2qH_63KP6RWfEEqmdpSHavVj8OKEA7-3nwP6c,2488
|
|
2182
2187
|
nautobot/project-static/img/nautobot_icon_192x192.png,sha256=wjj5Z6rGadCc0s90zt5IVYGn3lLJ5o1yQKK7MgQJiy4,2903
|
|
@@ -2211,7 +2216,7 @@ nautobot/project-static/js/job_result.js,sha256=KcVSsa1QLwAthutBivLSD5zapCEbAwxu
|
|
|
2211
2216
|
nautobot/project-static/js/log_level_filtering.js,sha256=7CHJxEsJOq4s37YeGE57NsGFws9FPZTgy1_0kYOcgoY,154
|
|
2212
2217
|
nautobot/project-static/js/nav_menu.js,sha256=e_0-1ivVaO3Ygwf2Nn6XfRfu8QB9qxbe1LMlAS6uzmU,10877
|
|
2213
2218
|
nautobot/project-static/js/rack_elevations.js,sha256=vo8dkoonaetQ9GTGQs-OyKI9dMBW-So9Mj_4Ingdt0M,4561
|
|
2214
|
-
nautobot/project-static/js/table_sorting_indicator.js,sha256=
|
|
2219
|
+
nautobot/project-static/js/table_sorting_indicator.js,sha256=1sXrY2sY3Y54XGzvaasS2H2XegeLMZgOIz0qRZ67lwY,2042
|
|
2215
2220
|
nautobot/project-static/js/tableconfig.js,sha256=vsZeA5r8kOokTZREoF25K52Rnuu_Et8cgwUWZXeKN4Y,1815
|
|
2216
2221
|
nautobot/project-static/js/theme.js,sha256=je9_rQ6TIoRY5wA6pl5qHUJN4-pXPH9e4ic06URV8cQ,5260
|
|
2217
2222
|
nautobot/project-static/materialdesignicons-7.4.47/LICENSE,sha256=O65jBbyqbRAhm5mfZcNCA0wtQLHA6FZ_oIYF5zzLqCk,992
|
|
@@ -2467,9 +2472,9 @@ nautobot/wireless/tests/test_models.py,sha256=Fpqc8H7qxXhlM8M8EuBVxTu623L58AHW_e
|
|
|
2467
2472
|
nautobot/wireless/tests/test_views.py,sha256=_387uMzc_F9xgxdRGu81PkVyDLmNFb1J-vXt3PdQGFA,18781
|
|
2468
2473
|
nautobot/wireless/urls.py,sha256=yfYcx1WHLx99pBesoaF602_fUQLXHtodWOi7XHtuX4c,395
|
|
2469
2474
|
nautobot/wireless/views.py,sha256=Mgj-1yUuPuP5_qV-WaQ8ABp4g9fKr9qJlL15qx5nG9I,5472
|
|
2470
|
-
nautobot-2.4.
|
|
2471
|
-
nautobot-2.4.
|
|
2472
|
-
nautobot-2.4.
|
|
2473
|
-
nautobot-2.4.
|
|
2474
|
-
nautobot-2.4.
|
|
2475
|
-
nautobot-2.4.
|
|
2475
|
+
nautobot-2.4.18.dist-info/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
|
2476
|
+
nautobot-2.4.18.dist-info/METADATA,sha256=N_9Pi_8w_bZJyg80PuguAmEth0wZVQswMHUuT4WPEBk,9966
|
|
2477
|
+
nautobot-2.4.18.dist-info/NOTICE,sha256=RA2yQ-u70Ex-APSWYkMN6IdM7zp7cWK0SzmVrqBCcUA,284
|
|
2478
|
+
nautobot-2.4.18.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
2479
|
+
nautobot-2.4.18.dist-info/entry_points.txt,sha256=kUwm_Ve_FyUFjcYqTtQWsqJ2JKWPkHFOD8rcK71jX2k,58
|
|
2480
|
+
nautobot-2.4.18.dist-info/RECORD,,
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
<ol class="breadcrumb">
|
|
2
|
-
{% block breadcrumbs %}
|
|
3
|
-
{% for url, title in breadcrumbs_items %}
|
|
4
|
-
<li>
|
|
5
|
-
{% if url %}
|
|
6
|
-
<a href="{{ url }}">{{ title }}</a>
|
|
7
|
-
{% else %}
|
|
8
|
-
{{ title }}
|
|
9
|
-
{% endif %}
|
|
10
|
-
</li>
|
|
11
|
-
{% endfor %}
|
|
12
|
-
{% block extra_breadcrumbs %}{% endblock extra_breadcrumbs %}
|
|
13
|
-
{% endblock %}
|
|
14
|
-
</ol>
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
Jinja2==3.1.6
|
|
2
|
-
Markdown==3.6
|
|
3
|
-
markdown-data-tables==1.0.0
|
|
4
|
-
markdown-version-annotations==1.0.1
|
|
5
|
-
mkdocs==1.6.1
|
|
6
|
-
mkdocs-gen-files==0.5.0
|
|
7
|
-
mkdocs-glightbox==0.4.0
|
|
8
|
-
mkdocs-macros-plugin==1.0.5
|
|
9
|
-
mkdocs-material==9.6.18
|
|
10
|
-
mkdocs-redirects==1.2.2
|
|
11
|
-
mkdocs-section-index==0.3.10
|
|
12
|
-
mkdocstrings==0.30.0
|
|
13
|
-
mkdocstrings-python==1.16.12
|
|
14
|
-
zipp==3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|