nautobot 2.2.9__py3-none-any.whl → 2.3.0__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.

Files changed (697) hide show
  1. nautobot/apps/forms.py +4 -0
  2. nautobot/apps/models.py +10 -1
  3. nautobot/circuits/__init__.py +0 -1
  4. nautobot/circuits/apps.py +1 -0
  5. nautobot/circuits/factory.py +15 -3
  6. nautobot/circuits/filters.py +13 -0
  7. nautobot/circuits/forms.py +13 -0
  8. nautobot/circuits/migrations/0021_alter_circuit_status_alter_circuittermination__path.py +32 -0
  9. nautobot/circuits/migrations/0022_circuittermination_cloud_network.py +25 -0
  10. nautobot/circuits/models.py +16 -3
  11. nautobot/circuits/tables.py +16 -2
  12. nautobot/circuits/templates/circuits/circuittermination_create.html +10 -2
  13. nautobot/circuits/templates/circuits/circuittermination_retrieve.html +6 -0
  14. nautobot/circuits/templates/circuits/inc/circuit_termination.html +6 -1
  15. nautobot/circuits/tests/test_api.py +7 -5
  16. nautobot/circuits/tests/test_filters.py +12 -5
  17. nautobot/circuits/tests/test_models.py +33 -2
  18. nautobot/circuits/views.py +2 -3
  19. nautobot/cloud/__init__.py +0 -0
  20. nautobot/cloud/api/__init__.py +0 -0
  21. nautobot/cloud/api/serializers.py +54 -0
  22. nautobot/cloud/api/urls.py +16 -0
  23. nautobot/cloud/api/views.py +48 -0
  24. nautobot/cloud/apps.py +13 -0
  25. nautobot/cloud/factory.py +113 -0
  26. nautobot/cloud/filters.py +187 -0
  27. nautobot/cloud/forms.py +339 -0
  28. nautobot/cloud/homepage.py +43 -0
  29. nautobot/cloud/migrations/0001_initial.py +304 -0
  30. nautobot/cloud/migrations/__init__.py +0 -0
  31. nautobot/cloud/models.py +246 -0
  32. nautobot/cloud/navigation.py +85 -0
  33. nautobot/cloud/tables.py +157 -0
  34. nautobot/cloud/templates/cloud/cloudaccount_retrieve.html +43 -0
  35. nautobot/cloud/templates/cloud/cloudnetwork_retrieve.html +122 -0
  36. nautobot/cloud/templates/cloud/cloudnetwork_update.html +33 -0
  37. nautobot/cloud/templates/cloud/cloudresourcetype_retrieve.html +111 -0
  38. nautobot/cloud/templates/cloud/cloudservice_retrieve.html +69 -0
  39. nautobot/cloud/templates/cloud/cloudservice_update.html +25 -0
  40. nautobot/cloud/tests/__init__.py +0 -0
  41. nautobot/cloud/tests/test_api.py +248 -0
  42. nautobot/cloud/tests/test_filters.py +125 -0
  43. nautobot/cloud/tests/test_models.py +43 -0
  44. nautobot/cloud/tests/test_views.py +153 -0
  45. nautobot/cloud/urls.py +14 -0
  46. nautobot/cloud/views.py +181 -0
  47. nautobot/core/__init__.py +0 -3
  48. nautobot/core/api/metadata.py +1 -0
  49. nautobot/core/api/parsers.py +7 -1
  50. nautobot/core/api/urls.py +1 -0
  51. nautobot/core/api/utils.py +1 -0
  52. nautobot/core/api/views.py +4 -0
  53. nautobot/core/apps/__init__.py +6 -3
  54. nautobot/core/constants.py +8 -0
  55. nautobot/core/factory.py +32 -1
  56. nautobot/core/filters.py +95 -13
  57. nautobot/core/forms/fields.py +10 -4
  58. nautobot/core/forms/forms.py +11 -3
  59. nautobot/core/forms/widgets.py +18 -1
  60. nautobot/core/graphql/schema.py +26 -4
  61. nautobot/core/jobs/__init__.py +16 -2
  62. nautobot/core/jobs/cleanup.py +100 -0
  63. nautobot/core/jobs/groups.py +38 -0
  64. nautobot/core/management/commands/generate_test_data.py +116 -3
  65. nautobot/core/models/__init__.py +34 -9
  66. nautobot/core/models/generics.py +19 -3
  67. nautobot/core/models/name_color_content_types.py +7 -28
  68. nautobot/core/models/querysets.py +4 -3
  69. nautobot/core/models/tree_queries.py +1 -1
  70. nautobot/core/models/utils.py +21 -5
  71. nautobot/core/settings.py +2 -17
  72. nautobot/core/settings.yaml +34 -13
  73. nautobot/core/settings_funcs.py +103 -0
  74. nautobot/core/tables.py +130 -56
  75. nautobot/core/templates/admin/search_form.html +1 -1
  76. nautobot/core/templates/buttons/add.html +11 -3
  77. nautobot/core/templates/buttons/consolidated_bulk_action_buttons.html +13 -0
  78. nautobot/core/templates/buttons/consolidated_detail_view_action_buttons.html +13 -0
  79. nautobot/core/templates/buttons/export.html +101 -53
  80. nautobot/core/templates/buttons/job_import.html +11 -3
  81. nautobot/core/templates/generic/object_bulk_destroy.html +3 -1
  82. nautobot/core/templates/generic/object_bulk_update.html +3 -1
  83. nautobot/core/templates/generic/object_changelog.html +0 -9
  84. nautobot/core/templates/generic/object_list.html +156 -17
  85. nautobot/core/templates/generic/object_retrieve.html +80 -16
  86. nautobot/core/templates/inc/extras_features_edit_form_fields.html +8 -0
  87. nautobot/core/templates/inc/javascript.html +2 -0
  88. nautobot/core/templates/inc/media.html +2 -2
  89. nautobot/core/templates/inc/nav_menu.html +1 -0
  90. nautobot/core/templates/inc/paginator.html +7 -7
  91. nautobot/core/templates/inc/search_panel.html +2 -2
  92. nautobot/core/templates/inc/table.html +2 -2
  93. nautobot/core/templates/nautobot_config.py.j2 +13 -8
  94. nautobot/core/templates/utilities/templatetags/dynamic_group_assignment_modal.html +37 -0
  95. nautobot/core/templates/utilities/templatetags/filter_form_modal.html +2 -2
  96. nautobot/core/templates/utilities/templatetags/saved_view_modal.html +38 -0
  97. nautobot/core/templates/utilities/theme_preview.html +25 -8
  98. nautobot/core/templates/utilities/worker_status.html +152 -0
  99. nautobot/core/templatetags/buttons.py +335 -38
  100. nautobot/core/templatetags/form_helpers.py +1 -1
  101. nautobot/core/templatetags/helpers.py +181 -11
  102. nautobot/core/testing/api.py +5 -4
  103. nautobot/core/testing/filters.py +63 -14
  104. nautobot/core/testing/mixins.py +46 -0
  105. nautobot/core/testing/models.py +22 -0
  106. nautobot/core/testing/schema.py +4 -8
  107. nautobot/core/testing/views.py +31 -14
  108. nautobot/core/tests/integration/test_import_objects_ui.py +1 -0
  109. nautobot/core/tests/integration/test_swagger.py +1 -1
  110. nautobot/core/tests/nautobot_config.py +0 -1
  111. nautobot/core/tests/runner.py +2 -2
  112. nautobot/core/tests/test_api.py +1 -0
  113. nautobot/core/tests/test_authentication.py +7 -2
  114. nautobot/core/tests/test_filters.py +11 -9
  115. nautobot/core/tests/test_forms.py +9 -0
  116. nautobot/core/tests/test_graphql.py +27 -16
  117. nautobot/core/tests/test_jobs.py +122 -0
  118. nautobot/core/tests/test_tables.py +3 -1
  119. nautobot/core/tests/test_templatetags_helpers.py +12 -5
  120. nautobot/core/tests/test_utils.py +31 -20
  121. nautobot/core/tests/test_views.py +6 -6
  122. nautobot/core/urls.py +8 -3
  123. nautobot/core/utils/deprecation.py +29 -0
  124. nautobot/core/utils/filtering.py +12 -9
  125. nautobot/core/utils/lookup.py +37 -2
  126. nautobot/core/utils/requests.py +4 -1
  127. nautobot/core/views/__init__.py +137 -24
  128. nautobot/core/views/generic.py +119 -67
  129. nautobot/core/views/mixins.py +105 -36
  130. nautobot/core/views/paginator.py +9 -3
  131. nautobot/core/views/renderers.py +121 -56
  132. nautobot/core/views/utils.py +81 -1
  133. nautobot/dcim/__init__.py +0 -1
  134. nautobot/dcim/api/serializers.py +180 -44
  135. nautobot/dcim/api/urls.py +7 -3
  136. nautobot/dcim/api/views.py +53 -7
  137. nautobot/dcim/apps.py +3 -0
  138. nautobot/dcim/choices.py +25 -0
  139. nautobot/dcim/constants.py +7 -0
  140. nautobot/dcim/factory.py +252 -18
  141. nautobot/dcim/filters/__init__.py +373 -193
  142. nautobot/dcim/filters/mixins.py +274 -1
  143. nautobot/dcim/forms.py +834 -121
  144. nautobot/dcim/graphql/types.py +2 -2
  145. nautobot/dcim/homepage.py +1 -1
  146. nautobot/dcim/migrations/0059_add_role_field_to_interface_models.py +27 -0
  147. nautobot/dcim/migrations/0060_alter_cable_status_alter_consoleport__path_and_more.py +303 -0
  148. nautobot/dcim/migrations/0061_module_models.py +862 -0
  149. nautobot/dcim/migrations/0062_module_data_migration.py +25 -0
  150. nautobot/dcim/models/__init__.py +8 -0
  151. nautobot/dcim/models/cables.py +15 -0
  152. nautobot/dcim/models/device_component_templates.py +207 -53
  153. nautobot/dcim/models/device_components.py +275 -99
  154. nautobot/dcim/models/devices.py +468 -13
  155. nautobot/dcim/models/racks.py +0 -1
  156. nautobot/dcim/navigation.py +47 -0
  157. nautobot/dcim/signals.py +3 -3
  158. nautobot/dcim/tables/__init__.py +35 -23
  159. nautobot/dcim/tables/devices.py +229 -43
  160. nautobot/dcim/tables/devicetypes.py +65 -9
  161. nautobot/dcim/tables/racks.py +5 -1
  162. nautobot/dcim/tables/template_code.py +46 -26
  163. nautobot/dcim/templates/dcim/cable_connect.html +76 -3
  164. nautobot/dcim/templates/dcim/console_port_connection_list.html +7 -5
  165. nautobot/dcim/templates/dcim/device/base.html +14 -6
  166. nautobot/dcim/templates/dcim/device/consoleports.html +2 -3
  167. nautobot/dcim/templates/dcim/device/consoleserverports.html +2 -3
  168. nautobot/dcim/templates/dcim/device/devicebays.html +6 -7
  169. nautobot/dcim/templates/dcim/device/frontports.html +2 -3
  170. nautobot/dcim/templates/dcim/device/interfaces.html +2 -3
  171. nautobot/dcim/templates/dcim/device/inventory.html +2 -3
  172. nautobot/dcim/templates/dcim/device/modulebays.html +49 -0
  173. nautobot/dcim/templates/dcim/device/poweroutlets.html +2 -3
  174. nautobot/dcim/templates/dcim/device/powerports.html +2 -3
  175. nautobot/dcim/templates/dcim/device/rearports.html +2 -3
  176. nautobot/dcim/templates/dcim/device.html +45 -1
  177. nautobot/dcim/templates/dcim/device_component.html +13 -5
  178. nautobot/dcim/templates/dcim/device_list.html +2 -1
  179. nautobot/dcim/templates/dcim/devicetype.html +99 -98
  180. nautobot/dcim/templates/dcim/devicetype_list.html +8 -16
  181. nautobot/dcim/templates/dcim/inc/devicetype_component_table.html +1 -1
  182. nautobot/dcim/templates/dcim/inc/moduletype_component_table.html +39 -0
  183. nautobot/dcim/templates/dcim/interface.html +17 -2
  184. nautobot/dcim/templates/dcim/interface_connection_list.html +7 -5
  185. nautobot/dcim/templates/dcim/interface_edit.html +1 -0
  186. nautobot/dcim/templates/dcim/manufacturer.html +24 -0
  187. nautobot/dcim/templates/dcim/module/base.html +97 -0
  188. nautobot/dcim/templates/dcim/module_bulk_destroy.html +5 -0
  189. nautobot/dcim/templates/dcim/module_consoleports.html +53 -0
  190. nautobot/dcim/templates/dcim/module_consoleserverports.html +53 -0
  191. nautobot/dcim/templates/dcim/module_destroy.html +5 -0
  192. nautobot/dcim/templates/dcim/module_frontports.html +53 -0
  193. nautobot/dcim/templates/dcim/module_interfaces.html +57 -0
  194. nautobot/dcim/templates/dcim/module_list.html +20 -0
  195. nautobot/dcim/templates/dcim/module_modulebays.html +49 -0
  196. nautobot/dcim/templates/dcim/module_poweroutlets.html +53 -0
  197. nautobot/dcim/templates/dcim/module_powerports.html +53 -0
  198. nautobot/dcim/templates/dcim/module_rearports.html +53 -0
  199. nautobot/dcim/templates/dcim/module_retrieve.html +63 -0
  200. nautobot/dcim/templates/dcim/module_update.html +71 -0
  201. nautobot/dcim/templates/dcim/modulebay_bulk_destroy.html +5 -0
  202. nautobot/dcim/templates/dcim/modulebay_destroy.html +8 -0
  203. nautobot/dcim/templates/dcim/modulebay_retrieve.html +101 -0
  204. nautobot/dcim/templates/dcim/moduletype_list.html +11 -0
  205. nautobot/dcim/templates/dcim/moduletype_retrieve.html +159 -0
  206. nautobot/dcim/templates/dcim/power_port_connection_list.html +7 -5
  207. nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +65 -19
  208. nautobot/dcim/tests/integration/test_cable_connect_form.py +4 -4
  209. nautobot/dcim/tests/test_api.py +693 -208
  210. nautobot/dcim/tests/test_filters.py +843 -217
  211. nautobot/dcim/tests/test_models.py +1072 -8
  212. nautobot/dcim/tests/test_views.py +1510 -341
  213. nautobot/dcim/urls.py +17 -2
  214. nautobot/dcim/utils.py +2 -3
  215. nautobot/dcim/views.py +1106 -116
  216. nautobot/extras/__init__.py +0 -1
  217. nautobot/extras/api/serializers.py +115 -3
  218. nautobot/extras/api/urls.py +12 -0
  219. nautobot/extras/api/views.py +66 -0
  220. nautobot/extras/apps.py +2 -2
  221. nautobot/extras/choices.py +43 -0
  222. nautobot/extras/context_managers.py +13 -8
  223. nautobot/extras/datasources/git.py +2 -0
  224. nautobot/extras/factory.py +460 -9
  225. nautobot/extras/filters/__init__.py +174 -3
  226. nautobot/extras/filters/mixins.py +46 -43
  227. nautobot/extras/forms/base.py +24 -5
  228. nautobot/extras/forms/forms.py +227 -8
  229. nautobot/extras/forms/mixins.py +93 -0
  230. nautobot/extras/graphql/types.py +23 -10
  231. nautobot/extras/homepage.py +14 -1
  232. nautobot/extras/management/__init__.py +1 -0
  233. nautobot/extras/management/commands/refresh_dynamic_group_member_caches.py +1 -16
  234. nautobot/extras/migrations/0021_customfield_changelog_data.py +1 -0
  235. nautobot/extras/migrations/0109_dynamicgroup_group_type_dynamicgroup_tags_and_more.py +108 -0
  236. nautobot/extras/migrations/0110_alter_configcontext_cluster_groups_and_more.py +111 -0
  237. nautobot/extras/migrations/0111_metadata.py +162 -0
  238. nautobot/extras/migrations/0112_dynamic_group_group_type_data_migration.py +28 -0
  239. nautobot/extras/migrations/0113_saved_views.py +77 -0
  240. nautobot/extras/models/__init__.py +15 -1
  241. nautobot/extras/models/change_logging.py +3 -3
  242. nautobot/extras/models/contacts.py +4 -0
  243. nautobot/extras/models/customfields.py +18 -3
  244. nautobot/extras/models/groups.py +389 -225
  245. nautobot/extras/models/jobs.py +6 -3
  246. nautobot/extras/models/metadata.py +441 -0
  247. nautobot/extras/models/mixins.py +72 -62
  248. nautobot/extras/models/models.py +118 -9
  249. nautobot/extras/models/relationships.py +9 -2
  250. nautobot/extras/models/tags.py +13 -2
  251. nautobot/extras/navigation.py +57 -0
  252. nautobot/extras/plugins/__init__.py +3 -1
  253. nautobot/extras/querysets.py +30 -66
  254. nautobot/extras/signals.py +95 -100
  255. nautobot/extras/tables.py +165 -12
  256. nautobot/extras/templates/extras/dynamicgroup.html +44 -15
  257. nautobot/extras/templates/extras/dynamicgroup_edit.html +2 -0
  258. nautobot/extras/templates/extras/job.html +1 -1
  259. nautobot/extras/templates/extras/jobresult.html +61 -74
  260. nautobot/extras/templates/extras/metadatatype_create.html +89 -0
  261. nautobot/extras/templates/extras/metadatatype_retrieve.html +67 -0
  262. nautobot/extras/templates/extras/object_dynamicgroups.html +7 -0
  263. nautobot/extras/templates/extras/objectchange_list.html +0 -12
  264. nautobot/extras/templates/extras/plugins_list.html +1 -3
  265. nautobot/extras/templates/extras/role_retrieve.html +48 -0
  266. nautobot/extras/templates/extras/staticgroupassociation_retrieve.html +20 -0
  267. nautobot/extras/tests/integration/test_customfields.py +1 -0
  268. nautobot/extras/tests/test_api.py +509 -23
  269. nautobot/extras/tests/test_changelog.py +20 -9
  270. nautobot/extras/tests/test_context_managers.py +22 -15
  271. nautobot/extras/tests/test_datasources.py +13 -1
  272. nautobot/extras/tests/test_dynamicgroups.py +201 -171
  273. nautobot/extras/tests/test_filters.py +211 -12
  274. nautobot/extras/tests/test_jobs.py +6 -6
  275. nautobot/extras/tests/test_models.py +501 -4
  276. nautobot/extras/tests/test_relationships.py +1 -0
  277. nautobot/extras/tests/test_views.py +565 -8
  278. nautobot/extras/tests/test_webhooks.py +1 -1
  279. nautobot/extras/urls.py +5 -0
  280. nautobot/extras/utils.py +51 -11
  281. nautobot/extras/views.py +542 -76
  282. nautobot/ipam/__init__.py +0 -1
  283. nautobot/ipam/apps.py +1 -0
  284. nautobot/ipam/factory.py +17 -19
  285. nautobot/ipam/filters.py +13 -0
  286. nautobot/ipam/forms.py +8 -4
  287. nautobot/ipam/graphql/types.py +2 -2
  288. nautobot/ipam/migrations/0047_alter_ipaddress_role_alter_ipaddress_status_and_more.py +59 -0
  289. nautobot/ipam/models.py +11 -8
  290. nautobot/ipam/querysets.py +1 -1
  291. nautobot/ipam/signals.py +4 -2
  292. nautobot/ipam/tables.py +5 -0
  293. nautobot/ipam/templates/ipam/ipaddress_interfaces.html +1 -1
  294. nautobot/ipam/templates/ipam/ipaddress_vm_interfaces.html +1 -1
  295. nautobot/ipam/templates/ipam/prefix.html +1 -0
  296. nautobot/ipam/tests/test_api.py +37 -18
  297. nautobot/ipam/tests/test_filters.py +26 -2
  298. nautobot/ipam/tests/test_models.py +6 -0
  299. nautobot/ipam/tests/test_querysets.py +1 -1
  300. nautobot/ipam/tests/test_views.py +3 -2
  301. nautobot/ipam/urls.py +2 -2
  302. nautobot/ipam/views.py +18 -26
  303. nautobot/project-static/css/base.css +20 -0
  304. nautobot/project-static/css/dark.css +11 -0
  305. nautobot/project-static/docs/404.html +892 -88
  306. nautobot/project-static/docs/apps/index.html +892 -88
  307. nautobot/project-static/docs/apps/nautobot-apps.html +892 -88
  308. nautobot/project-static/docs/assets/_mkdocstrings.css +5 -0
  309. nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.min.css +1 -0
  310. nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.min.css.map +1 -0
  311. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +919 -120
  312. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +904 -101
  313. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +1618 -903
  314. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +935 -144
  315. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +977 -188
  316. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +901 -99
  317. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +897 -93
  318. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +991 -193
  319. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +974 -131
  320. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +1078 -272
  321. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +1242 -334
  322. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +1727 -875
  323. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +1164 -381
  324. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +2088 -1374
  325. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +2246 -1422
  326. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +912 -111
  327. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +963 -163
  328. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +1010 -223
  329. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +1913 -1277
  330. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +1846 -1102
  331. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +904 -101
  332. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +2331 -1699
  333. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +1802 -1024
  334. nautobot/project-static/docs/development/apps/api/configuration-view.html +892 -88
  335. nautobot/project-static/docs/development/apps/api/database-backend-config.html +892 -88
  336. nautobot/project-static/docs/development/apps/api/models/django-admin.html +892 -88
  337. nautobot/project-static/docs/development/apps/api/models/global-search.html +892 -88
  338. nautobot/project-static/docs/development/apps/api/models/graphql.html +892 -88
  339. nautobot/project-static/docs/development/apps/api/models/index.html +942 -90
  340. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +892 -88
  341. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +892 -88
  342. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +892 -88
  343. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +892 -88
  344. nautobot/project-static/docs/development/apps/api/platform-features/index.html +892 -88
  345. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +892 -88
  346. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +892 -88
  347. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +892 -88
  348. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +892 -88
  349. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +892 -88
  350. nautobot/project-static/docs/development/apps/api/prometheus.html +892 -88
  351. nautobot/project-static/docs/development/apps/api/setup.html +892 -88
  352. nautobot/project-static/docs/development/apps/api/testing.html +892 -88
  353. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +892 -88
  354. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +892 -88
  355. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +892 -88
  356. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +892 -88
  357. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +892 -88
  358. nautobot/project-static/docs/development/apps/api/views/base-template.html +892 -88
  359. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +892 -88
  360. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +892 -88
  361. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +892 -88
  362. nautobot/project-static/docs/development/apps/api/views/index.html +892 -88
  363. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +892 -88
  364. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +892 -88
  365. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +892 -88
  366. nautobot/project-static/docs/development/apps/api/views/notes.html +892 -88
  367. nautobot/project-static/docs/development/apps/api/views/rest-api.html +892 -88
  368. nautobot/project-static/docs/development/apps/api/views/urls.html +892 -88
  369. nautobot/project-static/docs/development/apps/index.html +892 -88
  370. nautobot/project-static/docs/development/apps/migration/code-updates.html +892 -88
  371. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +892 -88
  372. nautobot/project-static/docs/development/apps/migration/from-v1.html +892 -88
  373. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +892 -88
  374. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +892 -88
  375. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +892 -88
  376. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +892 -88
  377. nautobot/project-static/docs/development/apps/porting-from-netbox.html +892 -88
  378. nautobot/project-static/docs/development/core/application-registry.html +892 -88
  379. nautobot/project-static/docs/development/core/best-practices.html +893 -88
  380. nautobot/project-static/docs/development/core/bootstrap-ui.html +892 -88
  381. nautobot/project-static/docs/development/core/caching.html +892 -88
  382. nautobot/project-static/docs/development/core/controllers.html +892 -88
  383. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +892 -88
  384. nautobot/project-static/docs/development/core/generic-views.html +892 -88
  385. nautobot/project-static/docs/development/core/getting-started.html +892 -88
  386. nautobot/project-static/docs/development/core/homepage.html +892 -88
  387. nautobot/project-static/docs/development/core/index.html +892 -88
  388. nautobot/project-static/docs/development/core/model-checklist.html +901 -89
  389. nautobot/project-static/docs/development/core/model-features.html +892 -88
  390. nautobot/project-static/docs/development/core/natural-keys.html +892 -88
  391. nautobot/project-static/docs/development/core/navigation-menu.html +892 -88
  392. nautobot/project-static/docs/development/core/release-checklist.html +895 -91
  393. nautobot/project-static/docs/development/core/role-internals.html +892 -88
  394. nautobot/project-static/docs/development/core/settings.html +892 -88
  395. nautobot/project-static/docs/development/core/style-guide.html +893 -89
  396. nautobot/project-static/docs/development/core/templates.html +904 -89
  397. nautobot/project-static/docs/development/core/testing.html +892 -88
  398. nautobot/project-static/docs/development/core/user-preferences.html +892 -88
  399. nautobot/project-static/docs/development/index.html +892 -88
  400. nautobot/project-static/docs/development/jobs/index.html +893 -89
  401. nautobot/project-static/docs/development/jobs/migration/from-v1.html +892 -88
  402. nautobot/project-static/docs/index.html +892 -88
  403. nautobot/project-static/docs/media/models/cloud_aws_direct_connect_dark.png +0 -0
  404. nautobot/project-static/docs/media/models/cloud_aws_direct_connect_light.png +0 -0
  405. nautobot/project-static/docs/models/cloud/cloudaccount.html +15 -0
  406. nautobot/project-static/docs/models/cloud/cloudnetwork.html +15 -0
  407. nautobot/project-static/docs/models/cloud/cloudnetworkprefixassignment.html +15 -0
  408. nautobot/project-static/docs/models/cloud/cloudresourcetype.html +15 -0
  409. nautobot/project-static/docs/models/cloud/cloudservice.html +15 -0
  410. nautobot/project-static/docs/models/cloud/cloudservicenetworkassignment.html +15 -0
  411. nautobot/project-static/docs/models/dcim/module.html +15 -0
  412. nautobot/project-static/docs/models/dcim/modulebay.html +15 -0
  413. nautobot/project-static/docs/models/dcim/modulebaytemplate.html +15 -0
  414. nautobot/project-static/docs/models/dcim/moduletype.html +15 -0
  415. nautobot/project-static/docs/models/extras/metadatachoice.html +15 -0
  416. nautobot/project-static/docs/models/extras/metadatatype.html +15 -0
  417. nautobot/project-static/docs/models/extras/objectmetadata.html +15 -0
  418. nautobot/project-static/docs/models/extras/role.html +15 -0
  419. nautobot/project-static/docs/models/extras/savedview.html +15 -0
  420. nautobot/project-static/docs/models/extras/staticgroupassociation.html +15 -0
  421. nautobot/project-static/docs/models/extras/status.html +15 -0
  422. nautobot/project-static/docs/objects.inv +0 -0
  423. nautobot/project-static/docs/overview/application_stack.html +900 -89
  424. nautobot/project-static/docs/overview/design_philosophy.html +892 -88
  425. nautobot/project-static/docs/release-notes/index.html +1129 -92
  426. nautobot/project-static/docs/release-notes/version-1.0.html +892 -88
  427. nautobot/project-static/docs/release-notes/version-1.1.html +892 -88
  428. nautobot/project-static/docs/release-notes/version-1.2.html +892 -88
  429. nautobot/project-static/docs/release-notes/version-1.3.html +892 -88
  430. nautobot/project-static/docs/release-notes/version-1.4.html +892 -88
  431. nautobot/project-static/docs/release-notes/version-1.5.html +893 -89
  432. nautobot/project-static/docs/release-notes/version-1.6.html +893 -89
  433. nautobot/project-static/docs/release-notes/version-2.0.html +892 -88
  434. nautobot/project-static/docs/release-notes/version-2.1.html +892 -88
  435. nautobot/project-static/docs/release-notes/version-2.2.html +895 -91
  436. nautobot/project-static/docs/release-notes/version-2.3.html +9954 -0
  437. nautobot/project-static/docs/requirements.txt +5 -5
  438. nautobot/project-static/docs/search/search_index.json +1 -1
  439. nautobot/project-static/docs/sitemap.xml +331 -256
  440. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  441. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +892 -88
  442. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +892 -88
  443. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +892 -88
  444. nautobot/project-static/docs/user-guide/administration/configuration/index.html +892 -88
  445. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +992 -174
  446. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +892 -88
  447. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +892 -88
  448. nautobot/project-static/docs/user-guide/administration/guides/caching.html +892 -88
  449. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +896 -88
  450. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +892 -88
  451. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +892 -88
  452. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +892 -88
  453. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +892 -88
  454. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +892 -88
  455. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +892 -88
  456. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +892 -88
  457. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +892 -88
  458. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +944 -153
  459. nautobot/project-static/docs/user-guide/administration/installation/index.html +901 -93
  460. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +934 -122
  461. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +954 -157
  462. nautobot/project-static/docs/user-guide/administration/installation/services.html +913 -112
  463. nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +908 -99
  464. nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +892 -88
  465. nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +892 -88
  466. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +892 -88
  467. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +892 -88
  468. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +893 -89
  469. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +892 -88
  470. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +892 -88
  471. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +892 -88
  472. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +892 -88
  473. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +892 -88
  474. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +892 -88
  475. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +892 -88
  476. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +892 -88
  477. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +892 -88
  478. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +892 -88
  479. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +892 -88
  480. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +893 -89
  481. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +892 -88
  482. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +896 -88
  483. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +895 -91
  484. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +8984 -0
  485. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +8828 -0
  486. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +8829 -0
  487. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +8828 -0
  488. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +8829 -0
  489. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +8833 -0
  490. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +8828 -0
  491. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +906 -102
  492. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +923 -105
  493. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +923 -105
  494. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +918 -100
  495. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +923 -105
  496. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +906 -102
  497. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +906 -102
  498. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +913 -105
  499. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +920 -116
  500. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +921 -117
  501. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +918 -114
  502. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +906 -102
  503. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +914 -105
  504. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +926 -108
  505. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +936 -118
  506. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +928 -106
  507. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +906 -102
  508. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +937 -119
  509. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +928 -110
  510. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +918 -114
  511. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +921 -117
  512. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +923 -115
  513. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +8828 -0
  514. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +8846 -0
  515. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +8843 -0
  516. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +8823 -0
  517. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +916 -112
  518. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +906 -102
  519. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +940 -83
  520. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +924 -106
  521. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +906 -102
  522. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +943 -86
  523. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +921 -103
  524. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +929 -125
  525. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +918 -114
  526. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +906 -102
  527. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +922 -104
  528. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +924 -106
  529. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +906 -102
  530. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +906 -102
  531. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +906 -102
  532. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +936 -88
  533. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +892 -88
  534. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +897 -89
  535. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +897 -89
  536. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +892 -88
  537. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +892 -88
  538. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +892 -88
  539. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +892 -88
  540. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +892 -88
  541. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +892 -88
  542. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +892 -88
  543. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +892 -88
  544. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +892 -88
  545. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +892 -88
  546. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +901 -96
  547. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +892 -88
  548. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +892 -88
  549. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +892 -88
  550. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +892 -88
  551. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +892 -88
  552. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +897 -89
  553. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +892 -88
  554. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +892 -88
  555. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +892 -88
  556. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +892 -88
  557. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +892 -88
  558. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +892 -88
  559. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +892 -88
  560. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +892 -88
  561. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +892 -88
  562. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +892 -88
  563. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +892 -88
  564. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +892 -88
  565. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +892 -88
  566. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/clear-view-button.png +0 -0
  567. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/cleared-view.png +0 -0
  568. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/config-table-columns-to-locations.png +0 -0
  569. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/configure-button.png +0 -0
  570. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/create-saved-view-success.png +0 -0
  571. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/current-saved-view-drop-down-menu.png +0 -0
  572. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/default-location-list-view.png +0 -0
  573. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/dropdown-button-after-new-saved-view.png +0 -0
  574. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/filter-application-to-locations.png +0 -0
  575. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/filter-button.png +0 -0
  576. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/global-default-location-list-view.png +0 -0
  577. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/location-list-view-with-saved-views.png +0 -0
  578. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/navigation-menu.png +0 -0
  579. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/save-as-new-view-drop-down.png +0 -0
  580. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/save-view-modal.png +0 -0
  581. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-buttons.png +0 -0
  582. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-success.png +0 -0
  583. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-view-unchecked.png +0 -0
  584. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-admin-edit-view.png +0 -0
  585. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-different-user.png +0 -0
  586. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/saved-view-modal-unchecked.png +0 -0
  587. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/set-as-my-default-button.png +0 -0
  588. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/set-as-my-default-success.png +0 -0
  589. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/unsaved-saved-view.png +0 -0
  590. nautobot/project-static/docs/user-guide/feature-guides/images/saved-views/updated-saved-view.png +0 -0
  591. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +892 -88
  592. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +892 -88
  593. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +892 -88
  594. nautobot/project-static/docs/user-guide/index.html +892 -88
  595. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +892 -88
  596. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +892 -88
  597. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +892 -88
  598. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +892 -88
  599. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +1258 -785
  600. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +895 -91
  601. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +892 -88
  602. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +892 -88
  603. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +892 -88
  604. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +892 -88
  605. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +892 -88
  606. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +892 -88
  607. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +892 -88
  608. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +892 -88
  609. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +892 -88
  610. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +896 -88
  611. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +892 -88
  612. nautobot/project-static/docs/user-guide/platform-functionality/note.html +895 -91
  613. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +9061 -0
  614. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +895 -91
  615. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +892 -88
  616. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +892 -88
  617. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +892 -88
  618. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +892 -88
  619. nautobot/project-static/docs/user-guide/platform-functionality/role.html +895 -91
  620. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +9137 -0
  621. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +895 -91
  622. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +8933 -0
  623. nautobot/project-static/docs/user-guide/platform-functionality/status.html +892 -88
  624. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +892 -88
  625. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +950 -121
  626. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +892 -88
  627. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +892 -88
  628. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +892 -88
  629. nautobot/project-static/js/forms.js +71 -0
  630. nautobot/project-static/js/table_sorting_indicator.js +46 -0
  631. nautobot/project-static/js/tableconfig.js +6 -1
  632. nautobot/project-static/materialdesignicons-7.4.47/css/materialdesignicons.min.css +3 -0
  633. nautobot/project-static/{materialdesignicons-6.5.95 → materialdesignicons-7.4.47}/fonts/materialdesignicons-webfont.eot +0 -0
  634. nautobot/project-static/{materialdesignicons-6.5.95 → materialdesignicons-7.4.47}/fonts/materialdesignicons-webfont.ttf +0 -0
  635. nautobot/project-static/materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.woff +0 -0
  636. nautobot/project-static/materialdesignicons-7.4.47/fonts/materialdesignicons-webfont.woff2 +0 -0
  637. nautobot/tenancy/__init__.py +0 -1
  638. nautobot/tenancy/apps.py +1 -0
  639. nautobot/tenancy/factory.py +3 -2
  640. nautobot/tenancy/filters/__init__.py +1 -0
  641. nautobot/tenancy/forms.py +1 -1
  642. nautobot/tenancy/templates/tenancy/tenant.html +24 -20
  643. nautobot/tenancy/views.py +11 -10
  644. nautobot/users/__init__.py +0 -1
  645. nautobot/users/api/serializers.py +1 -1
  646. nautobot/users/api/views.py +4 -2
  647. nautobot/users/apps.py +3 -2
  648. nautobot/users/factory.py +3 -3
  649. nautobot/users/migrations/0010_user_default_saved_views.py +20 -0
  650. nautobot/users/models.py +12 -0
  651. nautobot/users/tests/test_filters.py +6 -3
  652. nautobot/users/urls.py +8 -0
  653. nautobot/virtualization/__init__.py +0 -1
  654. nautobot/virtualization/apps.py +1 -0
  655. nautobot/virtualization/filters.py +6 -1
  656. nautobot/virtualization/forms.py +11 -3
  657. nautobot/virtualization/graphql/types.py +2 -2
  658. nautobot/virtualization/migrations/0029_add_role_field_to_interface_models.py +27 -0
  659. nautobot/virtualization/migrations/0030_alter_virtualmachine_local_config_context_data_owner_content_type_and_more.py +67 -0
  660. nautobot/virtualization/models.py +0 -2
  661. nautobot/virtualization/tables.py +10 -3
  662. nautobot/virtualization/templates/virtualization/virtualmachine.html +1 -1
  663. nautobot/virtualization/templates/virtualization/vminterface.html +7 -1
  664. nautobot/virtualization/templates/virtualization/vminterface_edit.html +1 -0
  665. nautobot/virtualization/tests/test_api.py +9 -4
  666. nautobot/virtualization/tests/test_filters.py +22 -0
  667. nautobot/virtualization/tests/test_models.py +7 -3
  668. nautobot/virtualization/tests/test_views.py +19 -3
  669. nautobot/virtualization/urls.py +2 -2
  670. nautobot/virtualization/views.py +10 -32
  671. {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/METADATA +20 -18
  672. {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/RECORD +677 -557
  673. nautobot/project-static/docs/assets/stylesheets/main.76a95c52.min.css +0 -1
  674. nautobot/project-static/docs/assets/stylesheets/main.76a95c52.min.css.map +0 -1
  675. nautobot/project-static/materialdesignicons-6.5.95/.github/ISSUE_TEMPLATE.md +0 -3
  676. nautobot/project-static/materialdesignicons-6.5.95/README.md +0 -25
  677. nautobot/project-static/materialdesignicons-6.5.95/css/materialdesignicons.css +0 -26654
  678. nautobot/project-static/materialdesignicons-6.5.95/css/materialdesignicons.css.map +0 -16
  679. nautobot/project-static/materialdesignicons-6.5.95/css/materialdesignicons.min.css +0 -3
  680. nautobot/project-static/materialdesignicons-6.5.95/css/materialdesignicons.min.css.map +0 -16
  681. nautobot/project-static/materialdesignicons-6.5.95/fonts/materialdesignicons-webfont.woff +0 -0
  682. nautobot/project-static/materialdesignicons-6.5.95/fonts/materialdesignicons-webfont.woff2 +0 -0
  683. nautobot/project-static/materialdesignicons-6.5.95/package.json +0 -28
  684. nautobot/project-static/materialdesignicons-6.5.95/preview.html +0 -717
  685. nautobot/project-static/materialdesignicons-6.5.95/scss/_animated.scss +0 -27
  686. nautobot/project-static/materialdesignicons-6.5.95/scss/_core.scss +0 -10
  687. nautobot/project-static/materialdesignicons-6.5.95/scss/_extras.scss +0 -65
  688. nautobot/project-static/materialdesignicons-6.5.95/scss/_functions.scss +0 -20
  689. nautobot/project-static/materialdesignicons-6.5.95/scss/_icons.scss +0 -10
  690. nautobot/project-static/materialdesignicons-6.5.95/scss/_path.scss +0 -10
  691. nautobot/project-static/materialdesignicons-6.5.95/scss/_variables.scss +0 -6606
  692. nautobot/project-static/materialdesignicons-6.5.95/scss/materialdesignicons.scss +0 -8
  693. /nautobot/project-static/{materialdesignicons-6.5.95 → materialdesignicons-7.4.47}/LICENSE +0 -0
  694. {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/LICENSE.txt +0 -0
  695. {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/NOTICE +0 -0
  696. {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/WHEEL +0 -0
  697. {nautobot-2.2.9.dist-info → nautobot-2.3.0.dist-info}/entry_points.txt +0 -0
@@ -18,7 +18,7 @@
18
18
 
19
19
 
20
20
  <link rel="icon" href="../../../assets/favicon.ico">
21
- <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.29">
21
+ <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.31">
22
22
 
23
23
 
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../../../assets/stylesheets/main.76a95c52.min.css">
29
+ <link rel="stylesheet" href="../../../assets/stylesheets/main.3cba04c6.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../../../assets/stylesheets/palette.06af60db.min.css">
@@ -38,7 +38,7 @@
38
38
 
39
39
 
40
40
 
41
- <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0h-32zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1z"/></svg>');}</style>
41
+ <style>:root{--md-admonition-icon--example:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M288 0H128c-17.7 0-32 14.3-32 32s14.3 32 32 32v132.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6 0 480.9 31.1 512 69.4 512h309.2c38.3 0 69.4-31.1 69.4-69.4 0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32S337.7 0 320 0h-32zm-96 196.8V64h64v132.8c0 23.7 6.6 46.9 19 67.1l34.5 56.1h-171l34.5-56.1c12.4-20.2 19-43.4 19-67.1z"/></svg>');}</style>
42
42
 
43
43
 
44
44
 
@@ -217,7 +217,7 @@
217
217
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
218
218
  <div class="md-source__icon md-icon">
219
219
 
220
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
220
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
221
221
  </div>
222
222
  <div class="md-source__repository">
223
223
  GitHub
@@ -377,7 +377,7 @@
377
377
  <a href="https://github.com/nautobot/nautobot" title="Go to repository" class="md-source" data-md-component="source">
378
378
  <div class="md-source__icon md-icon">
379
379
 
380
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
380
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
381
381
  </div>
382
382
  <div class="md-source__repository">
383
383
  GitHub
@@ -2484,21 +2484,29 @@
2484
2484
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
2485
2485
 
2486
2486
 
2487
- <label class="md-nav__link" for="__nav_2_3_3" id="__nav_2_3_3_label" tabindex="0">
2488
-
2487
+
2488
+ <div class="md-nav__link md-nav__container">
2489
+ <a href="../../../user-guide/core-data-model/cloud/cloud.html" class="md-nav__link ">
2490
+
2489
2491
 
2490
2492
  <span class="md-ellipsis">
2491
- DCIM
2493
+ Cloud
2492
2494
  </span>
2493
2495
 
2494
2496
 
2495
- <span class="md-nav__icon md-icon"></span>
2496
- </label>
2497
+ </a>
2498
+
2499
+
2500
+ <label class="md-nav__link " for="__nav_2_3_3" id="__nav_2_3_3_label" tabindex="0">
2501
+ <span class="md-nav__icon md-icon"></span>
2502
+ </label>
2503
+
2504
+ </div>
2497
2505
 
2498
2506
  <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_3_label" aria-expanded="false">
2499
2507
  <label class="md-nav__title" for="__nav_2_3_3">
2500
2508
  <span class="md-nav__icon md-icon"></span>
2501
- DCIM
2509
+ Cloud
2502
2510
  </label>
2503
2511
  <ul class="md-nav__list" data-md-scrollfix>
2504
2512
 
@@ -2509,11 +2517,11 @@
2509
2517
 
2510
2518
 
2511
2519
  <li class="md-nav__item">
2512
- <a href="../../../user-guide/core-data-model/dcim/locationtype.html" class="md-nav__link">
2520
+ <a href="../../../user-guide/core-data-model/cloud/cloudaccount.html" class="md-nav__link">
2513
2521
 
2514
2522
 
2515
2523
  <span class="md-ellipsis">
2516
- Location Type
2524
+ Cloud Account
2517
2525
  </span>
2518
2526
 
2519
2527
 
@@ -2530,11 +2538,11 @@
2530
2538
 
2531
2539
 
2532
2540
  <li class="md-nav__item">
2533
- <a href="../../../user-guide/core-data-model/dcim/location.html" class="md-nav__link">
2541
+ <a href="../../../user-guide/core-data-model/cloud/cloudnetwork.html" class="md-nav__link">
2534
2542
 
2535
2543
 
2536
2544
  <span class="md-ellipsis">
2537
- Location
2545
+ Cloud Network
2538
2546
  </span>
2539
2547
 
2540
2548
 
@@ -2551,11 +2559,11 @@
2551
2559
 
2552
2560
 
2553
2561
  <li class="md-nav__item">
2554
- <a href="../../../user-guide/core-data-model/dcim/rackgroup.html" class="md-nav__link">
2562
+ <a href="../../../user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html" class="md-nav__link">
2555
2563
 
2556
2564
 
2557
2565
  <span class="md-ellipsis">
2558
- Rack Group
2566
+ Cloud Network Prefix Assignment
2559
2567
  </span>
2560
2568
 
2561
2569
 
@@ -2572,11 +2580,11 @@
2572
2580
 
2573
2581
 
2574
2582
  <li class="md-nav__item">
2575
- <a href="../../../user-guide/core-data-model/dcim/rack.html" class="md-nav__link">
2583
+ <a href="../../../user-guide/core-data-model/cloud/cloudresourcetype.html" class="md-nav__link">
2576
2584
 
2577
2585
 
2578
2586
  <span class="md-ellipsis">
2579
- Rack
2587
+ Cloud Resource Type
2580
2588
  </span>
2581
2589
 
2582
2590
 
@@ -2593,11 +2601,11 @@
2593
2601
 
2594
2602
 
2595
2603
  <li class="md-nav__item">
2596
- <a href="../../../user-guide/core-data-model/dcim/manufacturer.html" class="md-nav__link">
2604
+ <a href="../../../user-guide/core-data-model/cloud/cloudservice.html" class="md-nav__link">
2597
2605
 
2598
2606
 
2599
2607
  <span class="md-ellipsis">
2600
- Manufacturer
2608
+ Cloud Service
2601
2609
  </span>
2602
2610
 
2603
2611
 
@@ -2614,11 +2622,11 @@
2614
2622
 
2615
2623
 
2616
2624
  <li class="md-nav__item">
2617
- <a href="../../../user-guide/core-data-model/dcim/devicefamily.html" class="md-nav__link">
2625
+ <a href="../../../user-guide/core-data-model/cloud/cloudservicenetworkassignment.html" class="md-nav__link">
2618
2626
 
2619
2627
 
2620
2628
  <span class="md-ellipsis">
2621
- Device Family
2629
+ Cloud Service Network Assignment
2622
2630
  </span>
2623
2631
 
2624
2632
 
@@ -2628,22 +2636,9 @@
2628
2636
 
2629
2637
 
2630
2638
 
2631
-
2632
-
2633
-
2634
-
2635
-
2636
-
2637
- <li class="md-nav__item">
2638
- <a href="../../../user-guide/core-data-model/dcim/platform.html" class="md-nav__link">
2639
-
2640
-
2641
- <span class="md-ellipsis">
2642
- Platform
2643
- </span>
2644
-
2645
-
2646
- </a>
2639
+ </ul>
2640
+ </nav>
2641
+
2647
2642
  </li>
2648
2643
 
2649
2644
 
@@ -2666,32 +2661,24 @@
2666
2661
 
2667
2662
 
2668
2663
 
2669
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
2664
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
2670
2665
 
2671
2666
 
2672
-
2673
- <div class="md-nav__link md-nav__container">
2674
- <a href="../../../user-guide/core-data-model/dcim/devicetype.html" class="md-nav__link ">
2675
-
2667
+ <label class="md-nav__link" for="__nav_2_3_4" id="__nav_2_3_4_label" tabindex="0">
2668
+
2676
2669
 
2677
2670
  <span class="md-ellipsis">
2678
- Device Type
2671
+ DCIM
2679
2672
  </span>
2680
2673
 
2681
2674
 
2682
- </a>
2683
-
2684
-
2685
- <label class="md-nav__link " for="__nav_2_3_3_8" id="__nav_2_3_3_8_label" tabindex="0">
2686
- <span class="md-nav__icon md-icon"></span>
2687
- </label>
2688
-
2689
- </div>
2675
+ <span class="md-nav__icon md-icon"></span>
2676
+ </label>
2690
2677
 
2691
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_3_8_label" aria-expanded="false">
2692
- <label class="md-nav__title" for="__nav_2_3_3_8">
2678
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_4_label" aria-expanded="false">
2679
+ <label class="md-nav__title" for="__nav_2_3_4">
2693
2680
  <span class="md-nav__icon md-icon"></span>
2694
- Device Type
2681
+ DCIM
2695
2682
  </label>
2696
2683
  <ul class="md-nav__list" data-md-scrollfix>
2697
2684
 
@@ -2702,32 +2689,11 @@
2702
2689
 
2703
2690
 
2704
2691
  <li class="md-nav__item">
2705
- <a href="../../../user-guide/core-data-model/dcim/consoleporttemplate.html" class="md-nav__link">
2706
-
2707
-
2708
- <span class="md-ellipsis">
2709
- Console Port Template
2710
- </span>
2711
-
2712
-
2713
- </a>
2714
- </li>
2715
-
2716
-
2717
-
2718
-
2719
-
2720
-
2721
-
2722
-
2723
-
2724
-
2725
- <li class="md-nav__item">
2726
- <a href="../../../user-guide/core-data-model/dcim/consoleserverporttemplate.html" class="md-nav__link">
2692
+ <a href="../../../user-guide/core-data-model/dcim/locationtype.html" class="md-nav__link">
2727
2693
 
2728
2694
 
2729
2695
  <span class="md-ellipsis">
2730
- Console Server Port Template
2696
+ Location Type
2731
2697
  </span>
2732
2698
 
2733
2699
 
@@ -2744,11 +2710,11 @@
2744
2710
 
2745
2711
 
2746
2712
  <li class="md-nav__item">
2747
- <a href="../../../user-guide/core-data-model/dcim/devicebaytemplate.html" class="md-nav__link">
2713
+ <a href="../../../user-guide/core-data-model/dcim/location.html" class="md-nav__link">
2748
2714
 
2749
2715
 
2750
2716
  <span class="md-ellipsis">
2751
- Device Bay Template
2717
+ Location
2752
2718
  </span>
2753
2719
 
2754
2720
 
@@ -2765,11 +2731,11 @@
2765
2731
 
2766
2732
 
2767
2733
  <li class="md-nav__item">
2768
- <a href="../../../user-guide/core-data-model/dcim/frontporttemplate.html" class="md-nav__link">
2734
+ <a href="../../../user-guide/core-data-model/dcim/rackgroup.html" class="md-nav__link">
2769
2735
 
2770
2736
 
2771
2737
  <span class="md-ellipsis">
2772
- Front Port Template
2738
+ Rack Group
2773
2739
  </span>
2774
2740
 
2775
2741
 
@@ -2786,11 +2752,11 @@
2786
2752
 
2787
2753
 
2788
2754
  <li class="md-nav__item">
2789
- <a href="../../../user-guide/core-data-model/dcim/interfacetemplate.html" class="md-nav__link">
2755
+ <a href="../../../user-guide/core-data-model/dcim/rack.html" class="md-nav__link">
2790
2756
 
2791
2757
 
2792
2758
  <span class="md-ellipsis">
2793
- Interface Template
2759
+ Rack
2794
2760
  </span>
2795
2761
 
2796
2762
 
@@ -2807,11 +2773,11 @@
2807
2773
 
2808
2774
 
2809
2775
  <li class="md-nav__item">
2810
- <a href="../../../user-guide/core-data-model/dcim/poweroutlettemplate.html" class="md-nav__link">
2776
+ <a href="../../../user-guide/core-data-model/dcim/manufacturer.html" class="md-nav__link">
2811
2777
 
2812
2778
 
2813
2779
  <span class="md-ellipsis">
2814
- Power Outlet Template
2780
+ Manufacturer
2815
2781
  </span>
2816
2782
 
2817
2783
 
@@ -2828,11 +2794,11 @@
2828
2794
 
2829
2795
 
2830
2796
  <li class="md-nav__item">
2831
- <a href="../../../user-guide/core-data-model/dcim/powerporttemplate.html" class="md-nav__link">
2797
+ <a href="../../../user-guide/core-data-model/dcim/devicefamily.html" class="md-nav__link">
2832
2798
 
2833
2799
 
2834
2800
  <span class="md-ellipsis">
2835
- Power Port Template
2801
+ Device Family
2836
2802
  </span>
2837
2803
 
2838
2804
 
@@ -2849,11 +2815,11 @@
2849
2815
 
2850
2816
 
2851
2817
  <li class="md-nav__item">
2852
- <a href="../../../user-guide/core-data-model/dcim/rearporttemplate.html" class="md-nav__link">
2818
+ <a href="../../../user-guide/core-data-model/dcim/platform.html" class="md-nav__link">
2853
2819
 
2854
2820
 
2855
2821
  <span class="md-ellipsis">
2856
- Rear Port Template
2822
+ Platform
2857
2823
  </span>
2858
2824
 
2859
2825
 
@@ -2863,14 +2829,6 @@
2863
2829
 
2864
2830
 
2865
2831
 
2866
- </ul>
2867
- </nav>
2868
-
2869
- </li>
2870
-
2871
-
2872
-
2873
-
2874
2832
 
2875
2833
 
2876
2834
 
@@ -2888,32 +2846,32 @@
2888
2846
 
2889
2847
 
2890
2848
 
2891
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
2849
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4_8" >
2892
2850
 
2893
2851
 
2894
2852
 
2895
2853
  <div class="md-nav__link md-nav__container">
2896
- <a href="../../../user-guide/core-data-model/dcim/device.html" class="md-nav__link ">
2854
+ <a href="../../../user-guide/core-data-model/dcim/devicetype.html" class="md-nav__link ">
2897
2855
 
2898
2856
 
2899
2857
  <span class="md-ellipsis">
2900
- Device
2858
+ Device Type
2901
2859
  </span>
2902
2860
 
2903
2861
 
2904
2862
  </a>
2905
2863
 
2906
2864
 
2907
- <label class="md-nav__link " for="__nav_2_3_3_9" id="__nav_2_3_3_9_label" tabindex="0">
2865
+ <label class="md-nav__link " for="__nav_2_3_4_8" id="__nav_2_3_4_8_label" tabindex="0">
2908
2866
  <span class="md-nav__icon md-icon"></span>
2909
2867
  </label>
2910
2868
 
2911
2869
  </div>
2912
2870
 
2913
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_3_9_label" aria-expanded="false">
2914
- <label class="md-nav__title" for="__nav_2_3_3_9">
2871
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_4_8_label" aria-expanded="false">
2872
+ <label class="md-nav__title" for="__nav_2_3_4_8">
2915
2873
  <span class="md-nav__icon md-icon"></span>
2916
- Device
2874
+ Device Type
2917
2875
  </label>
2918
2876
  <ul class="md-nav__list" data-md-scrollfix>
2919
2877
 
@@ -2924,11 +2882,11 @@
2924
2882
 
2925
2883
 
2926
2884
  <li class="md-nav__item">
2927
- <a href="../../../user-guide/core-data-model/dcim/consoleport.html" class="md-nav__link">
2885
+ <a href="../../../user-guide/core-data-model/dcim/consoleporttemplate.html" class="md-nav__link">
2928
2886
 
2929
2887
 
2930
2888
  <span class="md-ellipsis">
2931
- Console Port
2889
+ Console Port Template
2932
2890
  </span>
2933
2891
 
2934
2892
 
@@ -2945,11 +2903,11 @@
2945
2903
 
2946
2904
 
2947
2905
  <li class="md-nav__item">
2948
- <a href="../../../user-guide/core-data-model/dcim/consoleserverport.html" class="md-nav__link">
2906
+ <a href="../../../user-guide/core-data-model/dcim/consoleserverporttemplate.html" class="md-nav__link">
2949
2907
 
2950
2908
 
2951
2909
  <span class="md-ellipsis">
2952
- Console Server Port
2910
+ Console Server Port Template
2953
2911
  </span>
2954
2912
 
2955
2913
 
@@ -2966,11 +2924,11 @@
2966
2924
 
2967
2925
 
2968
2926
  <li class="md-nav__item">
2969
- <a href="../../../user-guide/core-data-model/dcim/devicebay.html" class="md-nav__link">
2927
+ <a href="../../../user-guide/core-data-model/dcim/devicebaytemplate.html" class="md-nav__link">
2970
2928
 
2971
2929
 
2972
2930
  <span class="md-ellipsis">
2973
- Device Bay
2931
+ Device Bay Template
2974
2932
  </span>
2975
2933
 
2976
2934
 
@@ -2987,11 +2945,11 @@
2987
2945
 
2988
2946
 
2989
2947
  <li class="md-nav__item">
2990
- <a href="../../../user-guide/core-data-model/dcim/frontport.html" class="md-nav__link">
2948
+ <a href="../../../user-guide/core-data-model/dcim/frontporttemplate.html" class="md-nav__link">
2991
2949
 
2992
2950
 
2993
2951
  <span class="md-ellipsis">
2994
- Front Port
2952
+ Front Port Template
2995
2953
  </span>
2996
2954
 
2997
2955
 
@@ -3008,11 +2966,11 @@
3008
2966
 
3009
2967
 
3010
2968
  <li class="md-nav__item">
3011
- <a href="../../../user-guide/core-data-model/dcim/interface.html" class="md-nav__link">
2969
+ <a href="../../../user-guide/core-data-model/dcim/interfacetemplate.html" class="md-nav__link">
3012
2970
 
3013
2971
 
3014
2972
  <span class="md-ellipsis">
3015
- Interface
2973
+ Interface Template
3016
2974
  </span>
3017
2975
 
3018
2976
 
@@ -3029,11 +2987,11 @@
3029
2987
 
3030
2988
 
3031
2989
  <li class="md-nav__item">
3032
- <a href="../../../user-guide/core-data-model/dcim/inventoryitem.html" class="md-nav__link">
2990
+ <a href="../../../user-guide/core-data-model/dcim/modulebaytemplate.html" class="md-nav__link">
3033
2991
 
3034
2992
 
3035
2993
  <span class="md-ellipsis">
3036
- Inventory Item
2994
+ Module Bay Template
3037
2995
  </span>
3038
2996
 
3039
2997
 
@@ -3050,11 +3008,11 @@
3050
3008
 
3051
3009
 
3052
3010
  <li class="md-nav__item">
3053
- <a href="../../../user-guide/core-data-model/dcim/powerport.html" class="md-nav__link">
3011
+ <a href="../../../user-guide/core-data-model/dcim/poweroutlettemplate.html" class="md-nav__link">
3054
3012
 
3055
3013
 
3056
3014
  <span class="md-ellipsis">
3057
- Power Port
3015
+ Power Outlet Template
3058
3016
  </span>
3059
3017
 
3060
3018
 
@@ -3071,11 +3029,11 @@
3071
3029
 
3072
3030
 
3073
3031
  <li class="md-nav__item">
3074
- <a href="../../../user-guide/core-data-model/dcim/poweroutlet.html" class="md-nav__link">
3032
+ <a href="../../../user-guide/core-data-model/dcim/powerporttemplate.html" class="md-nav__link">
3075
3033
 
3076
3034
 
3077
3035
  <span class="md-ellipsis">
3078
- Power Outlet
3036
+ Power Port Template
3079
3037
  </span>
3080
3038
 
3081
3039
 
@@ -3092,11 +3050,11 @@
3092
3050
 
3093
3051
 
3094
3052
  <li class="md-nav__item">
3095
- <a href="../../../user-guide/core-data-model/dcim/rearport.html" class="md-nav__link">
3053
+ <a href="../../../user-guide/core-data-model/dcim/rearporttemplate.html" class="md-nav__link">
3096
3054
 
3097
3055
 
3098
3056
  <span class="md-ellipsis">
3099
- Rear Port
3057
+ Rear Port Template
3100
3058
  </span>
3101
3059
 
3102
3060
 
@@ -3120,20 +3078,45 @@
3120
3078
 
3121
3079
 
3122
3080
 
3123
- <li class="md-nav__item">
3124
- <a href="../../../user-guide/core-data-model/dcim/cable.html" class="md-nav__link">
3081
+
3082
+
3083
+
3084
+
3085
+
3086
+
3087
+
3088
+ <li class="md-nav__item md-nav__item--nested">
3089
+
3125
3090
 
3091
+
3092
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4_9" >
3093
+
3094
+
3095
+
3096
+ <div class="md-nav__link md-nav__container">
3097
+ <a href="../../../user-guide/core-data-model/dcim/device.html" class="md-nav__link ">
3098
+
3126
3099
 
3127
3100
  <span class="md-ellipsis">
3128
- Cable
3101
+ Device
3129
3102
  </span>
3130
3103
 
3131
3104
 
3132
- </a>
3133
- </li>
3134
-
3135
-
3105
+ </a>
3106
+
3136
3107
 
3108
+ <label class="md-nav__link " for="__nav_2_3_4_9" id="__nav_2_3_4_9_label" tabindex="0">
3109
+ <span class="md-nav__icon md-icon"></span>
3110
+ </label>
3111
+
3112
+ </div>
3113
+
3114
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_4_9_label" aria-expanded="false">
3115
+ <label class="md-nav__title" for="__nav_2_3_4_9">
3116
+ <span class="md-nav__icon md-icon"></span>
3117
+ Device
3118
+ </label>
3119
+ <ul class="md-nav__list" data-md-scrollfix>
3137
3120
 
3138
3121
 
3139
3122
 
@@ -3142,11 +3125,11 @@
3142
3125
 
3143
3126
 
3144
3127
  <li class="md-nav__item">
3145
- <a href="../../../user-guide/core-data-model/dcim/deviceredundancygroup.html" class="md-nav__link">
3128
+ <a href="../../../user-guide/core-data-model/dcim/consoleport.html" class="md-nav__link">
3146
3129
 
3147
3130
 
3148
3131
  <span class="md-ellipsis">
3149
- Device Redundancy Group
3132
+ Console Port
3150
3133
  </span>
3151
3134
 
3152
3135
 
@@ -3163,11 +3146,11 @@
3163
3146
 
3164
3147
 
3165
3148
  <li class="md-nav__item">
3166
- <a href="../../../user-guide/core-data-model/dcim/interfaceredundancygroup.html" class="md-nav__link">
3149
+ <a href="../../../user-guide/core-data-model/dcim/consoleserverport.html" class="md-nav__link">
3167
3150
 
3168
3151
 
3169
3152
  <span class="md-ellipsis">
3170
- Interface Redundancy Group
3153
+ Console Server Port
3171
3154
  </span>
3172
3155
 
3173
3156
 
@@ -3184,11 +3167,11 @@
3184
3167
 
3185
3168
 
3186
3169
  <li class="md-nav__item">
3187
- <a href="../../../user-guide/core-data-model/dcim/powerpanel.html" class="md-nav__link">
3170
+ <a href="../../../user-guide/core-data-model/dcim/devicebay.html" class="md-nav__link">
3188
3171
 
3189
3172
 
3190
3173
  <span class="md-ellipsis">
3191
- Power Panel
3174
+ Device Bay
3192
3175
  </span>
3193
3176
 
3194
3177
 
@@ -3205,11 +3188,11 @@
3205
3188
 
3206
3189
 
3207
3190
  <li class="md-nav__item">
3208
- <a href="../../../user-guide/core-data-model/dcim/powerfeed.html" class="md-nav__link">
3191
+ <a href="../../../user-guide/core-data-model/dcim/frontport.html" class="md-nav__link">
3209
3192
 
3210
3193
 
3211
3194
  <span class="md-ellipsis">
3212
- Power Feed
3195
+ Front Port
3213
3196
  </span>
3214
3197
 
3215
3198
 
@@ -3226,11 +3209,11 @@
3226
3209
 
3227
3210
 
3228
3211
  <li class="md-nav__item">
3229
- <a href="../../../user-guide/core-data-model/dcim/rackreservation.html" class="md-nav__link">
3212
+ <a href="../../../user-guide/core-data-model/dcim/interface.html" class="md-nav__link">
3230
3213
 
3231
3214
 
3232
3215
  <span class="md-ellipsis">
3233
- Rack Reservation
3216
+ Interface
3234
3217
  </span>
3235
3218
 
3236
3219
 
@@ -3247,11 +3230,11 @@
3247
3230
 
3248
3231
 
3249
3232
  <li class="md-nav__item">
3250
- <a href="../../../user-guide/core-data-model/dcim/softwareimagefile.html" class="md-nav__link">
3233
+ <a href="../../../user-guide/core-data-model/dcim/inventoryitem.html" class="md-nav__link">
3251
3234
 
3252
3235
 
3253
3236
  <span class="md-ellipsis">
3254
- Software Image File
3237
+ Inventory Item
3255
3238
  </span>
3256
3239
 
3257
3240
 
@@ -3268,11 +3251,11 @@
3268
3251
 
3269
3252
 
3270
3253
  <li class="md-nav__item">
3271
- <a href="../../../user-guide/core-data-model/dcim/softwareversion.html" class="md-nav__link">
3254
+ <a href="../../../user-guide/core-data-model/dcim/modulebay.html" class="md-nav__link">
3272
3255
 
3273
3256
 
3274
3257
  <span class="md-ellipsis">
3275
- Software Version
3258
+ Module Bay
3276
3259
  </span>
3277
3260
 
3278
3261
 
@@ -3289,11 +3272,11 @@
3289
3272
 
3290
3273
 
3291
3274
  <li class="md-nav__item">
3292
- <a href="../../../user-guide/core-data-model/dcim/virtualchassis.html" class="md-nav__link">
3275
+ <a href="../../../user-guide/core-data-model/dcim/powerport.html" class="md-nav__link">
3293
3276
 
3294
3277
 
3295
3278
  <span class="md-ellipsis">
3296
- Virtual Chassis
3279
+ Power Port
3297
3280
  </span>
3298
3281
 
3299
3282
 
@@ -3310,11 +3293,11 @@
3310
3293
 
3311
3294
 
3312
3295
  <li class="md-nav__item">
3313
- <a href="../../../user-guide/core-data-model/dcim/controller.html" class="md-nav__link">
3296
+ <a href="../../../user-guide/core-data-model/dcim/poweroutlet.html" class="md-nav__link">
3314
3297
 
3315
3298
 
3316
3299
  <span class="md-ellipsis">
3317
- Controller
3300
+ Power Outlet
3318
3301
  </span>
3319
3302
 
3320
3303
 
@@ -3331,11 +3314,11 @@
3331
3314
 
3332
3315
 
3333
3316
  <li class="md-nav__item">
3334
- <a href="../../../user-guide/core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
3317
+ <a href="../../../user-guide/core-data-model/dcim/rearport.html" class="md-nav__link">
3335
3318
 
3336
3319
 
3337
3320
  <span class="md-ellipsis">
3338
- Controller Managed Device Group
3321
+ Rear Port
3339
3322
  </span>
3340
3323
 
3341
3324
 
@@ -3370,29 +3353,733 @@
3370
3353
 
3371
3354
 
3372
3355
 
3373
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
3356
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4_10" >
3374
3357
 
3375
3358
 
3376
- <label class="md-nav__link" for="__nav_2_3_4" id="__nav_2_3_4_label" tabindex="0">
3377
-
3359
+
3360
+ <div class="md-nav__link md-nav__container">
3361
+ <a href="../../../user-guide/core-data-model/dcim/moduletype.html" class="md-nav__link ">
3362
+
3378
3363
 
3379
3364
  <span class="md-ellipsis">
3380
- Extras
3365
+ Module Type
3381
3366
  </span>
3382
3367
 
3383
3368
 
3384
- <span class="md-nav__icon md-icon"></span>
3385
- </label>
3386
-
3387
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_4_label" aria-expanded="false">
3388
- <label class="md-nav__title" for="__nav_2_3_4">
3389
- <span class="md-nav__icon md-icon"></span>
3390
- Extras
3391
- </label>
3392
- <ul class="md-nav__list" data-md-scrollfix>
3369
+ </a>
3393
3370
 
3394
3371
 
3395
-
3372
+ <label class="md-nav__link " for="__nav_2_3_4_10" id="__nav_2_3_4_10_label" tabindex="0">
3373
+ <span class="md-nav__icon md-icon"></span>
3374
+ </label>
3375
+
3376
+ </div>
3377
+
3378
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_4_10_label" aria-expanded="false">
3379
+ <label class="md-nav__title" for="__nav_2_3_4_10">
3380
+ <span class="md-nav__icon md-icon"></span>
3381
+ Module Type
3382
+ </label>
3383
+ <ul class="md-nav__list" data-md-scrollfix>
3384
+
3385
+
3386
+
3387
+
3388
+
3389
+
3390
+
3391
+ <li class="md-nav__item">
3392
+ <a href="../../../user-guide/core-data-model/dcim/consoleporttemplate.html" class="md-nav__link">
3393
+
3394
+
3395
+ <span class="md-ellipsis">
3396
+ Console Port Template
3397
+ </span>
3398
+
3399
+
3400
+ </a>
3401
+ </li>
3402
+
3403
+
3404
+
3405
+
3406
+
3407
+
3408
+
3409
+
3410
+
3411
+
3412
+ <li class="md-nav__item">
3413
+ <a href="../../../user-guide/core-data-model/dcim/consoleserverporttemplate.html" class="md-nav__link">
3414
+
3415
+
3416
+ <span class="md-ellipsis">
3417
+ Console Server Port Template
3418
+ </span>
3419
+
3420
+
3421
+ </a>
3422
+ </li>
3423
+
3424
+
3425
+
3426
+
3427
+
3428
+
3429
+
3430
+
3431
+
3432
+
3433
+ <li class="md-nav__item">
3434
+ <a href="../../../user-guide/core-data-model/dcim/frontporttemplate.html" class="md-nav__link">
3435
+
3436
+
3437
+ <span class="md-ellipsis">
3438
+ Front Port Template
3439
+ </span>
3440
+
3441
+
3442
+ </a>
3443
+ </li>
3444
+
3445
+
3446
+
3447
+
3448
+
3449
+
3450
+
3451
+
3452
+
3453
+
3454
+ <li class="md-nav__item">
3455
+ <a href="../../../user-guide/core-data-model/dcim/interfacetemplate.html" class="md-nav__link">
3456
+
3457
+
3458
+ <span class="md-ellipsis">
3459
+ Interface Template
3460
+ </span>
3461
+
3462
+
3463
+ </a>
3464
+ </li>
3465
+
3466
+
3467
+
3468
+
3469
+
3470
+
3471
+
3472
+
3473
+
3474
+
3475
+ <li class="md-nav__item">
3476
+ <a href="../../../user-guide/core-data-model/dcim/modulebaytemplate.html" class="md-nav__link">
3477
+
3478
+
3479
+ <span class="md-ellipsis">
3480
+ Module Bay Template
3481
+ </span>
3482
+
3483
+
3484
+ </a>
3485
+ </li>
3486
+
3487
+
3488
+
3489
+
3490
+
3491
+
3492
+
3493
+
3494
+
3495
+
3496
+ <li class="md-nav__item">
3497
+ <a href="../../../user-guide/core-data-model/dcim/poweroutlettemplate.html" class="md-nav__link">
3498
+
3499
+
3500
+ <span class="md-ellipsis">
3501
+ Power Outlet Template
3502
+ </span>
3503
+
3504
+
3505
+ </a>
3506
+ </li>
3507
+
3508
+
3509
+
3510
+
3511
+
3512
+
3513
+
3514
+
3515
+
3516
+
3517
+ <li class="md-nav__item">
3518
+ <a href="../../../user-guide/core-data-model/dcim/powerporttemplate.html" class="md-nav__link">
3519
+
3520
+
3521
+ <span class="md-ellipsis">
3522
+ Power Port Template
3523
+ </span>
3524
+
3525
+
3526
+ </a>
3527
+ </li>
3528
+
3529
+
3530
+
3531
+
3532
+
3533
+
3534
+
3535
+
3536
+
3537
+
3538
+ <li class="md-nav__item">
3539
+ <a href="../../../user-guide/core-data-model/dcim/rearporttemplate.html" class="md-nav__link">
3540
+
3541
+
3542
+ <span class="md-ellipsis">
3543
+ Rear Port Template
3544
+ </span>
3545
+
3546
+
3547
+ </a>
3548
+ </li>
3549
+
3550
+
3551
+
3552
+
3553
+ </ul>
3554
+ </nav>
3555
+
3556
+ </li>
3557
+
3558
+
3559
+
3560
+
3561
+
3562
+
3563
+
3564
+
3565
+
3566
+
3567
+
3568
+
3569
+
3570
+
3571
+
3572
+
3573
+
3574
+ <li class="md-nav__item md-nav__item--nested">
3575
+
3576
+
3577
+
3578
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4_11" >
3579
+
3580
+
3581
+
3582
+ <div class="md-nav__link md-nav__container">
3583
+ <a href="../../../user-guide/core-data-model/dcim/module.html" class="md-nav__link ">
3584
+
3585
+
3586
+ <span class="md-ellipsis">
3587
+ Module
3588
+ </span>
3589
+
3590
+
3591
+ </a>
3592
+
3593
+
3594
+ <label class="md-nav__link " for="__nav_2_3_4_11" id="__nav_2_3_4_11_label" tabindex="0">
3595
+ <span class="md-nav__icon md-icon"></span>
3596
+ </label>
3597
+
3598
+ </div>
3599
+
3600
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_3_4_11_label" aria-expanded="false">
3601
+ <label class="md-nav__title" for="__nav_2_3_4_11">
3602
+ <span class="md-nav__icon md-icon"></span>
3603
+ Module
3604
+ </label>
3605
+ <ul class="md-nav__list" data-md-scrollfix>
3606
+
3607
+
3608
+
3609
+
3610
+
3611
+
3612
+
3613
+ <li class="md-nav__item">
3614
+ <a href="../../../user-guide/core-data-model/dcim/consoleport.html" class="md-nav__link">
3615
+
3616
+
3617
+ <span class="md-ellipsis">
3618
+ Console Port
3619
+ </span>
3620
+
3621
+
3622
+ </a>
3623
+ </li>
3624
+
3625
+
3626
+
3627
+
3628
+
3629
+
3630
+
3631
+
3632
+
3633
+
3634
+ <li class="md-nav__item">
3635
+ <a href="../../../user-guide/core-data-model/dcim/consoleserverport.html" class="md-nav__link">
3636
+
3637
+
3638
+ <span class="md-ellipsis">
3639
+ Console Server Port
3640
+ </span>
3641
+
3642
+
3643
+ </a>
3644
+ </li>
3645
+
3646
+
3647
+
3648
+
3649
+
3650
+
3651
+
3652
+
3653
+
3654
+
3655
+ <li class="md-nav__item">
3656
+ <a href="../../../user-guide/core-data-model/dcim/frontport.html" class="md-nav__link">
3657
+
3658
+
3659
+ <span class="md-ellipsis">
3660
+ Front Port
3661
+ </span>
3662
+
3663
+
3664
+ </a>
3665
+ </li>
3666
+
3667
+
3668
+
3669
+
3670
+
3671
+
3672
+
3673
+
3674
+
3675
+
3676
+ <li class="md-nav__item">
3677
+ <a href="../../../user-guide/core-data-model/dcim/interface.html" class="md-nav__link">
3678
+
3679
+
3680
+ <span class="md-ellipsis">
3681
+ Interface
3682
+ </span>
3683
+
3684
+
3685
+ </a>
3686
+ </li>
3687
+
3688
+
3689
+
3690
+
3691
+
3692
+
3693
+
3694
+
3695
+
3696
+
3697
+ <li class="md-nav__item">
3698
+ <a href="../../../user-guide/core-data-model/dcim/inventoryitem.html" class="md-nav__link">
3699
+
3700
+
3701
+ <span class="md-ellipsis">
3702
+ Inventory Item
3703
+ </span>
3704
+
3705
+
3706
+ </a>
3707
+ </li>
3708
+
3709
+
3710
+
3711
+
3712
+
3713
+
3714
+
3715
+
3716
+
3717
+
3718
+ <li class="md-nav__item">
3719
+ <a href="../../../user-guide/core-data-model/dcim/modulebay.html" class="md-nav__link">
3720
+
3721
+
3722
+ <span class="md-ellipsis">
3723
+ Module Bay
3724
+ </span>
3725
+
3726
+
3727
+ </a>
3728
+ </li>
3729
+
3730
+
3731
+
3732
+
3733
+
3734
+
3735
+
3736
+
3737
+
3738
+
3739
+ <li class="md-nav__item">
3740
+ <a href="../../../user-guide/core-data-model/dcim/powerport.html" class="md-nav__link">
3741
+
3742
+
3743
+ <span class="md-ellipsis">
3744
+ Power Port
3745
+ </span>
3746
+
3747
+
3748
+ </a>
3749
+ </li>
3750
+
3751
+
3752
+
3753
+
3754
+
3755
+
3756
+
3757
+
3758
+
3759
+
3760
+ <li class="md-nav__item">
3761
+ <a href="../../../user-guide/core-data-model/dcim/poweroutlet.html" class="md-nav__link">
3762
+
3763
+
3764
+ <span class="md-ellipsis">
3765
+ Power Outlet
3766
+ </span>
3767
+
3768
+
3769
+ </a>
3770
+ </li>
3771
+
3772
+
3773
+
3774
+
3775
+
3776
+
3777
+
3778
+
3779
+
3780
+
3781
+ <li class="md-nav__item">
3782
+ <a href="../../../user-guide/core-data-model/dcim/rearport.html" class="md-nav__link">
3783
+
3784
+
3785
+ <span class="md-ellipsis">
3786
+ Rear Port
3787
+ </span>
3788
+
3789
+
3790
+ </a>
3791
+ </li>
3792
+
3793
+
3794
+
3795
+
3796
+ </ul>
3797
+ </nav>
3798
+
3799
+ </li>
3800
+
3801
+
3802
+
3803
+
3804
+
3805
+
3806
+
3807
+
3808
+
3809
+
3810
+ <li class="md-nav__item">
3811
+ <a href="../../../user-guide/core-data-model/dcim/cable.html" class="md-nav__link">
3812
+
3813
+
3814
+ <span class="md-ellipsis">
3815
+ Cable
3816
+ </span>
3817
+
3818
+
3819
+ </a>
3820
+ </li>
3821
+
3822
+
3823
+
3824
+
3825
+
3826
+
3827
+
3828
+
3829
+
3830
+
3831
+ <li class="md-nav__item">
3832
+ <a href="../../../user-guide/core-data-model/dcim/deviceredundancygroup.html" class="md-nav__link">
3833
+
3834
+
3835
+ <span class="md-ellipsis">
3836
+ Device Redundancy Group
3837
+ </span>
3838
+
3839
+
3840
+ </a>
3841
+ </li>
3842
+
3843
+
3844
+
3845
+
3846
+
3847
+
3848
+
3849
+
3850
+
3851
+
3852
+ <li class="md-nav__item">
3853
+ <a href="../../../user-guide/core-data-model/dcim/interfaceredundancygroup.html" class="md-nav__link">
3854
+
3855
+
3856
+ <span class="md-ellipsis">
3857
+ Interface Redundancy Group
3858
+ </span>
3859
+
3860
+
3861
+ </a>
3862
+ </li>
3863
+
3864
+
3865
+
3866
+
3867
+
3868
+
3869
+
3870
+
3871
+
3872
+
3873
+ <li class="md-nav__item">
3874
+ <a href="../../../user-guide/core-data-model/dcim/powerpanel.html" class="md-nav__link">
3875
+
3876
+
3877
+ <span class="md-ellipsis">
3878
+ Power Panel
3879
+ </span>
3880
+
3881
+
3882
+ </a>
3883
+ </li>
3884
+
3885
+
3886
+
3887
+
3888
+
3889
+
3890
+
3891
+
3892
+
3893
+
3894
+ <li class="md-nav__item">
3895
+ <a href="../../../user-guide/core-data-model/dcim/powerfeed.html" class="md-nav__link">
3896
+
3897
+
3898
+ <span class="md-ellipsis">
3899
+ Power Feed
3900
+ </span>
3901
+
3902
+
3903
+ </a>
3904
+ </li>
3905
+
3906
+
3907
+
3908
+
3909
+
3910
+
3911
+
3912
+
3913
+
3914
+
3915
+ <li class="md-nav__item">
3916
+ <a href="../../../user-guide/core-data-model/dcim/rackreservation.html" class="md-nav__link">
3917
+
3918
+
3919
+ <span class="md-ellipsis">
3920
+ Rack Reservation
3921
+ </span>
3922
+
3923
+
3924
+ </a>
3925
+ </li>
3926
+
3927
+
3928
+
3929
+
3930
+
3931
+
3932
+
3933
+
3934
+
3935
+
3936
+ <li class="md-nav__item">
3937
+ <a href="../../../user-guide/core-data-model/dcim/softwareimagefile.html" class="md-nav__link">
3938
+
3939
+
3940
+ <span class="md-ellipsis">
3941
+ Software Image File
3942
+ </span>
3943
+
3944
+
3945
+ </a>
3946
+ </li>
3947
+
3948
+
3949
+
3950
+
3951
+
3952
+
3953
+
3954
+
3955
+
3956
+
3957
+ <li class="md-nav__item">
3958
+ <a href="../../../user-guide/core-data-model/dcim/softwareversion.html" class="md-nav__link">
3959
+
3960
+
3961
+ <span class="md-ellipsis">
3962
+ Software Version
3963
+ </span>
3964
+
3965
+
3966
+ </a>
3967
+ </li>
3968
+
3969
+
3970
+
3971
+
3972
+
3973
+
3974
+
3975
+
3976
+
3977
+
3978
+ <li class="md-nav__item">
3979
+ <a href="../../../user-guide/core-data-model/dcim/virtualchassis.html" class="md-nav__link">
3980
+
3981
+
3982
+ <span class="md-ellipsis">
3983
+ Virtual Chassis
3984
+ </span>
3985
+
3986
+
3987
+ </a>
3988
+ </li>
3989
+
3990
+
3991
+
3992
+
3993
+
3994
+
3995
+
3996
+
3997
+
3998
+
3999
+ <li class="md-nav__item">
4000
+ <a href="../../../user-guide/core-data-model/dcim/controller.html" class="md-nav__link">
4001
+
4002
+
4003
+ <span class="md-ellipsis">
4004
+ Controller
4005
+ </span>
4006
+
4007
+
4008
+ </a>
4009
+ </li>
4010
+
4011
+
4012
+
4013
+
4014
+
4015
+
4016
+
4017
+
4018
+
4019
+
4020
+ <li class="md-nav__item">
4021
+ <a href="../../../user-guide/core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
4022
+
4023
+
4024
+ <span class="md-ellipsis">
4025
+ Controller Managed Device Group
4026
+ </span>
4027
+
4028
+
4029
+ </a>
4030
+ </li>
4031
+
4032
+
4033
+
4034
+
4035
+ </ul>
4036
+ </nav>
4037
+
4038
+ </li>
4039
+
4040
+
4041
+
4042
+
4043
+
4044
+
4045
+
4046
+
4047
+
4048
+
4049
+
4050
+
4051
+
4052
+
4053
+
4054
+
4055
+
4056
+ <li class="md-nav__item md-nav__item--nested">
4057
+
4058
+
4059
+
4060
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
4061
+
4062
+
4063
+ <label class="md-nav__link" for="__nav_2_3_5" id="__nav_2_3_5_label" tabindex="0">
4064
+
4065
+
4066
+ <span class="md-ellipsis">
4067
+ Extras
4068
+ </span>
4069
+
4070
+
4071
+ <span class="md-nav__icon md-icon"></span>
4072
+ </label>
4073
+
4074
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_5_label" aria-expanded="false">
4075
+ <label class="md-nav__title" for="__nav_2_3_5">
4076
+ <span class="md-nav__icon md-icon"></span>
4077
+ Extras
4078
+ </label>
4079
+ <ul class="md-nav__list" data-md-scrollfix>
4080
+
4081
+
4082
+
3396
4083
 
3397
4084
 
3398
4085
 
@@ -3500,10 +4187,10 @@
3500
4187
 
3501
4188
 
3502
4189
 
3503
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
4190
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
3504
4191
 
3505
4192
 
3506
- <label class="md-nav__link" for="__nav_2_3_5" id="__nav_2_3_5_label" tabindex="0">
4193
+ <label class="md-nav__link" for="__nav_2_3_6" id="__nav_2_3_6_label" tabindex="0">
3507
4194
 
3508
4195
 
3509
4196
  <span class="md-ellipsis">
@@ -3514,8 +4201,8 @@
3514
4201
  <span class="md-nav__icon md-icon"></span>
3515
4202
  </label>
3516
4203
 
3517
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_5_label" aria-expanded="false">
3518
- <label class="md-nav__title" for="__nav_2_3_5">
4204
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_6_label" aria-expanded="false">
4205
+ <label class="md-nav__title" for="__nav_2_3_6">
3519
4206
  <span class="md-nav__icon md-icon"></span>
3520
4207
  IPAM
3521
4208
  </label>
@@ -3735,10 +4422,10 @@
3735
4422
 
3736
4423
 
3737
4424
 
3738
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
4425
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
3739
4426
 
3740
4427
 
3741
- <label class="md-nav__link" for="__nav_2_3_6" id="__nav_2_3_6_label" tabindex="0">
4428
+ <label class="md-nav__link" for="__nav_2_3_7" id="__nav_2_3_7_label" tabindex="0">
3742
4429
 
3743
4430
 
3744
4431
  <span class="md-ellipsis">
@@ -3749,8 +4436,8 @@
3749
4436
  <span class="md-nav__icon md-icon"></span>
3750
4437
  </label>
3751
4438
 
3752
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_6_label" aria-expanded="false">
3753
- <label class="md-nav__title" for="__nav_2_3_6">
4439
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_7_label" aria-expanded="false">
4440
+ <label class="md-nav__title" for="__nav_2_3_7">
3754
4441
  <span class="md-nav__icon md-icon"></span>
3755
4442
  Tenancy
3756
4443
  </label>
@@ -3823,10 +4510,10 @@
3823
4510
 
3824
4511
 
3825
4512
 
3826
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
4513
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_8" >
3827
4514
 
3828
4515
 
3829
- <label class="md-nav__link" for="__nav_2_3_7" id="__nav_2_3_7_label" tabindex="0">
4516
+ <label class="md-nav__link" for="__nav_2_3_8" id="__nav_2_3_8_label" tabindex="0">
3830
4517
 
3831
4518
 
3832
4519
  <span class="md-ellipsis">
@@ -3837,8 +4524,8 @@
3837
4524
  <span class="md-nav__icon md-icon"></span>
3838
4525
  </label>
3839
4526
 
3840
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_7_label" aria-expanded="false">
3841
- <label class="md-nav__title" for="__nav_2_3_7">
4527
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_3_8_label" aria-expanded="false">
4528
+ <label class="md-nav__title" for="__nav_2_3_8">
3842
4529
  <span class="md-nav__icon md-icon"></span>
3843
4530
  Virtualization
3844
4531
  </label>
@@ -4093,21 +4780,75 @@
4093
4780
 
4094
4781
 
4095
4782
 
4096
- <li class="md-nav__item">
4097
- <a href="../../../user-guide/platform-functionality/dynamicgroup.html" class="md-nav__link">
4783
+
4784
+
4785
+
4786
+
4787
+
4788
+
4789
+
4790
+ <li class="md-nav__item md-nav__item--nested">
4791
+
4098
4792
 
4793
+
4794
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_5" >
4795
+
4796
+
4797
+
4798
+ <div class="md-nav__link md-nav__container">
4799
+ <a href="../../../user-guide/platform-functionality/dynamicgroup.html" class="md-nav__link ">
4800
+
4099
4801
 
4100
4802
  <span class="md-ellipsis">
4101
4803
  Dynamic Groups
4102
4804
  </span>
4103
4805
 
4104
4806
 
4807
+ </a>
4808
+
4809
+
4810
+ <label class="md-nav__link " for="__nav_2_4_5" id="__nav_2_4_5_label" tabindex="0">
4811
+ <span class="md-nav__icon md-icon"></span>
4812
+ </label>
4813
+
4814
+ </div>
4815
+
4816
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_5_label" aria-expanded="false">
4817
+ <label class="md-nav__title" for="__nav_2_4_5">
4818
+ <span class="md-nav__icon md-icon"></span>
4819
+ Dynamic Groups
4820
+ </label>
4821
+ <ul class="md-nav__list" data-md-scrollfix>
4822
+
4823
+
4824
+
4825
+
4826
+
4827
+
4828
+
4829
+ <li class="md-nav__item">
4830
+ <a href="../../../user-guide/platform-functionality/staticgroupassociation.html" class="md-nav__link">
4831
+
4832
+
4833
+ <span class="md-ellipsis">
4834
+ Static Group Associations
4835
+ </span>
4836
+
4837
+
4105
4838
  </a>
4106
4839
  </li>
4107
4840
 
4108
4841
 
4109
4842
 
4110
4843
 
4844
+ </ul>
4845
+ </nav>
4846
+
4847
+ </li>
4848
+
4849
+
4850
+
4851
+
4111
4852
 
4112
4853
 
4113
4854
 
@@ -4416,7 +5157,28 @@
4416
5157
 
4417
5158
 
4418
5159
  <span class="md-ellipsis">
4419
- NAPALM
5160
+ NAPALM
5161
+ </span>
5162
+
5163
+
5164
+ </a>
5165
+ </li>
5166
+
5167
+
5168
+
5169
+
5170
+
5171
+
5172
+
5173
+
5174
+
5175
+
5176
+ <li class="md-nav__item">
5177
+ <a href="../../../user-guide/platform-functionality/note.html" class="md-nav__link">
5178
+
5179
+
5180
+ <span class="md-ellipsis">
5181
+ Notes
4420
5182
  </span>
4421
5183
 
4422
5184
 
@@ -4433,11 +5195,11 @@
4433
5195
 
4434
5196
 
4435
5197
  <li class="md-nav__item">
4436
- <a href="../../../user-guide/platform-functionality/note.html" class="md-nav__link">
5198
+ <a href="../../../user-guide/platform-functionality/objectmetadata.html" class="md-nav__link">
4437
5199
 
4438
5200
 
4439
5201
  <span class="md-ellipsis">
4440
- Notes
5202
+ Object Metadata
4441
5203
  </span>
4442
5204
 
4443
5205
 
@@ -4485,7 +5247,7 @@
4485
5247
 
4486
5248
 
4487
5249
 
4488
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
5250
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_16" >
4489
5251
 
4490
5252
 
4491
5253
 
@@ -4501,14 +5263,14 @@
4501
5263
  </a>
4502
5264
 
4503
5265
 
4504
- <label class="md-nav__link " for="__nav_2_4_15" id="__nav_2_4_15_label" tabindex="0">
5266
+ <label class="md-nav__link " for="__nav_2_4_16" id="__nav_2_4_16_label" tabindex="0">
4505
5267
  <span class="md-nav__icon md-icon"></span>
4506
5268
  </label>
4507
5269
 
4508
5270
  </div>
4509
5271
 
4510
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_15_label" aria-expanded="false">
4511
- <label class="md-nav__title" for="__nav_2_4_15">
5272
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_16_label" aria-expanded="false">
5273
+ <label class="md-nav__title" for="__nav_2_4_16">
4512
5274
  <span class="md-nav__icon md-icon"></span>
4513
5275
  REST API
4514
5276
  </label>
@@ -4612,6 +5374,27 @@
4612
5374
 
4613
5375
 
4614
5376
 
5377
+ <li class="md-nav__item">
5378
+ <a href="../../../user-guide/platform-functionality/savedview.html" class="md-nav__link">
5379
+
5380
+
5381
+ <span class="md-ellipsis">
5382
+ Saved Views
5383
+ </span>
5384
+
5385
+
5386
+ </a>
5387
+ </li>
5388
+
5389
+
5390
+
5391
+
5392
+
5393
+
5394
+
5395
+
5396
+
5397
+
4615
5398
  <li class="md-nav__item">
4616
5399
  <a href="../../../user-guide/platform-functionality/secret.html" class="md-nav__link">
4617
5400
 
@@ -4707,10 +5490,10 @@
4707
5490
 
4708
5491
 
4709
5492
 
4710
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
5493
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_23" >
4711
5494
 
4712
5495
 
4713
- <label class="md-nav__link" for="__nav_2_4_21" id="__nav_2_4_21_label" tabindex="0">
5496
+ <label class="md-nav__link" for="__nav_2_4_23" id="__nav_2_4_23_label" tabindex="0">
4714
5497
 
4715
5498
 
4716
5499
  <span class="md-ellipsis">
@@ -4721,8 +5504,8 @@
4721
5504
  <span class="md-nav__icon md-icon"></span>
4722
5505
  </label>
4723
5506
 
4724
- <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_21_label" aria-expanded="false">
4725
- <label class="md-nav__title" for="__nav_2_4_21">
5507
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_4_23_label" aria-expanded="false">
5508
+ <label class="md-nav__title" for="__nav_2_4_23">
4726
5509
  <span class="md-nav__icon md-icon"></span>
4727
5510
  Users
4728
5511
  </label>
@@ -7877,6 +8660,27 @@
7877
8660
 
7878
8661
 
7879
8662
 
8663
+ <li class="md-nav__item">
8664
+ <a href="../../../release-notes/version-2.3.html" class="md-nav__link">
8665
+
8666
+
8667
+ <span class="md-ellipsis">
8668
+ Version 2.3
8669
+ </span>
8670
+
8671
+
8672
+ </a>
8673
+ </li>
8674
+
8675
+
8676
+
8677
+
8678
+
8679
+
8680
+
8681
+
8682
+
8683
+
7880
8684
  <li class="md-nav__item">
7881
8685
  <a href="../../../release-notes/version-2.2.html" class="md-nav__link">
7882
8686
 
@@ -9024,16 +9828,16 @@
9024
9828
 
9025
9829
 
9026
9830
  <h1 id="nautobot.apps.ui" class="doc doc-heading">
9027
- <code>nautobot.apps.ui</code>
9831
+ <code>nautobot.apps.ui</code>
9028
9832
 
9029
9833
 
9030
9834
  <a href="#nautobot.apps.ui" class="headerlink" title="Permanent link">&para;</a></h1>
9031
9835
 
9032
- <div class="doc doc-contents first">
9033
-
9836
+ <div class="doc doc-contents first">
9837
+
9034
9838
  <p>Utilities for apps to integrate with and extend the existing Nautobot UI.</p>
9035
9839
 
9036
-
9840
+
9037
9841
 
9038
9842
  <div class="doc doc-children">
9039
9843
 
@@ -9049,22 +9853,21 @@
9049
9853
 
9050
9854
 
9051
9855
  <h2 id="nautobot.apps.ui.Banner" class="doc doc-heading">
9052
- <code>nautobot.apps.ui.Banner</code>
9856
+ <code>nautobot.apps.ui.Banner</code>
9053
9857
 
9054
9858
 
9055
9859
  <a href="#nautobot.apps.ui.Banner" class="headerlink" title="Permanent link">&para;</a></h2>
9056
9860
 
9057
9861
 
9058
- <div class="doc doc-contents ">
9862
+ <div class="doc doc-contents ">
9863
+
9059
9864
 
9060
-
9061
9865
  <p>Class that may be returned by a registered plugin_banners function.</p>
9062
9866
 
9063
9867
 
9064
-
9065
9868
 
9066
- <div class="doc doc-children">
9067
9869
 
9870
+ <div class="doc doc-children">
9068
9871
 
9069
9872
 
9070
9873
 
@@ -9075,10 +9878,10 @@
9075
9878
 
9076
9879
 
9077
9880
 
9078
- </div>
9079
9881
 
9080
9882
  </div>
9081
9883
 
9884
+ </div>
9082
9885
 
9083
9886
  </div>
9084
9887
 
@@ -9087,24 +9890,23 @@
9087
9890
 
9088
9891
 
9089
9892
  <h2 id="nautobot.apps.ui.BannerClassChoices" class="doc doc-heading">
9090
- <code>nautobot.apps.ui.BannerClassChoices</code>
9893
+ <code>nautobot.apps.ui.BannerClassChoices</code>
9091
9894
 
9092
9895
 
9093
9896
  <a href="#nautobot.apps.ui.BannerClassChoices" class="headerlink" title="Permanent link">&para;</a></h2>
9094
9897
 
9095
9898
 
9096
- <div class="doc doc-contents ">
9097
- <p class="doc doc-class-bases">
9098
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
9899
+ <div class="doc doc-contents ">
9900
+ <p class="doc doc-class-bases">
9901
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
9902
+
9099
9903
 
9100
-
9101
9904
  <p>Styling choices for custom banners.</p>
9102
9905
 
9103
9906
 
9104
-
9105
9907
 
9106
- <div class="doc doc-children">
9107
9908
 
9909
+ <div class="doc doc-children">
9108
9910
 
9109
9911
 
9110
9912
 
@@ -9115,10 +9917,10 @@
9115
9917
 
9116
9918
 
9117
9919
 
9118
- </div>
9119
9920
 
9120
9921
  </div>
9121
9922
 
9923
+ </div>
9122
9924
 
9123
9925
  </div>
9124
9926
 
@@ -9127,24 +9929,23 @@
9127
9929
 
9128
9930
 
9129
9931
  <h2 id="nautobot.apps.ui.ButtonColorChoices" class="doc doc-heading">
9130
- <code>nautobot.apps.ui.ButtonColorChoices</code>
9932
+ <code>nautobot.apps.ui.ButtonColorChoices</code>
9131
9933
 
9132
9934
 
9133
9935
  <a href="#nautobot.apps.ui.ButtonColorChoices" class="headerlink" title="Permanent link">&para;</a></h2>
9134
9936
 
9135
9937
 
9136
- <div class="doc doc-contents ">
9137
- <p class="doc doc-class-bases">
9138
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
9938
+ <div class="doc doc-contents ">
9939
+ <p class="doc doc-class-bases">
9940
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.choices.ChoiceSet" href="choices.html#nautobot.apps.choices.ChoiceSet">ChoiceSet</a></code></p>
9941
+
9139
9942
 
9140
-
9141
9943
  <p>Map standard button color choices to Bootstrap color classes</p>
9142
9944
 
9143
9945
 
9144
-
9145
9946
 
9146
- <div class="doc doc-children">
9147
9947
 
9948
+ <div class="doc doc-children">
9148
9949
 
9149
9950
 
9150
9951
 
@@ -9155,10 +9956,10 @@
9155
9956
 
9156
9957
 
9157
9958
 
9158
- </div>
9159
9959
 
9160
9960
  </div>
9161
9961
 
9962
+ </div>
9162
9963
 
9163
9964
  </div>
9164
9965
 
@@ -9167,24 +9968,23 @@
9167
9968
 
9168
9969
 
9169
9970
  <h2 id="nautobot.apps.ui.HomePageBase" class="doc doc-heading">
9170
- <code>nautobot.apps.ui.HomePageBase</code>
9971
+ <code>nautobot.apps.ui.HomePageBase</code>
9171
9972
 
9172
9973
 
9173
9974
  <a href="#nautobot.apps.ui.HomePageBase" class="headerlink" title="Permanent link">&para;</a></h2>
9174
9975
 
9175
9976
 
9176
- <div class="doc doc-contents ">
9177
- <p class="doc doc-class-bases">
9178
- Bases: <code><span title="abc.ABC">ABC</span></code></p>
9977
+ <div class="doc doc-contents ">
9978
+ <p class="doc doc-class-bases">
9979
+ Bases: <code><span title="abc.ABC">ABC</span></code></p>
9980
+
9179
9981
 
9180
-
9181
9982
  <p>Base class for homepage layout classes.</p>
9182
9983
 
9183
9984
 
9184
-
9185
9985
 
9186
- <div class="doc doc-children">
9187
9986
 
9987
+ <div class="doc doc-children">
9188
9988
 
9189
9989
 
9190
9990
 
@@ -9195,10 +9995,10 @@
9195
9995
 
9196
9996
 
9197
9997
 
9198
- </div>
9199
9998
 
9200
9999
  </div>
9201
10000
 
10001
+ </div>
9202
10002
 
9203
10003
  </div>
9204
10004
 
@@ -9207,24 +10007,23 @@
9207
10007
 
9208
10008
 
9209
10009
  <h2 id="nautobot.apps.ui.HomePageGroup" class="doc doc-heading">
9210
- <code>nautobot.apps.ui.HomePageGroup</code>
10010
+ <code>nautobot.apps.ui.HomePageGroup</code>
9211
10011
 
9212
10012
 
9213
10013
  <a href="#nautobot.apps.ui.HomePageGroup" class="headerlink" title="Permanent link">&para;</a></h2>
9214
10014
 
9215
10015
 
9216
- <div class="doc doc-contents ">
9217
- <p class="doc doc-class-bases">
9218
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10016
+ <div class="doc doc-contents ">
10017
+ <p class="doc doc-class-bases">
10018
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10019
+
9219
10020
 
9220
-
9221
10021
  <p>Defines properties that can be used for a panel group.</p>
9222
10022
 
9223
10023
 
9224
-
9225
10024
 
9226
- <div class="doc doc-children">
9227
10025
 
10026
+ <div class="doc doc-children">
9228
10027
 
9229
10028
 
9230
10029
 
@@ -9237,90 +10036,88 @@
9237
10036
  <div class="doc doc-object doc-function">
9238
10037
 
9239
10038
 
9240
-
9241
10039
  <h3 id="nautobot.apps.ui.HomePageGroup.__init__" class="doc doc-heading">
9242
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
10040
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
9243
10041
 
9244
10042
  <a href="#nautobot.apps.ui.HomePageGroup.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
9245
10043
 
9246
10044
 
9247
- <div class="doc doc-contents ">
9248
-
9249
- <p>Ensure group properties.</p>
10045
+ <div class="doc doc-contents ">
9250
10046
 
10047
+ <p>Ensure group properties.</p>
9251
10048
 
9252
10049
 
9253
- <p><strong>Parameters:</strong></p>
9254
- <table>
9255
- <thead>
9256
- <tr>
9257
- <th>Name</th>
9258
- <th>Type</th>
9259
- <th>Description</th>
9260
- <th>Default</th>
9261
- </tr>
9262
- </thead>
9263
- <tbody>
9264
- <tr>
9265
- <td><code>name</code></td>
9266
- <td>
9267
- <code>str</code>
9268
- </td>
9269
- <td>
9270
- <div class="doc-md-description">
9271
- <p>The name of the group.</p>
9272
- </div>
9273
- </td>
9274
- <td>
9275
- <em>required</em>
9276
- </td>
9277
- </tr>
9278
- <tr>
9279
- <td><code>permissions</code></td>
9280
- <td>
9281
- <code>list</code>
9282
- </td>
9283
- <td>
9284
- <div class="doc-md-description">
9285
- <p>The permissions required to view this group.</p>
9286
- </div>
9287
- </td>
9288
- <td>
9289
- <code>None</code>
9290
- </td>
9291
- </tr>
9292
- <tr>
9293
- <td><code>items</code></td>
9294
- <td>
9295
- <code>list</code>
9296
- </td>
9297
- <td>
9298
- <div class="doc-md-description">
9299
- <p>List of items to be rendered in this group.</p>
9300
- </div>
9301
- </td>
9302
- <td>
9303
- <code>None</code>
9304
- </td>
9305
- </tr>
10050
+ <p><span class="doc-section-title">Parameters:</span></p>
10051
+ <table>
10052
+ <thead>
9306
10053
  <tr>
9307
- <td><code>weight</code></td>
9308
- <td>
9309
- <code>int</code>
9310
- </td>
9311
- <td>
9312
- <div class="doc-md-description">
9313
- <p>The weight of this group.</p>
9314
- </div>
9315
- </td>
9316
- <td>
9317
- <code>1000</code>
9318
- </td>
10054
+ <th>Name</th>
10055
+ <th>Type</th>
10056
+ <th>Description</th>
10057
+ <th>Default</th>
9319
10058
  </tr>
9320
- </tbody>
9321
- </table>
10059
+ </thead>
10060
+ <tbody>
10061
+ <tr class="doc-section-item">
10062
+ <td><code>name</code></td>
10063
+ <td>
10064
+ <code>str</code>
10065
+ </td>
10066
+ <td>
10067
+ <div class="doc-md-description">
10068
+ <p>The name of the group.</p>
10069
+ </div>
10070
+ </td>
10071
+ <td>
10072
+ <em>required</em>
10073
+ </td>
10074
+ </tr>
10075
+ <tr class="doc-section-item">
10076
+ <td><code>permissions</code></td>
10077
+ <td>
10078
+ <code>list</code>
10079
+ </td>
10080
+ <td>
10081
+ <div class="doc-md-description">
10082
+ <p>The permissions required to view this group.</p>
10083
+ </div>
10084
+ </td>
10085
+ <td>
10086
+ <code>None</code>
10087
+ </td>
10088
+ </tr>
10089
+ <tr class="doc-section-item">
10090
+ <td><code>items</code></td>
10091
+ <td>
10092
+ <code>list</code>
10093
+ </td>
10094
+ <td>
10095
+ <div class="doc-md-description">
10096
+ <p>List of items to be rendered in this group.</p>
10097
+ </div>
10098
+ </td>
10099
+ <td>
10100
+ <code>None</code>
10101
+ </td>
10102
+ </tr>
10103
+ <tr class="doc-section-item">
10104
+ <td><code>weight</code></td>
10105
+ <td>
10106
+ <code>int</code>
10107
+ </td>
10108
+ <td>
10109
+ <div class="doc-md-description">
10110
+ <p>The weight of this group.</p>
10111
+ </div>
10112
+ </td>
10113
+ <td>
10114
+ <code>1000</code>
10115
+ </td>
10116
+ </tr>
10117
+ </tbody>
10118
+ </table>
9322
10119
 
9323
- </div>
10120
+ </div>
9324
10121
 
9325
10122
  </div>
9326
10123
 
@@ -9328,8 +10125,7 @@
9328
10125
 
9329
10126
  </div>
9330
10127
 
9331
- </div>
9332
-
10128
+ </div>
9333
10129
 
9334
10130
  </div>
9335
10131
 
@@ -9338,24 +10134,23 @@
9338
10134
 
9339
10135
 
9340
10136
  <h2 id="nautobot.apps.ui.HomePageItem" class="doc doc-heading">
9341
- <code>nautobot.apps.ui.HomePageItem</code>
10137
+ <code>nautobot.apps.ui.HomePageItem</code>
9342
10138
 
9343
10139
 
9344
10140
  <a href="#nautobot.apps.ui.HomePageItem" class="headerlink" title="Permanent link">&para;</a></h2>
9345
10141
 
9346
10142
 
9347
- <div class="doc doc-contents ">
9348
- <p class="doc doc-class-bases">
9349
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10143
+ <div class="doc doc-contents ">
10144
+ <p class="doc doc-class-bases">
10145
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10146
+
9350
10147
 
9351
-
9352
10148
  <p>Defines properties that can be used for a panel item.</p>
9353
10149
 
9354
10150
 
9355
-
9356
10151
 
9357
- <div class="doc doc-children">
9358
10152
 
10153
+ <div class="doc doc-children">
9359
10154
 
9360
10155
 
9361
10156
 
@@ -9368,104 +10163,102 @@
9368
10163
  <div class="doc doc-object doc-function">
9369
10164
 
9370
10165
 
9371
-
9372
10166
  <h3 id="nautobot.apps.ui.HomePageItem.__init__" class="doc doc-heading">
9373
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">link</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">model</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_template</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_data</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">description</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
10167
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">link</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">model</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_template</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_data</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">description</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
9374
10168
 
9375
10169
  <a href="#nautobot.apps.ui.HomePageItem.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
9376
10170
 
9377
10171
 
9378
- <div class="doc doc-contents ">
9379
-
9380
- <p>Ensure item properties.</p>
10172
+ <div class="doc doc-contents ">
9381
10173
 
10174
+ <p>Ensure item properties.</p>
9382
10175
 
9383
10176
 
9384
- <p><strong>Parameters:</strong></p>
9385
- <table>
9386
- <thead>
9387
- <tr>
9388
- <th>Name</th>
9389
- <th>Type</th>
9390
- <th>Description</th>
9391
- <th>Default</th>
9392
- </tr>
9393
- </thead>
9394
- <tbody>
9395
- <tr>
9396
- <td><code>name</code></td>
9397
- <td>
9398
- <code>str</code>
9399
- </td>
9400
- <td>
9401
- <div class="doc-md-description">
9402
- <p>The name of the item.</p>
9403
- </div>
9404
- </td>
9405
- <td>
9406
- <em>required</em>
9407
- </td>
9408
- </tr>
9409
- <tr>
9410
- <td><code>link</code></td>
9411
- <td>
9412
- <code>str</code>
9413
- </td>
9414
- <td>
9415
- <div class="doc-md-description">
9416
- <p>The link to be used for this item.</p>
9417
- </div>
9418
- </td>
9419
- <td>
9420
- <code>None</code>
9421
- </td>
9422
- </tr>
9423
- <tr>
9424
- <td><code>model</code></td>
9425
- <td>
9426
- <code>str</code>
9427
- </td>
9428
- <td>
9429
- <div class="doc-md-description">
9430
- <p>The model to being used for this item to calculate the total count of objects.</p>
9431
- </div>
9432
- </td>
9433
- <td>
9434
- <code>None</code>
9435
- </td>
9436
- </tr>
10177
+ <p><span class="doc-section-title">Parameters:</span></p>
10178
+ <table>
10179
+ <thead>
9437
10180
  <tr>
9438
- <td><code>custom_template</code></td>
9439
- <td>
9440
- <code>str</code>
9441
- </td>
9442
- <td>
9443
- <div class="doc-md-description">
9444
- <p>Name of custom template.</p>
9445
- </div>
9446
- </td>
9447
- <td>
9448
- <code>None</code>
9449
- </td>
9450
- </tr>
9451
- <tr>
9452
- <td><code>custom_data</code></td>
9453
- <td>
9454
- <code>dict</code>
9455
- </td>
9456
- <td>
9457
- <div class="doc-md-description">
9458
- <p>Custom data to be passed to the custom template.</p>
9459
- </div>
9460
- </td>
9461
- <td>
9462
- <code>None</code>
9463
- </td>
10181
+ <th>Name</th>
10182
+ <th>Type</th>
10183
+ <th>Description</th>
10184
+ <th>Default</th>
9464
10185
  </tr>
9465
- </tbody>
9466
- </table>
10186
+ </thead>
10187
+ <tbody>
10188
+ <tr class="doc-section-item">
10189
+ <td><code>name</code></td>
10190
+ <td>
10191
+ <code>str</code>
10192
+ </td>
10193
+ <td>
10194
+ <div class="doc-md-description">
10195
+ <p>The name of the item.</p>
10196
+ </div>
10197
+ </td>
10198
+ <td>
10199
+ <em>required</em>
10200
+ </td>
10201
+ </tr>
10202
+ <tr class="doc-section-item">
10203
+ <td><code>link</code></td>
10204
+ <td>
10205
+ <code>str</code>
10206
+ </td>
10207
+ <td>
10208
+ <div class="doc-md-description">
10209
+ <p>The link to be used for this item.</p>
10210
+ </div>
10211
+ </td>
10212
+ <td>
10213
+ <code>None</code>
10214
+ </td>
10215
+ </tr>
10216
+ <tr class="doc-section-item">
10217
+ <td><code>model</code></td>
10218
+ <td>
10219
+ <code>str</code>
10220
+ </td>
10221
+ <td>
10222
+ <div class="doc-md-description">
10223
+ <p>The model to being used for this item to calculate the total count of objects.</p>
10224
+ </div>
10225
+ </td>
10226
+ <td>
10227
+ <code>None</code>
10228
+ </td>
10229
+ </tr>
10230
+ <tr class="doc-section-item">
10231
+ <td><code>custom_template</code></td>
10232
+ <td>
10233
+ <code>str</code>
10234
+ </td>
10235
+ <td>
10236
+ <div class="doc-md-description">
10237
+ <p>Name of custom template.</p>
10238
+ </div>
10239
+ </td>
10240
+ <td>
10241
+ <code>None</code>
10242
+ </td>
10243
+ </tr>
10244
+ <tr class="doc-section-item">
10245
+ <td><code>custom_data</code></td>
10246
+ <td>
10247
+ <code>dict</code>
10248
+ </td>
10249
+ <td>
10250
+ <div class="doc-md-description">
10251
+ <p>Custom data to be passed to the custom template.</p>
10252
+ </div>
10253
+ </td>
10254
+ <td>
10255
+ <code>None</code>
10256
+ </td>
10257
+ </tr>
10258
+ </tbody>
10259
+ </table>
9467
10260
 
9468
- </div>
10261
+ </div>
9469
10262
 
9470
10263
  </div>
9471
10264
 
@@ -9473,8 +10266,7 @@
9473
10266
 
9474
10267
  </div>
9475
10268
 
9476
- </div>
9477
-
10269
+ </div>
9478
10270
 
9479
10271
  </div>
9480
10272
 
@@ -9483,24 +10275,23 @@
9483
10275
 
9484
10276
 
9485
10277
  <h2 id="nautobot.apps.ui.HomePagePanel" class="doc doc-heading">
9486
- <code>nautobot.apps.ui.HomePagePanel</code>
10278
+ <code>nautobot.apps.ui.HomePagePanel</code>
9487
10279
 
9488
10280
 
9489
10281
  <a href="#nautobot.apps.ui.HomePagePanel" class="headerlink" title="Permanent link">&para;</a></h2>
9490
10282
 
9491
10283
 
9492
- <div class="doc doc-contents ">
9493
- <p class="doc doc-class-bases">
9494
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10284
+ <div class="doc doc-contents ">
10285
+ <p class="doc doc-class-bases">
10286
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.HomePageBase" href="#nautobot.apps.ui.HomePageBase">HomePageBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10287
+
9495
10288
 
9496
-
9497
10289
  <p>Defines properties that can be used for a panel.</p>
9498
10290
 
9499
10291
 
9500
-
9501
10292
 
9502
- <div class="doc doc-children">
9503
10293
 
10294
+ <div class="doc doc-children">
9504
10295
 
9505
10296
 
9506
10297
 
@@ -9513,118 +10304,116 @@
9513
10304
  <div class="doc doc-object doc-function">
9514
10305
 
9515
10306
 
9516
-
9517
10307
  <h3 id="nautobot.apps.ui.HomePagePanel.__init__" class="doc doc-heading">
9518
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_data</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_template</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
10308
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_data</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">custom_template</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
9519
10309
 
9520
10310
  <a href="#nautobot.apps.ui.HomePagePanel.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
9521
10311
 
9522
10312
 
9523
- <div class="doc doc-contents ">
9524
-
9525
- <p>Ensure panel properties.</p>
10313
+ <div class="doc doc-contents ">
9526
10314
 
10315
+ <p>Ensure panel properties.</p>
9527
10316
 
9528
10317
 
9529
- <p><strong>Parameters:</strong></p>
9530
- <table>
9531
- <thead>
9532
- <tr>
9533
- <th>Name</th>
9534
- <th>Type</th>
9535
- <th>Description</th>
9536
- <th>Default</th>
9537
- </tr>
9538
- </thead>
9539
- <tbody>
9540
- <tr>
9541
- <td><code>name</code></td>
9542
- <td>
9543
- <code>str</code>
9544
- </td>
9545
- <td>
9546
- <div class="doc-md-description">
9547
- <p>The name of the panel.</p>
9548
- </div>
9549
- </td>
9550
- <td>
9551
- <em>required</em>
9552
- </td>
9553
- </tr>
9554
- <tr>
9555
- <td><code>permissions</code></td>
9556
- <td>
9557
- <code>list</code>
9558
- </td>
9559
- <td>
9560
- <div class="doc-md-description">
9561
- <p>The permissions required to view this panel.</p>
9562
- </div>
9563
- </td>
9564
- <td>
9565
- <code>None</code>
9566
- </td>
9567
- </tr>
9568
- <tr>
9569
- <td><code>custom_data</code></td>
9570
- <td>
9571
- <code>dict</code>
9572
- </td>
9573
- <td>
9574
- <div class="doc-md-description">
9575
- <p>Custom data to be passed to the custom template.</p>
9576
- </div>
9577
- </td>
9578
- <td>
9579
- <code>None</code>
9580
- </td>
9581
- </tr>
10318
+ <p><span class="doc-section-title">Parameters:</span></p>
10319
+ <table>
10320
+ <thead>
9582
10321
  <tr>
9583
- <td><code>custom_template</code></td>
9584
- <td>
9585
- <code>str</code>
9586
- </td>
9587
- <td>
9588
- <div class="doc-md-description">
9589
- <p>Name of custom template.</p>
9590
- </div>
9591
- </td>
9592
- <td>
9593
- <code>None</code>
9594
- </td>
9595
- </tr>
9596
- <tr>
9597
- <td><code>items</code></td>
9598
- <td>
9599
- <code>list</code>
9600
- </td>
9601
- <td>
9602
- <div class="doc-md-description">
9603
- <p>List of items to be rendered in this panel.</p>
9604
- </div>
9605
- </td>
9606
- <td>
9607
- <code>None</code>
9608
- </td>
10322
+ <th>Name</th>
10323
+ <th>Type</th>
10324
+ <th>Description</th>
10325
+ <th>Default</th>
9609
10326
  </tr>
9610
- <tr>
9611
- <td><code>weight</code></td>
9612
- <td>
9613
- <code>int</code>
9614
- </td>
9615
- <td>
9616
- <div class="doc-md-description">
9617
- <p>The weight of this panel.</p>
9618
- </div>
9619
- </td>
9620
- <td>
9621
- <code>1000</code>
9622
- </td>
9623
- </tr>
9624
- </tbody>
9625
- </table>
10327
+ </thead>
10328
+ <tbody>
10329
+ <tr class="doc-section-item">
10330
+ <td><code>name</code></td>
10331
+ <td>
10332
+ <code>str</code>
10333
+ </td>
10334
+ <td>
10335
+ <div class="doc-md-description">
10336
+ <p>The name of the panel.</p>
10337
+ </div>
10338
+ </td>
10339
+ <td>
10340
+ <em>required</em>
10341
+ </td>
10342
+ </tr>
10343
+ <tr class="doc-section-item">
10344
+ <td><code>permissions</code></td>
10345
+ <td>
10346
+ <code>list</code>
10347
+ </td>
10348
+ <td>
10349
+ <div class="doc-md-description">
10350
+ <p>The permissions required to view this panel.</p>
10351
+ </div>
10352
+ </td>
10353
+ <td>
10354
+ <code>None</code>
10355
+ </td>
10356
+ </tr>
10357
+ <tr class="doc-section-item">
10358
+ <td><code>custom_data</code></td>
10359
+ <td>
10360
+ <code>dict</code>
10361
+ </td>
10362
+ <td>
10363
+ <div class="doc-md-description">
10364
+ <p>Custom data to be passed to the custom template.</p>
10365
+ </div>
10366
+ </td>
10367
+ <td>
10368
+ <code>None</code>
10369
+ </td>
10370
+ </tr>
10371
+ <tr class="doc-section-item">
10372
+ <td><code>custom_template</code></td>
10373
+ <td>
10374
+ <code>str</code>
10375
+ </td>
10376
+ <td>
10377
+ <div class="doc-md-description">
10378
+ <p>Name of custom template.</p>
10379
+ </div>
10380
+ </td>
10381
+ <td>
10382
+ <code>None</code>
10383
+ </td>
10384
+ </tr>
10385
+ <tr class="doc-section-item">
10386
+ <td><code>items</code></td>
10387
+ <td>
10388
+ <code>list</code>
10389
+ </td>
10390
+ <td>
10391
+ <div class="doc-md-description">
10392
+ <p>List of items to be rendered in this panel.</p>
10393
+ </div>
10394
+ </td>
10395
+ <td>
10396
+ <code>None</code>
10397
+ </td>
10398
+ </tr>
10399
+ <tr class="doc-section-item">
10400
+ <td><code>weight</code></td>
10401
+ <td>
10402
+ <code>int</code>
10403
+ </td>
10404
+ <td>
10405
+ <div class="doc-md-description">
10406
+ <p>The weight of this panel.</p>
10407
+ </div>
10408
+ </td>
10409
+ <td>
10410
+ <code>1000</code>
10411
+ </td>
10412
+ </tr>
10413
+ </tbody>
10414
+ </table>
9626
10415
 
9627
- </div>
10416
+ </div>
9628
10417
 
9629
10418
  </div>
9630
10419
 
@@ -9632,8 +10421,7 @@
9632
10421
 
9633
10422
  </div>
9634
10423
 
9635
- </div>
9636
-
10424
+ </div>
9637
10425
 
9638
10426
  </div>
9639
10427
 
@@ -9642,22 +10430,22 @@
9642
10430
 
9643
10431
 
9644
10432
  <h2 id="nautobot.apps.ui.NavContext" class="doc doc-heading">
9645
- <code>nautobot.apps.ui.NavContext</code>
10433
+ <code>nautobot.apps.ui.NavContext</code>
9646
10434
 
9647
10435
 
9648
10436
  <a href="#nautobot.apps.ui.NavContext" class="headerlink" title="Permanent link">&para;</a></h2>
9649
10437
 
9650
10438
 
9651
- <div class="doc doc-contents ">
9652
- <p class="doc doc-class-bases">
9653
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code></p>
10439
+ <div class="doc doc-contents ">
10440
+ <p class="doc doc-class-bases">
10441
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code></p>
10442
+
9654
10443
 
9655
-
9656
10444
  <p>Ths class represents a navigation menu tab for new ui.</p>
9657
10445
  <p>Groups are each specified as a list of NavGrouping instances.</p>
9658
10446
 
9659
10447
 
9660
-
10448
+
9661
10449
 
9662
10450
  <div class="doc doc-children">
9663
10451
 
@@ -9672,8 +10460,8 @@
9672
10460
 
9673
10461
 
9674
10462
  <h3 id="nautobot.apps.ui.NavContext.fixed_fields" class="doc doc-heading">
9675
- <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
9676
-
10463
+ <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
10464
+
9677
10465
  <span class="doc doc-labels">
9678
10466
  <small class="doc doc-label doc-label-property"><code>property</code></small>
9679
10467
  </span>
@@ -9681,10 +10469,10 @@
9681
10469
  <a href="#nautobot.apps.ui.NavContext.fixed_fields" class="headerlink" title="Permanent link">&para;</a></h3>
9682
10470
 
9683
10471
 
9684
- <div class="doc doc-contents ">
9685
-
10472
+ <div class="doc doc-contents ">
10473
+
9686
10474
  <p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
9687
- </div>
10475
+ </div>
9688
10476
 
9689
10477
  </div>
9690
10478
 
@@ -9693,8 +10481,8 @@
9693
10481
 
9694
10482
 
9695
10483
  <h3 id="nautobot.apps.ui.NavContext.initial_dict" class="doc doc-heading">
9696
- <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
9697
-
10484
+ <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10485
+
9698
10486
  <span class="doc doc-labels">
9699
10487
  <small class="doc doc-label doc-label-property"><code>property</code></small>
9700
10488
  </span>
@@ -9702,10 +10490,10 @@
9702
10490
  <a href="#nautobot.apps.ui.NavContext.initial_dict" class="headerlink" title="Permanent link">&para;</a></h3>
9703
10491
 
9704
10492
 
9705
- <div class="doc doc-contents ">
9706
-
10493
+ <div class="doc doc-contents ">
10494
+
9707
10495
  <p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
9708
- </div>
10496
+ </div>
9709
10497
 
9710
10498
  </div>
9711
10499
 
@@ -9715,8 +10503,7 @@
9715
10503
 
9716
10504
  </div>
9717
10505
 
9718
- </div>
9719
-
10506
+ </div>
9720
10507
 
9721
10508
  </div>
9722
10509
 
@@ -9725,23 +10512,23 @@
9725
10512
 
9726
10513
 
9727
10514
  <h2 id="nautobot.apps.ui.NavGrouping" class="doc doc-heading">
9728
- <code>nautobot.apps.ui.NavGrouping</code>
10515
+ <code>nautobot.apps.ui.NavGrouping</code>
9729
10516
 
9730
10517
 
9731
10518
  <a href="#nautobot.apps.ui.NavGrouping" class="headerlink" title="Permanent link">&para;</a></h2>
9732
10519
 
9733
10520
 
9734
- <div class="doc doc-contents ">
9735
- <p class="doc doc-class-bases">
9736
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10521
+ <div class="doc doc-contents ">
10522
+ <p class="doc doc-class-bases">
10523
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10524
+
9737
10525
 
9738
-
9739
10526
  <p>Ths class represents a navigation menu group for the new ui. This is built up from a name and a weight value. The name is
9740
10527
  the display text and the weight defines its position in the navigation sidebar.</p>
9741
10528
  <p>Items are each specified as a list of NavItem or NavGrouping instances.</p>
9742
10529
 
9743
10530
 
9744
-
10531
+
9745
10532
 
9746
10533
  <div class="doc doc-children">
9747
10534
 
@@ -9756,8 +10543,8 @@ the display text and the weight defines its position in the navigation sidebar.<
9756
10543
 
9757
10544
 
9758
10545
  <h3 id="nautobot.apps.ui.NavGrouping.fixed_fields" class="doc doc-heading">
9759
- <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
9760
-
10546
+ <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
10547
+
9761
10548
  <span class="doc doc-labels">
9762
10549
  <small class="doc doc-label doc-label-property"><code>property</code></small>
9763
10550
  </span>
@@ -9765,10 +10552,10 @@ the display text and the weight defines its position in the navigation sidebar.<
9765
10552
  <a href="#nautobot.apps.ui.NavGrouping.fixed_fields" class="headerlink" title="Permanent link">&para;</a></h3>
9766
10553
 
9767
10554
 
9768
- <div class="doc doc-contents ">
9769
-
10555
+ <div class="doc doc-contents ">
10556
+
9770
10557
  <p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
9771
- </div>
10558
+ </div>
9772
10559
 
9773
10560
  </div>
9774
10561
 
@@ -9777,8 +10564,8 @@ the display text and the weight defines its position in the navigation sidebar.<
9777
10564
 
9778
10565
 
9779
10566
  <h3 id="nautobot.apps.ui.NavGrouping.initial_dict" class="doc doc-heading">
9780
- <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
9781
-
10567
+ <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10568
+
9782
10569
  <span class="doc doc-labels">
9783
10570
  <small class="doc doc-label doc-label-property"><code>property</code></small>
9784
10571
  </span>
@@ -9786,10 +10573,10 @@ the display text and the weight defines its position in the navigation sidebar.<
9786
10573
  <a href="#nautobot.apps.ui.NavGrouping.initial_dict" class="headerlink" title="Permanent link">&para;</a></h3>
9787
10574
 
9788
10575
 
9789
- <div class="doc doc-contents ">
9790
-
10576
+ <div class="doc doc-contents ">
10577
+
9791
10578
  <p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
9792
- </div>
10579
+ </div>
9793
10580
 
9794
10581
  </div>
9795
10582
 
@@ -9799,8 +10586,7 @@ the display text and the weight defines its position in the navigation sidebar.<
9799
10586
 
9800
10587
  </div>
9801
10588
 
9802
- </div>
9803
-
10589
+ </div>
9804
10590
 
9805
10591
  </div>
9806
10592
 
@@ -9809,22 +10595,22 @@ the display text and the weight defines its position in the navigation sidebar.<
9809
10595
 
9810
10596
 
9811
10597
  <h2 id="nautobot.apps.ui.NavItem" class="doc doc-heading">
9812
- <code>nautobot.apps.ui.NavItem</code>
10598
+ <code>nautobot.apps.ui.NavItem</code>
9813
10599
 
9814
10600
 
9815
10601
  <a href="#nautobot.apps.ui.NavItem" class="headerlink" title="Permanent link">&para;</a></h2>
9816
10602
 
9817
10603
 
9818
- <div class="doc doc-contents ">
9819
- <p class="doc doc-class-bases">
9820
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10604
+ <div class="doc doc-contents ">
10605
+ <p class="doc doc-class-bases">
10606
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10607
+
9821
10608
 
9822
-
9823
10609
  <p>This class represents a navigation menu item for the new ui. This constitutes link and its text.</p>
9824
10610
  <p>Links are specified as Django reverse URL strings.</p>
9825
10611
 
9826
10612
 
9827
-
10613
+
9828
10614
 
9829
10615
  <div class="doc doc-children">
9830
10616
 
@@ -9839,8 +10625,8 @@ the display text and the weight defines its position in the navigation sidebar.<
9839
10625
 
9840
10626
 
9841
10627
  <h3 id="nautobot.apps.ui.NavItem.fixed_fields" class="doc doc-heading">
9842
- <code class="highlight language-python"><span class="n">fixed_fields</span></code>
9843
-
10628
+ <code class="highlight language-python"><span class="n">fixed_fields</span></code>
10629
+
9844
10630
  <span class="doc doc-labels">
9845
10631
  <small class="doc doc-label doc-label-property"><code>property</code></small>
9846
10632
  </span>
@@ -9848,10 +10634,10 @@ the display text and the weight defines its position in the navigation sidebar.<
9848
10634
  <a href="#nautobot.apps.ui.NavItem.fixed_fields" class="headerlink" title="Permanent link">&para;</a></h3>
9849
10635
 
9850
10636
 
9851
- <div class="doc doc-contents ">
9852
-
10637
+ <div class="doc doc-contents ">
10638
+
9853
10639
  <p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
9854
- </div>
10640
+ </div>
9855
10641
 
9856
10642
  </div>
9857
10643
 
@@ -9860,8 +10646,8 @@ the display text and the weight defines its position in the navigation sidebar.<
9860
10646
 
9861
10647
 
9862
10648
  <h3 id="nautobot.apps.ui.NavItem.initial_dict" class="doc doc-heading">
9863
- <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
9864
-
10649
+ <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10650
+
9865
10651
  <span class="doc doc-labels">
9866
10652
  <small class="doc doc-label doc-label-property"><code>property</code></small>
9867
10653
  </span>
@@ -9869,10 +10655,10 @@ the display text and the weight defines its position in the navigation sidebar.<
9869
10655
  <a href="#nautobot.apps.ui.NavItem.initial_dict" class="headerlink" title="Permanent link">&para;</a></h3>
9870
10656
 
9871
10657
 
9872
- <div class="doc doc-contents ">
9873
-
10658
+ <div class="doc doc-contents ">
10659
+
9874
10660
  <p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
9875
- </div>
10661
+ </div>
9876
10662
 
9877
10663
  </div>
9878
10664
 
@@ -9882,8 +10668,7 @@ the display text and the weight defines its position in the navigation sidebar.<
9882
10668
 
9883
10669
  </div>
9884
10670
 
9885
- </div>
9886
-
10671
+ </div>
9887
10672
 
9888
10673
  </div>
9889
10674
 
@@ -9892,24 +10677,23 @@ the display text and the weight defines its position in the navigation sidebar.<
9892
10677
 
9893
10678
 
9894
10679
  <h2 id="nautobot.apps.ui.NavMenuAddButton" class="doc doc-heading">
9895
- <code>nautobot.apps.ui.NavMenuAddButton</code>
10680
+ <code>nautobot.apps.ui.NavMenuAddButton</code>
9896
10681
 
9897
10682
 
9898
10683
  <a href="#nautobot.apps.ui.NavMenuAddButton" class="headerlink" title="Permanent link">&para;</a></h2>
9899
10684
 
9900
10685
 
9901
- <div class="doc doc-contents ">
9902
- <p class="doc doc-class-bases">
9903
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuButton" href="#nautobot.apps.ui.NavMenuButton">NavMenuButton</a></code></p>
10686
+ <div class="doc doc-contents ">
10687
+ <p class="doc doc-class-bases">
10688
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuButton" href="#nautobot.apps.ui.NavMenuButton">NavMenuButton</a></code></p>
10689
+
9904
10690
 
9905
-
9906
10691
  <p>Add button subclass.</p>
9907
10692
 
9908
10693
 
9909
-
9910
10694
 
9911
- <div class="doc doc-children">
9912
10695
 
10696
+ <div class="doc doc-children">
9913
10697
 
9914
10698
 
9915
10699
 
@@ -9922,18 +10706,17 @@ the display text and the weight defines its position in the navigation sidebar.<
9922
10706
  <div class="doc doc-object doc-function">
9923
10707
 
9924
10708
 
9925
-
9926
10709
  <h3 id="nautobot.apps.ui.NavMenuAddButton.__init__" class="doc doc-heading">
9927
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span></code>
10710
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span></code>
9928
10711
 
9929
10712
  <a href="#nautobot.apps.ui.NavMenuAddButton.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
9930
10713
 
9931
10714
 
9932
- <div class="doc doc-contents ">
9933
-
10715
+ <div class="doc doc-contents ">
10716
+
9934
10717
  <p>Ensure button properties.</p>
9935
10718
 
9936
- </div>
10719
+ </div>
9937
10720
 
9938
10721
  </div>
9939
10722
 
@@ -9941,8 +10724,7 @@ the display text and the weight defines its position in the navigation sidebar.<
9941
10724
 
9942
10725
  </div>
9943
10726
 
9944
- </div>
9945
-
10727
+ </div>
9946
10728
 
9947
10729
  </div>
9948
10730
 
@@ -9951,21 +10733,21 @@ the display text and the weight defines its position in the navigation sidebar.<
9951
10733
 
9952
10734
 
9953
10735
  <h2 id="nautobot.apps.ui.NavMenuBase" class="doc doc-heading">
9954
- <code>nautobot.apps.ui.NavMenuBase</code>
10736
+ <code>nautobot.apps.ui.NavMenuBase</code>
9955
10737
 
9956
10738
 
9957
10739
  <a href="#nautobot.apps.ui.NavMenuBase" class="headerlink" title="Permanent link">&para;</a></h2>
9958
10740
 
9959
10741
 
9960
- <div class="doc doc-contents ">
9961
- <p class="doc doc-class-bases">
9962
- Bases: <code><span title="abc.ABC">ABC</span></code></p>
10742
+ <div class="doc doc-contents ">
10743
+ <p class="doc doc-class-bases">
10744
+ Bases: <code><span title="abc.ABC">ABC</span></code></p>
10745
+
9963
10746
 
9964
-
9965
10747
  <p>Base class for navigation classes.</p>
9966
10748
 
9967
10749
 
9968
-
10750
+
9969
10751
 
9970
10752
  <div class="doc doc-children">
9971
10753
 
@@ -9980,8 +10762,8 @@ the display text and the weight defines its position in the navigation sidebar.<
9980
10762
 
9981
10763
 
9982
10764
  <h3 id="nautobot.apps.ui.NavMenuBase.fixed_fields" class="doc doc-heading">
9983
- <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
9984
-
10765
+ <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
10766
+
9985
10767
  <span class="doc doc-labels">
9986
10768
  <small class="doc doc-label doc-label-abstractmethod"><code>abstractmethod</code></small>
9987
10769
  <small class="doc doc-label doc-label-property"><code>property</code></small>
@@ -9990,10 +10772,10 @@ the display text and the weight defines its position in the navigation sidebar.<
9990
10772
  <a href="#nautobot.apps.ui.NavMenuBase.fixed_fields" class="headerlink" title="Permanent link">&para;</a></h3>
9991
10773
 
9992
10774
 
9993
- <div class="doc doc-contents ">
9994
-
10775
+ <div class="doc doc-contents ">
10776
+
9995
10777
  <p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
9996
- </div>
10778
+ </div>
9997
10779
 
9998
10780
  </div>
9999
10781
 
@@ -10002,8 +10784,8 @@ the display text and the weight defines its position in the navigation sidebar.<
10002
10784
 
10003
10785
 
10004
10786
  <h3 id="nautobot.apps.ui.NavMenuBase.initial_dict" class="doc doc-heading">
10005
- <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10006
-
10787
+ <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10788
+
10007
10789
  <span class="doc doc-labels">
10008
10790
  <small class="doc doc-label doc-label-abstractmethod"><code>abstractmethod</code></small>
10009
10791
  <small class="doc doc-label doc-label-property"><code>property</code></small>
@@ -10012,10 +10794,10 @@ the display text and the weight defines its position in the navigation sidebar.<
10012
10794
  <a href="#nautobot.apps.ui.NavMenuBase.initial_dict" class="headerlink" title="Permanent link">&para;</a></h3>
10013
10795
 
10014
10796
 
10015
- <div class="doc doc-contents ">
10016
-
10797
+ <div class="doc doc-contents ">
10798
+
10017
10799
  <p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
10018
- </div>
10800
+ </div>
10019
10801
 
10020
10802
  </div>
10021
10803
 
@@ -10025,8 +10807,7 @@ the display text and the weight defines its position in the navigation sidebar.<
10025
10807
 
10026
10808
  </div>
10027
10809
 
10028
- </div>
10029
-
10810
+ </div>
10030
10811
 
10031
10812
  </div>
10032
10813
 
@@ -10035,21 +10816,21 @@ the display text and the weight defines its position in the navigation sidebar.<
10035
10816
 
10036
10817
 
10037
10818
  <h2 id="nautobot.apps.ui.NavMenuButton" class="doc doc-heading">
10038
- <code>nautobot.apps.ui.NavMenuButton</code>
10819
+ <code>nautobot.apps.ui.NavMenuButton</code>
10039
10820
 
10040
10821
 
10041
10822
  <a href="#nautobot.apps.ui.NavMenuButton" class="headerlink" title="Permanent link">&para;</a></h2>
10042
10823
 
10043
10824
 
10044
- <div class="doc doc-contents ">
10045
- <p class="doc doc-class-bases">
10046
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10825
+ <div class="doc doc-contents ">
10826
+ <p class="doc doc-class-bases">
10827
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
10828
+
10047
10829
 
10048
-
10049
10830
  <p>This class represents a button within a NavMenuItem.</p>
10050
10831
 
10051
10832
 
10052
-
10833
+
10053
10834
 
10054
10835
  <div class="doc doc-children">
10055
10836
 
@@ -10064,8 +10845,8 @@ the display text and the weight defines its position in the navigation sidebar.<
10064
10845
 
10065
10846
 
10066
10847
  <h3 id="nautobot.apps.ui.NavMenuButton.fixed_fields" class="doc doc-heading">
10067
- <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
10068
-
10848
+ <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
10849
+
10069
10850
  <span class="doc doc-labels">
10070
10851
  <small class="doc doc-label doc-label-property"><code>property</code></small>
10071
10852
  </span>
@@ -10073,10 +10854,10 @@ the display text and the weight defines its position in the navigation sidebar.<
10073
10854
  <a href="#nautobot.apps.ui.NavMenuButton.fixed_fields" class="headerlink" title="Permanent link">&para;</a></h3>
10074
10855
 
10075
10856
 
10076
- <div class="doc doc-contents ">
10077
-
10857
+ <div class="doc doc-contents ">
10858
+
10078
10859
  <p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
10079
- </div>
10860
+ </div>
10080
10861
 
10081
10862
  </div>
10082
10863
 
@@ -10085,8 +10866,8 @@ the display text and the weight defines its position in the navigation sidebar.<
10085
10866
 
10086
10867
 
10087
10868
  <h3 id="nautobot.apps.ui.NavMenuButton.initial_dict" class="doc doc-heading">
10088
- <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10089
-
10869
+ <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10870
+
10090
10871
  <span class="doc doc-labels">
10091
10872
  <small class="doc doc-label doc-label-property"><code>property</code></small>
10092
10873
  </span>
@@ -10094,131 +10875,128 @@ the display text and the weight defines its position in the navigation sidebar.<
10094
10875
  <a href="#nautobot.apps.ui.NavMenuButton.initial_dict" class="headerlink" title="Permanent link">&para;</a></h3>
10095
10876
 
10096
10877
 
10097
- <div class="doc doc-contents ">
10098
-
10878
+ <div class="doc doc-contents ">
10879
+
10099
10880
  <p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
10100
- </div>
10881
+ </div>
10101
10882
 
10102
10883
  </div>
10103
10884
 
10104
10885
 
10105
10886
 
10106
-
10107
10887
  <div class="doc doc-object doc-function">
10108
10888
 
10109
10889
 
10110
-
10111
10890
  <h3 id="nautobot.apps.ui.NavMenuButton.__init__" class="doc doc-heading">
10112
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">link</span><span class="p">,</span> <span class="n">title</span><span class="p">,</span> <span class="n">icon_class</span><span class="p">,</span> <span class="n">button_class</span><span class="o">=</span><span class="n">ButtonActionColorChoices</span><span class="o">.</span><span class="n">DEFAULT</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
10891
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">link</span><span class="p">,</span> <span class="n">title</span><span class="p">,</span> <span class="n">icon_class</span><span class="p">,</span> <span class="n">button_class</span><span class="o">=</span><span class="n">ButtonActionColorChoices</span><span class="o">.</span><span class="n">DEFAULT</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
10113
10892
 
10114
10893
  <a href="#nautobot.apps.ui.NavMenuButton.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
10115
10894
 
10116
10895
 
10117
- <div class="doc doc-contents ">
10118
-
10119
- <p>Ensure button properties.</p>
10896
+ <div class="doc doc-contents ">
10120
10897
 
10898
+ <p>Ensure button properties.</p>
10121
10899
 
10122
10900
 
10123
- <p><strong>Parameters:</strong></p>
10124
- <table>
10125
- <thead>
10126
- <tr>
10127
- <th>Name</th>
10128
- <th>Type</th>
10129
- <th>Description</th>
10130
- <th>Default</th>
10131
- </tr>
10132
- </thead>
10133
- <tbody>
10134
- <tr>
10135
- <td><code>link</code></td>
10136
- <td>
10137
- <code>str</code>
10138
- </td>
10139
- <td>
10140
- <div class="doc-md-description">
10141
- <p>The link to be used for this button.</p>
10142
- </div>
10143
- </td>
10144
- <td>
10145
- <em>required</em>
10146
- </td>
10147
- </tr>
10148
- <tr>
10149
- <td><code>title</code></td>
10150
- <td>
10151
- <code>str</code>
10152
- </td>
10153
- <td>
10154
- <div class="doc-md-description">
10155
- <p>The title of the button.</p>
10156
- </div>
10157
- </td>
10158
- <td>
10159
- <em>required</em>
10160
- </td>
10161
- </tr>
10162
- <tr>
10163
- <td><code>icon_class</code></td>
10164
- <td>
10165
- <code>str</code>
10166
- </td>
10167
- <td>
10168
- <div class="doc-md-description">
10169
- <p>The icon class to be used as the icon for the start of the button.</p>
10170
- </div>
10171
- </td>
10172
- <td>
10173
- <em>required</em>
10174
- </td>
10175
- </tr>
10176
- <tr>
10177
- <td><code>button_class</code></td>
10178
- <td>
10179
- <code>str</code>
10180
- </td>
10181
- <td>
10182
- <div class="doc-md-description">
10183
- <p>The button class defines to be used to define the style of the button.</p>
10184
- </div>
10185
- </td>
10186
- <td>
10187
- <code><span title="nautobot.core.choices.ButtonActionColorChoices.DEFAULT">DEFAULT</span></code>
10188
- </td>
10189
- </tr>
10901
+ <p><span class="doc-section-title">Parameters:</span></p>
10902
+ <table>
10903
+ <thead>
10190
10904
  <tr>
10191
- <td><code>permissions</code></td>
10192
- <td>
10193
- <code>list</code>
10194
- </td>
10195
- <td>
10196
- <div class="doc-md-description">
10197
- <p>The permissions required to view this button.</p>
10198
- </div>
10199
- </td>
10200
- <td>
10201
- <code>None</code>
10202
- </td>
10203
- </tr>
10204
- <tr>
10205
- <td><code>weight</code></td>
10206
- <td>
10207
- <code>int</code>
10208
- </td>
10209
- <td>
10210
- <div class="doc-md-description">
10211
- <p>The weight of this button.</p>
10212
- </div>
10213
- </td>
10214
- <td>
10215
- <code>1000</code>
10216
- </td>
10905
+ <th>Name</th>
10906
+ <th>Type</th>
10907
+ <th>Description</th>
10908
+ <th>Default</th>
10217
10909
  </tr>
10218
- </tbody>
10219
- </table>
10910
+ </thead>
10911
+ <tbody>
10912
+ <tr class="doc-section-item">
10913
+ <td><code>link</code></td>
10914
+ <td>
10915
+ <code>str</code>
10916
+ </td>
10917
+ <td>
10918
+ <div class="doc-md-description">
10919
+ <p>The link to be used for this button.</p>
10920
+ </div>
10921
+ </td>
10922
+ <td>
10923
+ <em>required</em>
10924
+ </td>
10925
+ </tr>
10926
+ <tr class="doc-section-item">
10927
+ <td><code>title</code></td>
10928
+ <td>
10929
+ <code>str</code>
10930
+ </td>
10931
+ <td>
10932
+ <div class="doc-md-description">
10933
+ <p>The title of the button.</p>
10934
+ </div>
10935
+ </td>
10936
+ <td>
10937
+ <em>required</em>
10938
+ </td>
10939
+ </tr>
10940
+ <tr class="doc-section-item">
10941
+ <td><code>icon_class</code></td>
10942
+ <td>
10943
+ <code>str</code>
10944
+ </td>
10945
+ <td>
10946
+ <div class="doc-md-description">
10947
+ <p>The icon class to be used as the icon for the start of the button.</p>
10948
+ </div>
10949
+ </td>
10950
+ <td>
10951
+ <em>required</em>
10952
+ </td>
10953
+ </tr>
10954
+ <tr class="doc-section-item">
10955
+ <td><code>button_class</code></td>
10956
+ <td>
10957
+ <code>str</code>
10958
+ </td>
10959
+ <td>
10960
+ <div class="doc-md-description">
10961
+ <p>The button class defines to be used to define the style of the button.</p>
10962
+ </div>
10963
+ </td>
10964
+ <td>
10965
+ <code><span title="nautobot.core.choices.ButtonActionColorChoices.DEFAULT">DEFAULT</span></code>
10966
+ </td>
10967
+ </tr>
10968
+ <tr class="doc-section-item">
10969
+ <td><code>permissions</code></td>
10970
+ <td>
10971
+ <code>list</code>
10972
+ </td>
10973
+ <td>
10974
+ <div class="doc-md-description">
10975
+ <p>The permissions required to view this button.</p>
10976
+ </div>
10977
+ </td>
10978
+ <td>
10979
+ <code>None</code>
10980
+ </td>
10981
+ </tr>
10982
+ <tr class="doc-section-item">
10983
+ <td><code>weight</code></td>
10984
+ <td>
10985
+ <code>int</code>
10986
+ </td>
10987
+ <td>
10988
+ <div class="doc-md-description">
10989
+ <p>The weight of this button.</p>
10990
+ </div>
10991
+ </td>
10992
+ <td>
10993
+ <code>1000</code>
10994
+ </td>
10995
+ </tr>
10996
+ </tbody>
10997
+ </table>
10220
10998
 
10221
- </div>
10999
+ </div>
10222
11000
 
10223
11001
  </div>
10224
11002
 
@@ -10226,8 +11004,7 @@ the display text and the weight defines its position in the navigation sidebar.<
10226
11004
 
10227
11005
  </div>
10228
11006
 
10229
- </div>
10230
-
11007
+ </div>
10231
11008
 
10232
11009
  </div>
10233
11010
 
@@ -10236,23 +11013,23 @@ the display text and the weight defines its position in the navigation sidebar.<
10236
11013
 
10237
11014
 
10238
11015
  <h2 id="nautobot.apps.ui.NavMenuGroup" class="doc doc-heading">
10239
- <code>nautobot.apps.ui.NavMenuGroup</code>
11016
+ <code>nautobot.apps.ui.NavMenuGroup</code>
10240
11017
 
10241
11018
 
10242
11019
  <a href="#nautobot.apps.ui.NavMenuGroup" class="headerlink" title="Permanent link">&para;</a></h2>
10243
11020
 
10244
11021
 
10245
- <div class="doc doc-contents ">
10246
- <p class="doc doc-class-bases">
10247
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
11022
+ <div class="doc doc-contents ">
11023
+ <p class="doc doc-class-bases">
11024
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
11025
+
10248
11026
 
10249
-
10250
11027
  <p>Ths class represents a navigation menu group. This is built up from a name and a weight value. The name is
10251
11028
  the display text and the weight defines its position in the navbar.</p>
10252
11029
  <p>Items are each specified as a list of NavMenuItem instances.</p>
10253
11030
 
10254
11031
 
10255
-
11032
+
10256
11033
 
10257
11034
  <div class="doc doc-children">
10258
11035
 
@@ -10267,8 +11044,8 @@ the display text and the weight defines its position in the navbar.</p>
10267
11044
 
10268
11045
 
10269
11046
  <h3 id="nautobot.apps.ui.NavMenuGroup.fixed_fields" class="doc doc-heading">
10270
- <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
10271
-
11047
+ <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
11048
+
10272
11049
  <span class="doc doc-labels">
10273
11050
  <small class="doc doc-label doc-label-property"><code>property</code></small>
10274
11051
  </span>
@@ -10276,10 +11053,10 @@ the display text and the weight defines its position in the navbar.</p>
10276
11053
  <a href="#nautobot.apps.ui.NavMenuGroup.fixed_fields" class="headerlink" title="Permanent link">&para;</a></h3>
10277
11054
 
10278
11055
 
10279
- <div class="doc doc-contents ">
10280
-
11056
+ <div class="doc doc-contents ">
11057
+
10281
11058
  <p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
10282
- </div>
11059
+ </div>
10283
11060
 
10284
11061
  </div>
10285
11062
 
@@ -10288,8 +11065,8 @@ the display text and the weight defines its position in the navbar.</p>
10288
11065
 
10289
11066
 
10290
11067
  <h3 id="nautobot.apps.ui.NavMenuGroup.initial_dict" class="doc doc-heading">
10291
- <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10292
-
11068
+ <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
11069
+
10293
11070
  <span class="doc doc-labels">
10294
11071
  <small class="doc doc-label doc-label-property"><code>property</code></small>
10295
11072
  </span>
@@ -10297,89 +11074,86 @@ the display text and the weight defines its position in the navbar.</p>
10297
11074
  <a href="#nautobot.apps.ui.NavMenuGroup.initial_dict" class="headerlink" title="Permanent link">&para;</a></h3>
10298
11075
 
10299
11076
 
10300
- <div class="doc doc-contents ">
10301
-
11077
+ <div class="doc doc-contents ">
11078
+
10302
11079
  <p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
10303
- </div>
11080
+ </div>
10304
11081
 
10305
11082
  </div>
10306
11083
 
10307
11084
 
10308
11085
 
10309
-
10310
11086
  <div class="doc doc-object doc-function">
10311
11087
 
10312
11088
 
10313
-
10314
11089
  <h3 id="nautobot.apps.ui.NavMenuGroup.__init__" class="doc doc-heading">
10315
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
11090
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">items</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
10316
11091
 
10317
11092
  <a href="#nautobot.apps.ui.NavMenuGroup.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
10318
11093
 
10319
11094
 
10320
- <div class="doc doc-contents ">
10321
-
10322
- <p>Ensure group properties.</p>
11095
+ <div class="doc doc-contents ">
10323
11096
 
11097
+ <p>Ensure group properties.</p>
10324
11098
 
10325
11099
 
10326
- <p><strong>Parameters:</strong></p>
10327
- <table>
10328
- <thead>
10329
- <tr>
10330
- <th>Name</th>
10331
- <th>Type</th>
10332
- <th>Description</th>
10333
- <th>Default</th>
10334
- </tr>
10335
- </thead>
10336
- <tbody>
11100
+ <p><span class="doc-section-title">Parameters:</span></p>
11101
+ <table>
11102
+ <thead>
10337
11103
  <tr>
10338
- <td><code>name</code></td>
10339
- <td>
10340
- <code>str</code>
10341
- </td>
10342
- <td>
10343
- <div class="doc-md-description">
10344
- <p>The name of the group.</p>
10345
- </div>
10346
- </td>
10347
- <td>
10348
- <em>required</em>
10349
- </td>
10350
- </tr>
10351
- <tr>
10352
- <td><code>items</code></td>
10353
- <td>
10354
- <code>list</code>
10355
- </td>
10356
- <td>
10357
- <div class="doc-md-description">
10358
- <p>List of items to be rendered in this group.</p>
10359
- </div>
10360
- </td>
10361
- <td>
10362
- <code>None</code>
10363
- </td>
11104
+ <th>Name</th>
11105
+ <th>Type</th>
11106
+ <th>Description</th>
11107
+ <th>Default</th>
10364
11108
  </tr>
10365
- <tr>
10366
- <td><code>weight</code></td>
10367
- <td>
10368
- <code>int</code>
10369
- </td>
10370
- <td>
10371
- <div class="doc-md-description">
10372
- <p>The weight of this group.</p>
10373
- </div>
10374
- </td>
10375
- <td>
10376
- <code>1000</code>
10377
- </td>
10378
- </tr>
10379
- </tbody>
10380
- </table>
11109
+ </thead>
11110
+ <tbody>
11111
+ <tr class="doc-section-item">
11112
+ <td><code>name</code></td>
11113
+ <td>
11114
+ <code>str</code>
11115
+ </td>
11116
+ <td>
11117
+ <div class="doc-md-description">
11118
+ <p>The name of the group.</p>
11119
+ </div>
11120
+ </td>
11121
+ <td>
11122
+ <em>required</em>
11123
+ </td>
11124
+ </tr>
11125
+ <tr class="doc-section-item">
11126
+ <td><code>items</code></td>
11127
+ <td>
11128
+ <code>list</code>
11129
+ </td>
11130
+ <td>
11131
+ <div class="doc-md-description">
11132
+ <p>List of items to be rendered in this group.</p>
11133
+ </div>
11134
+ </td>
11135
+ <td>
11136
+ <code>None</code>
11137
+ </td>
11138
+ </tr>
11139
+ <tr class="doc-section-item">
11140
+ <td><code>weight</code></td>
11141
+ <td>
11142
+ <code>int</code>
11143
+ </td>
11144
+ <td>
11145
+ <div class="doc-md-description">
11146
+ <p>The weight of this group.</p>
11147
+ </div>
11148
+ </td>
11149
+ <td>
11150
+ <code>1000</code>
11151
+ </td>
11152
+ </tr>
11153
+ </tbody>
11154
+ </table>
10381
11155
 
10382
- </div>
11156
+ </div>
10383
11157
 
10384
11158
  </div>
10385
11159
 
@@ -10387,8 +11161,7 @@ the display text and the weight defines its position in the navbar.</p>
10387
11161
 
10388
11162
  </div>
10389
11163
 
10390
- </div>
10391
-
11164
+ </div>
10392
11165
 
10393
11166
  </div>
10394
11167
 
@@ -10397,24 +11170,23 @@ the display text and the weight defines its position in the navbar.</p>
10397
11170
 
10398
11171
 
10399
11172
  <h2 id="nautobot.apps.ui.NavMenuImportButton" class="doc doc-heading">
10400
- <code>nautobot.apps.ui.NavMenuImportButton</code>
11173
+ <code>nautobot.apps.ui.NavMenuImportButton</code>
10401
11174
 
10402
11175
 
10403
11176
  <a href="#nautobot.apps.ui.NavMenuImportButton" class="headerlink" title="Permanent link">&para;</a></h2>
10404
11177
 
10405
11178
 
10406
- <div class="doc doc-contents ">
10407
- <p class="doc doc-class-bases">
10408
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuButton" href="#nautobot.apps.ui.NavMenuButton">NavMenuButton</a></code></p>
11179
+ <div class="doc doc-contents ">
11180
+ <p class="doc doc-class-bases">
11181
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuButton" href="#nautobot.apps.ui.NavMenuButton">NavMenuButton</a></code></p>
11182
+
10409
11183
 
10410
-
10411
11184
  <p>Import button subclass.</p>
10412
11185
 
10413
11186
 
10414
-
10415
11187
 
10416
- <div class="doc doc-children">
10417
11188
 
11189
+ <div class="doc doc-children">
10418
11190
 
10419
11191
 
10420
11192
 
@@ -10427,18 +11199,17 @@ the display text and the weight defines its position in the navbar.</p>
10427
11199
  <div class="doc doc-object doc-function">
10428
11200
 
10429
11201
 
10430
-
10431
11202
  <h3 id="nautobot.apps.ui.NavMenuImportButton.__init__" class="doc doc-heading">
10432
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span></code>
11203
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span></code>
10433
11204
 
10434
11205
  <a href="#nautobot.apps.ui.NavMenuImportButton.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
10435
11206
 
10436
11207
 
10437
- <div class="doc doc-contents ">
10438
-
11208
+ <div class="doc doc-contents ">
11209
+
10439
11210
  <p>Ensure button properties.</p>
10440
11211
 
10441
- </div>
11212
+ </div>
10442
11213
 
10443
11214
  </div>
10444
11215
 
@@ -10446,8 +11217,7 @@ the display text and the weight defines its position in the navbar.</p>
10446
11217
 
10447
11218
  </div>
10448
11219
 
10449
- </div>
10450
-
11220
+ </div>
10451
11221
 
10452
11222
  </div>
10453
11223
 
@@ -10456,24 +11226,24 @@ the display text and the weight defines its position in the navbar.</p>
10456
11226
 
10457
11227
 
10458
11228
  <h2 id="nautobot.apps.ui.NavMenuItem" class="doc doc-heading">
10459
- <code>nautobot.apps.ui.NavMenuItem</code>
11229
+ <code>nautobot.apps.ui.NavMenuItem</code>
10460
11230
 
10461
11231
 
10462
11232
  <a href="#nautobot.apps.ui.NavMenuItem" class="headerlink" title="Permanent link">&para;</a></h2>
10463
11233
 
10464
11234
 
10465
- <div class="doc doc-contents ">
10466
- <p class="doc doc-class-bases">
10467
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
11235
+ <div class="doc doc-contents ">
11236
+ <p class="doc doc-class-bases">
11237
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
11238
+
10468
11239
 
10469
-
10470
11240
  <p>This class represents a navigation menu item. This constitutes primary link and its text, but also allows for
10471
11241
  specifying additional link buttons that appear to the right of the item in the nav menu.</p>
10472
11242
  <p>Links are specified as Django reverse URL strings.
10473
11243
  Buttons are each specified as a list of NavMenuButton instances.</p>
10474
11244
 
10475
11245
 
10476
-
11246
+
10477
11247
 
10478
11248
  <div class="doc doc-children">
10479
11249
 
@@ -10488,8 +11258,8 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
10488
11258
 
10489
11259
 
10490
11260
  <h3 id="nautobot.apps.ui.NavMenuItem.fixed_fields" class="doc doc-heading">
10491
- <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
10492
-
11261
+ <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
11262
+
10493
11263
  <span class="doc doc-labels">
10494
11264
  <small class="doc doc-label doc-label-property"><code>property</code></small>
10495
11265
  </span>
@@ -10497,10 +11267,10 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
10497
11267
  <a href="#nautobot.apps.ui.NavMenuItem.fixed_fields" class="headerlink" title="Permanent link">&para;</a></h3>
10498
11268
 
10499
11269
 
10500
- <div class="doc doc-contents ">
10501
-
11270
+ <div class="doc doc-contents ">
11271
+
10502
11272
  <p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
10503
- </div>
11273
+ </div>
10504
11274
 
10505
11275
  </div>
10506
11276
 
@@ -10509,8 +11279,8 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
10509
11279
 
10510
11280
 
10511
11281
  <h3 id="nautobot.apps.ui.NavMenuItem.initial_dict" class="doc doc-heading">
10512
- <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10513
-
11282
+ <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
11283
+
10514
11284
  <span class="doc doc-labels">
10515
11285
  <small class="doc doc-label doc-label-property"><code>property</code></small>
10516
11286
  </span>
@@ -10518,145 +11288,142 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
10518
11288
  <a href="#nautobot.apps.ui.NavMenuItem.initial_dict" class="headerlink" title="Permanent link">&para;</a></h3>
10519
11289
 
10520
11290
 
10521
- <div class="doc doc-contents ">
10522
-
11291
+ <div class="doc doc-contents ">
11292
+
10523
11293
  <p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
10524
- </div>
11294
+ </div>
10525
11295
 
10526
11296
  </div>
10527
11297
 
10528
11298
 
10529
11299
 
10530
-
10531
11300
  <div class="doc doc-object doc-function">
10532
11301
 
10533
11302
 
10534
-
10535
11303
  <h3 id="nautobot.apps.ui.NavMenuItem.__init__" class="doc doc-heading">
10536
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">link</span><span class="p">,</span> <span class="n">name</span><span class="p">,</span> <span class="n">args</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">kwargs</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">buttons</span><span class="o">=</span><span class="p">(),</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
11304
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">link</span><span class="p">,</span> <span class="n">name</span><span class="p">,</span> <span class="n">args</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">kwargs</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">buttons</span><span class="o">=</span><span class="p">(),</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
10537
11305
 
10538
11306
  <a href="#nautobot.apps.ui.NavMenuItem.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
10539
11307
 
10540
11308
 
10541
- <div class="doc doc-contents ">
10542
-
10543
- <p>Ensure item properties.</p>
11309
+ <div class="doc doc-contents ">
10544
11310
 
11311
+ <p>Ensure item properties.</p>
10545
11312
 
10546
11313
 
10547
- <p><strong>Parameters:</strong></p>
10548
- <table>
10549
- <thead>
10550
- <tr>
10551
- <th>Name</th>
10552
- <th>Type</th>
10553
- <th>Description</th>
10554
- <th>Default</th>
10555
- </tr>
10556
- </thead>
10557
- <tbody>
10558
- <tr>
10559
- <td><code>link</code></td>
10560
- <td>
10561
- <code>str</code>
10562
- </td>
10563
- <td>
10564
- <div class="doc-md-description">
10565
- <p>The link to be used for this item.</p>
10566
- </div>
10567
- </td>
10568
- <td>
10569
- <em>required</em>
10570
- </td>
10571
- </tr>
10572
- <tr>
10573
- <td><code>name</code></td>
10574
- <td>
10575
- <code>str</code>
10576
- </td>
10577
- <td>
10578
- <div class="doc-md-description">
10579
- <p>The name of the item.</p>
10580
- </div>
10581
- </td>
10582
- <td>
10583
- <em>required</em>
10584
- </td>
10585
- </tr>
10586
- <tr>
10587
- <td><code>args</code></td>
10588
- <td>
10589
- <code>list</code>
10590
- </td>
10591
- <td>
10592
- <div class="doc-md-description">
10593
- <p>Arguments that are being passed to the url with reverse() method</p>
10594
- </div>
10595
- </td>
10596
- <td>
10597
- <code>None</code>
10598
- </td>
10599
- </tr>
10600
- <tr>
10601
- <td><code>kwargs</code></td>
10602
- <td>
10603
- <code>dict</code>
10604
- </td>
10605
- <td>
10606
- <div class="doc-md-description">
10607
- <p>Keyword arguments are are being passed to the url with reverse() method</p>
10608
- </div>
10609
- </td>
10610
- <td>
10611
- <code>None</code>
10612
- </td>
10613
- </tr>
10614
- <tr>
10615
- <td><code>permissions</code></td>
10616
- <td>
10617
- <code>list</code>
10618
- </td>
10619
- <td>
10620
- <div class="doc-md-description">
10621
- <p>The permissions required to view this item.</p>
10622
- </div>
10623
- </td>
10624
- <td>
10625
- <code>None</code>
10626
- </td>
10627
- </tr>
11314
+ <p><span class="doc-section-title">Parameters:</span></p>
11315
+ <table>
11316
+ <thead>
10628
11317
  <tr>
10629
- <td><code>buttons</code></td>
10630
- <td>
10631
- <code>list</code>
10632
- </td>
10633
- <td>
10634
- <div class="doc-md-description">
10635
- <p>List of buttons to be rendered in this item.</p>
10636
- </div>
10637
- </td>
10638
- <td>
10639
- <code>()</code>
10640
- </td>
10641
- </tr>
10642
- <tr>
10643
- <td><code>weight</code></td>
10644
- <td>
10645
- <code>int</code>
10646
- </td>
10647
- <td>
10648
- <div class="doc-md-description">
10649
- <p>The weight of this item.</p>
10650
- </div>
10651
- </td>
10652
- <td>
10653
- <code>1000</code>
10654
- </td>
11318
+ <th>Name</th>
11319
+ <th>Type</th>
11320
+ <th>Description</th>
11321
+ <th>Default</th>
10655
11322
  </tr>
10656
- </tbody>
10657
- </table>
11323
+ </thead>
11324
+ <tbody>
11325
+ <tr class="doc-section-item">
11326
+ <td><code>link</code></td>
11327
+ <td>
11328
+ <code>str</code>
11329
+ </td>
11330
+ <td>
11331
+ <div class="doc-md-description">
11332
+ <p>The link to be used for this item.</p>
11333
+ </div>
11334
+ </td>
11335
+ <td>
11336
+ <em>required</em>
11337
+ </td>
11338
+ </tr>
11339
+ <tr class="doc-section-item">
11340
+ <td><code>name</code></td>
11341
+ <td>
11342
+ <code>str</code>
11343
+ </td>
11344
+ <td>
11345
+ <div class="doc-md-description">
11346
+ <p>The name of the item.</p>
11347
+ </div>
11348
+ </td>
11349
+ <td>
11350
+ <em>required</em>
11351
+ </td>
11352
+ </tr>
11353
+ <tr class="doc-section-item">
11354
+ <td><code>args</code></td>
11355
+ <td>
11356
+ <code>list</code>
11357
+ </td>
11358
+ <td>
11359
+ <div class="doc-md-description">
11360
+ <p>Arguments that are being passed to the url with reverse() method</p>
11361
+ </div>
11362
+ </td>
11363
+ <td>
11364
+ <code>None</code>
11365
+ </td>
11366
+ </tr>
11367
+ <tr class="doc-section-item">
11368
+ <td><code>kwargs</code></td>
11369
+ <td>
11370
+ <code>dict</code>
11371
+ </td>
11372
+ <td>
11373
+ <div class="doc-md-description">
11374
+ <p>Keyword arguments are are being passed to the url with reverse() method</p>
11375
+ </div>
11376
+ </td>
11377
+ <td>
11378
+ <code>None</code>
11379
+ </td>
11380
+ </tr>
11381
+ <tr class="doc-section-item">
11382
+ <td><code>permissions</code></td>
11383
+ <td>
11384
+ <code>list</code>
11385
+ </td>
11386
+ <td>
11387
+ <div class="doc-md-description">
11388
+ <p>The permissions required to view this item.</p>
11389
+ </div>
11390
+ </td>
11391
+ <td>
11392
+ <code>None</code>
11393
+ </td>
11394
+ </tr>
11395
+ <tr class="doc-section-item">
11396
+ <td><code>buttons</code></td>
11397
+ <td>
11398
+ <code>list</code>
11399
+ </td>
11400
+ <td>
11401
+ <div class="doc-md-description">
11402
+ <p>List of buttons to be rendered in this item.</p>
11403
+ </div>
11404
+ </td>
11405
+ <td>
11406
+ <code>()</code>
11407
+ </td>
11408
+ </tr>
11409
+ <tr class="doc-section-item">
11410
+ <td><code>weight</code></td>
11411
+ <td>
11412
+ <code>int</code>
11413
+ </td>
11414
+ <td>
11415
+ <div class="doc-md-description">
11416
+ <p>The weight of this item.</p>
11417
+ </div>
11418
+ </td>
11419
+ <td>
11420
+ <code>1000</code>
11421
+ </td>
11422
+ </tr>
11423
+ </tbody>
11424
+ </table>
10658
11425
 
10659
- </div>
11426
+ </div>
10660
11427
 
10661
11428
  </div>
10662
11429
 
@@ -10664,8 +11431,7 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
10664
11431
 
10665
11432
  </div>
10666
11433
 
10667
- </div>
10668
-
11434
+ </div>
10669
11435
 
10670
11436
  </div>
10671
11437
 
@@ -10674,23 +11440,23 @@ Buttons are each specified as a list of NavMenuButton instances.</p>
10674
11440
 
10675
11441
 
10676
11442
  <h2 id="nautobot.apps.ui.NavMenuTab" class="doc doc-heading">
10677
- <code>nautobot.apps.ui.NavMenuTab</code>
11443
+ <code>nautobot.apps.ui.NavMenuTab</code>
10678
11444
 
10679
11445
 
10680
11446
  <a href="#nautobot.apps.ui.NavMenuTab" class="headerlink" title="Permanent link">&para;</a></h2>
10681
11447
 
10682
11448
 
10683
- <div class="doc doc-contents ">
10684
- <p class="doc doc-class-bases">
10685
- Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
11449
+ <div class="doc doc-contents ">
11450
+ <p class="doc doc-class-bases">
11451
+ Bases: <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.NavMenuBase" href="#nautobot.apps.ui.NavMenuBase">NavMenuBase</a></code>, <code><a class="autorefs autorefs-internal" title="nautobot.core.apps.PermissionsMixin" href="#nautobot.apps.ui.PermissionsMixin">PermissionsMixin</a></code></p>
11452
+
10686
11453
 
10687
-
10688
11454
  <p>Ths class represents a navigation menu tab. This is built up from a name and a weight value. The name is
10689
11455
  the display text and the weight defines its position in the navbar.</p>
10690
11456
  <p>Groups are each specified as a list of NavMenuGroup instances.</p>
10691
11457
 
10692
11458
 
10693
-
11459
+
10694
11460
 
10695
11461
  <div class="doc doc-children">
10696
11462
 
@@ -10705,8 +11471,8 @@ the display text and the weight defines its position in the navbar.</p>
10705
11471
 
10706
11472
 
10707
11473
  <h3 id="nautobot.apps.ui.NavMenuTab.fixed_fields" class="doc doc-heading">
10708
- <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
10709
-
11474
+ <code class="highlight language-python"><span class="n">fixed_fields</span><span class="p">:</span> <span class="nb">tuple</span></code>
11475
+
10710
11476
  <span class="doc doc-labels">
10711
11477
  <small class="doc doc-label doc-label-property"><code>property</code></small>
10712
11478
  </span>
@@ -10714,10 +11480,10 @@ the display text and the weight defines its position in the navbar.</p>
10714
11480
  <a href="#nautobot.apps.ui.NavMenuTab.fixed_fields" class="headerlink" title="Permanent link">&para;</a></h3>
10715
11481
 
10716
11482
 
10717
- <div class="doc doc-contents ">
10718
-
11483
+ <div class="doc doc-contents ">
11484
+
10719
11485
  <p>Tuple of (name, attribute) entries describing fields that may not be altered after declaration.</p>
10720
- </div>
11486
+ </div>
10721
11487
 
10722
11488
  </div>
10723
11489
 
@@ -10726,8 +11492,8 @@ the display text and the weight defines its position in the navbar.</p>
10726
11492
 
10727
11493
 
10728
11494
  <h3 id="nautobot.apps.ui.NavMenuTab.initial_dict" class="doc doc-heading">
10729
- <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
10730
-
11495
+ <code class="highlight language-python"><span class="n">initial_dict</span><span class="p">:</span> <span class="nb">dict</span></code>
11496
+
10731
11497
  <span class="doc doc-labels">
10732
11498
  <small class="doc doc-label doc-label-property"><code>property</code></small>
10733
11499
  </span>
@@ -10735,103 +11501,100 @@ the display text and the weight defines its position in the navbar.</p>
10735
11501
  <a href="#nautobot.apps.ui.NavMenuTab.initial_dict" class="headerlink" title="Permanent link">&para;</a></h3>
10736
11502
 
10737
11503
 
10738
- <div class="doc doc-contents ">
10739
-
11504
+ <div class="doc doc-contents ">
11505
+
10740
11506
  <p>Attributes to be stored when adding this item to the nav menu data for the first time.</p>
10741
- </div>
11507
+ </div>
10742
11508
 
10743
11509
  </div>
10744
11510
 
10745
11511
 
10746
11512
 
10747
-
10748
11513
  <div class="doc doc-object doc-function">
10749
11514
 
10750
11515
 
10751
-
10752
11516
  <h3 id="nautobot.apps.ui.NavMenuTab.__init__" class="doc doc-heading">
10753
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">groups</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
11517
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">name</span><span class="p">,</span> <span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">groups</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">weight</span><span class="o">=</span><span class="mi">1000</span><span class="p">)</span></code>
10754
11518
 
10755
11519
  <a href="#nautobot.apps.ui.NavMenuTab.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
10756
11520
 
10757
11521
 
10758
- <div class="doc doc-contents ">
10759
-
10760
- <p>Ensure tab properties.</p>
11522
+ <div class="doc doc-contents ">
10761
11523
 
11524
+ <p>Ensure tab properties.</p>
10762
11525
 
10763
11526
 
10764
- <p><strong>Parameters:</strong></p>
10765
- <table>
10766
- <thead>
10767
- <tr>
10768
- <th>Name</th>
10769
- <th>Type</th>
10770
- <th>Description</th>
10771
- <th>Default</th>
10772
- </tr>
10773
- </thead>
10774
- <tbody>
10775
- <tr>
10776
- <td><code>name</code></td>
10777
- <td>
10778
- <code>str</code>
10779
- </td>
10780
- <td>
10781
- <div class="doc-md-description">
10782
- <p>The name of the tab.</p>
10783
- </div>
10784
- </td>
10785
- <td>
10786
- <em>required</em>
10787
- </td>
10788
- </tr>
11527
+ <p><span class="doc-section-title">Parameters:</span></p>
11528
+ <table>
11529
+ <thead>
10789
11530
  <tr>
10790
- <td><code>permissions</code></td>
10791
- <td>
10792
- <code>list</code>
10793
- </td>
10794
- <td>
10795
- <div class="doc-md-description">
10796
- <p>The permissions required to view this tab.</p>
10797
- </div>
10798
- </td>
10799
- <td>
10800
- <code>None</code>
10801
- </td>
10802
- </tr>
10803
- <tr>
10804
- <td><code>groups</code></td>
10805
- <td>
10806
- <code>list</code>
10807
- </td>
10808
- <td>
10809
- <div class="doc-md-description">
10810
- <p>List of groups to be rendered in this tab.</p>
10811
- </div>
10812
- </td>
10813
- <td>
10814
- <code>None</code>
10815
- </td>
11531
+ <th>Name</th>
11532
+ <th>Type</th>
11533
+ <th>Description</th>
11534
+ <th>Default</th>
10816
11535
  </tr>
10817
- <tr>
10818
- <td><code>weight</code></td>
10819
- <td>
10820
- <code>int</code>
10821
- </td>
10822
- <td>
10823
- <div class="doc-md-description">
10824
- <p>The weight of this tab.</p>
10825
- </div>
10826
- </td>
10827
- <td>
10828
- <code>1000</code>
10829
- </td>
10830
- </tr>
10831
- </tbody>
10832
- </table>
11536
+ </thead>
11537
+ <tbody>
11538
+ <tr class="doc-section-item">
11539
+ <td><code>name</code></td>
11540
+ <td>
11541
+ <code>str</code>
11542
+ </td>
11543
+ <td>
11544
+ <div class="doc-md-description">
11545
+ <p>The name of the tab.</p>
11546
+ </div>
11547
+ </td>
11548
+ <td>
11549
+ <em>required</em>
11550
+ </td>
11551
+ </tr>
11552
+ <tr class="doc-section-item">
11553
+ <td><code>permissions</code></td>
11554
+ <td>
11555
+ <code>list</code>
11556
+ </td>
11557
+ <td>
11558
+ <div class="doc-md-description">
11559
+ <p>The permissions required to view this tab.</p>
11560
+ </div>
11561
+ </td>
11562
+ <td>
11563
+ <code>None</code>
11564
+ </td>
11565
+ </tr>
11566
+ <tr class="doc-section-item">
11567
+ <td><code>groups</code></td>
11568
+ <td>
11569
+ <code>list</code>
11570
+ </td>
11571
+ <td>
11572
+ <div class="doc-md-description">
11573
+ <p>List of groups to be rendered in this tab.</p>
11574
+ </div>
11575
+ </td>
11576
+ <td>
11577
+ <code>None</code>
11578
+ </td>
11579
+ </tr>
11580
+ <tr class="doc-section-item">
11581
+ <td><code>weight</code></td>
11582
+ <td>
11583
+ <code>int</code>
11584
+ </td>
11585
+ <td>
11586
+ <div class="doc-md-description">
11587
+ <p>The weight of this tab.</p>
11588
+ </div>
11589
+ </td>
11590
+ <td>
11591
+ <code>1000</code>
11592
+ </td>
11593
+ </tr>
11594
+ </tbody>
11595
+ </table>
10833
11596
 
10834
- </div>
11597
+ </div>
10835
11598
 
10836
11599
  </div>
10837
11600
 
@@ -10839,8 +11602,7 @@ the display text and the weight defines its position in the navbar.</p>
10839
11602
 
10840
11603
  </div>
10841
11604
 
10842
- </div>
10843
-
11605
+ </div>
10844
11606
 
10845
11607
  </div>
10846
11608
 
@@ -10849,22 +11611,21 @@ the display text and the weight defines its position in the navbar.</p>
10849
11611
 
10850
11612
 
10851
11613
  <h2 id="nautobot.apps.ui.PermissionsMixin" class="doc doc-heading">
10852
- <code>nautobot.apps.ui.PermissionsMixin</code>
11614
+ <code>nautobot.apps.ui.PermissionsMixin</code>
10853
11615
 
10854
11616
 
10855
11617
  <a href="#nautobot.apps.ui.PermissionsMixin" class="headerlink" title="Permanent link">&para;</a></h2>
10856
11618
 
10857
11619
 
10858
- <div class="doc doc-contents ">
11620
+ <div class="doc doc-contents ">
11621
+
10859
11622
 
10860
-
10861
11623
  <p>Ensure permissions through init.</p>
10862
11624
 
10863
11625
 
10864
-
10865
11626
 
10866
- <div class="doc doc-children">
10867
11627
 
11628
+ <div class="doc doc-children">
10868
11629
 
10869
11630
 
10870
11631
 
@@ -10877,18 +11638,17 @@ the display text and the weight defines its position in the navbar.</p>
10877
11638
  <div class="doc doc-object doc-function">
10878
11639
 
10879
11640
 
10880
-
10881
11641
  <h3 id="nautobot.apps.ui.PermissionsMixin.__init__" class="doc doc-heading">
10882
- <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">)</span></code>
11642
+ <code class="highlight language-python"><span class="fm">__init__</span><span class="p">(</span><span class="n">permissions</span><span class="o">=</span><span class="kc">None</span><span class="p">)</span></code>
10883
11643
 
10884
11644
  <a href="#nautobot.apps.ui.PermissionsMixin.__init__" class="headerlink" title="Permanent link">&para;</a></h3>
10885
11645
 
10886
11646
 
10887
- <div class="doc doc-contents ">
10888
-
11647
+ <div class="doc doc-contents ">
11648
+
10889
11649
  <p>Ensure permissions.</p>
10890
11650
 
10891
- </div>
11651
+ </div>
10892
11652
 
10893
11653
  </div>
10894
11654
 
@@ -10896,8 +11656,7 @@ the display text and the weight defines its position in the navbar.</p>
10896
11656
 
10897
11657
  </div>
10898
11658
 
10899
- </div>
10900
-
11659
+ </div>
10901
11660
 
10902
11661
  </div>
10903
11662
 
@@ -10906,15 +11665,15 @@ the display text and the weight defines its position in the navbar.</p>
10906
11665
 
10907
11666
 
10908
11667
  <h2 id="nautobot.apps.ui.TemplateExtension" class="doc doc-heading">
10909
- <code>nautobot.apps.ui.TemplateExtension</code>
11668
+ <code>nautobot.apps.ui.TemplateExtension</code>
10910
11669
 
10911
11670
 
10912
11671
  <a href="#nautobot.apps.ui.TemplateExtension" class="headerlink" title="Permanent link">&para;</a></h2>
10913
11672
 
10914
11673
 
10915
- <div class="doc doc-contents ">
11674
+ <div class="doc doc-contents ">
11675
+
10916
11676
 
10917
-
10918
11677
  <p>This class is used to register plugin content to be injected into core Nautobot templates. It contains methods
10919
11678
  that are overridden by plugin authors to return template content.</p>
10920
11679
  <p>The <code>model</code> attribute on the class defines the which model detail page this class renders content for. It
@@ -10927,10 +11686,9 @@ should be set as a string in the form <code>&lt;app_label&gt;.&lt;model_name&gt;
10927
11686
  </ul>
10928
11687
 
10929
11688
 
10930
-
10931
11689
 
10932
- <div class="doc doc-children">
10933
11690
 
11691
+ <div class="doc doc-children">
10934
11692
 
10935
11693
 
10936
11694
 
@@ -10943,36 +11701,33 @@ should be set as a string in the form <code>&lt;app_label&gt;.&lt;model_name&gt;
10943
11701
  <div class="doc doc-object doc-function">
10944
11702
 
10945
11703
 
10946
-
10947
11704
  <h3 id="nautobot.apps.ui.TemplateExtension.buttons" class="doc doc-heading">
10948
- <code class="highlight language-python"><span class="n">buttons</span><span class="p">()</span></code>
11705
+ <code class="highlight language-python"><span class="n">buttons</span><span class="p">()</span></code>
10949
11706
 
10950
11707
  <a href="#nautobot.apps.ui.TemplateExtension.buttons" class="headerlink" title="Permanent link">&para;</a></h3>
10951
11708
 
10952
11709
 
10953
- <div class="doc doc-contents ">
10954
-
11710
+ <div class="doc doc-contents ">
11711
+
10955
11712
  <p>Buttons that will be rendered and added to the existing list of buttons on the detail page view. Content
10956
11713
  should be returned as an HTML string. Note that content does not need to be marked as safe because this is
10957
11714
  automatically handled.</p>
10958
11715
 
10959
- </div>
11716
+ </div>
10960
11717
 
10961
11718
  </div>
10962
11719
 
10963
-
10964
11720
  <div class="doc doc-object doc-function">
10965
11721
 
10966
11722
 
10967
-
10968
11723
  <h3 id="nautobot.apps.ui.TemplateExtension.detail_tabs" class="doc doc-heading">
10969
- <code class="highlight language-python"><span class="n">detail_tabs</span><span class="p">()</span></code>
11724
+ <code class="highlight language-python"><span class="n">detail_tabs</span><span class="p">()</span></code>
10970
11725
 
10971
11726
  <a href="#nautobot.apps.ui.TemplateExtension.detail_tabs" class="headerlink" title="Permanent link">&para;</a></h3>
10972
11727
 
10973
11728
 
10974
- <div class="doc doc-contents ">
10975
-
11729
+ <div class="doc doc-contents ">
11730
+
10976
11731
  <p>Tabs that will be rendered and added to the existing list of tabs on the detail page view.
10977
11732
  Tabs will be ordered by their position in the list.</p>
10978
11733
  <p>Content should be returned as a list of dicts in the following format:
@@ -10988,108 +11743,98 @@ Tabs will be ordered by their position in the list.</p>
10988
11743
  <a id="__codelineno-0-10" name="__codelineno-0-10" href="#__codelineno-0-10"></a>]
10989
11744
  </code></pre></div></p>
10990
11745
 
10991
- </div>
11746
+ </div>
10992
11747
 
10993
11748
  </div>
10994
11749
 
10995
-
10996
11750
  <div class="doc doc-object doc-function">
10997
11751
 
10998
11752
 
10999
-
11000
11753
  <h3 id="nautobot.apps.ui.TemplateExtension.full_width_page" class="doc doc-heading">
11001
- <code class="highlight language-python"><span class="n">full_width_page</span><span class="p">()</span></code>
11754
+ <code class="highlight language-python"><span class="n">full_width_page</span><span class="p">()</span></code>
11002
11755
 
11003
11756
  <a href="#nautobot.apps.ui.TemplateExtension.full_width_page" class="headerlink" title="Permanent link">&para;</a></h3>
11004
11757
 
11005
11758
 
11006
- <div class="doc doc-contents ">
11007
-
11759
+ <div class="doc doc-contents ">
11760
+
11008
11761
  <p>Content that will be rendered within the full width of the detail page view. Content should be returned as an
11009
11762
  HTML string. Note that content does not need to be marked as safe because this is automatically handled.</p>
11010
11763
 
11011
- </div>
11764
+ </div>
11012
11765
 
11013
11766
  </div>
11014
11767
 
11015
-
11016
11768
  <div class="doc doc-object doc-function">
11017
11769
 
11018
11770
 
11019
-
11020
11771
  <h3 id="nautobot.apps.ui.TemplateExtension.left_page" class="doc doc-heading">
11021
- <code class="highlight language-python"><span class="n">left_page</span><span class="p">()</span></code>
11772
+ <code class="highlight language-python"><span class="n">left_page</span><span class="p">()</span></code>
11022
11773
 
11023
11774
  <a href="#nautobot.apps.ui.TemplateExtension.left_page" class="headerlink" title="Permanent link">&para;</a></h3>
11024
11775
 
11025
11776
 
11026
- <div class="doc doc-contents ">
11027
-
11777
+ <div class="doc doc-contents ">
11778
+
11028
11779
  <p>Content that will be rendered on the left of the detail page view. Content should be returned as an
11029
11780
  HTML string. Note that content does not need to be marked as safe because this is automatically handled.</p>
11030
11781
 
11031
- </div>
11782
+ </div>
11032
11783
 
11033
11784
  </div>
11034
11785
 
11035
-
11036
11786
  <div class="doc doc-object doc-function">
11037
11787
 
11038
11788
 
11039
-
11040
11789
  <h3 id="nautobot.apps.ui.TemplateExtension.list_buttons" class="doc doc-heading">
11041
- <code class="highlight language-python"><span class="n">list_buttons</span><span class="p">()</span></code>
11790
+ <code class="highlight language-python"><span class="n">list_buttons</span><span class="p">()</span></code>
11042
11791
 
11043
11792
  <a href="#nautobot.apps.ui.TemplateExtension.list_buttons" class="headerlink" title="Permanent link">&para;</a></h3>
11044
11793
 
11045
11794
 
11046
- <div class="doc doc-contents ">
11047
-
11795
+ <div class="doc doc-contents ">
11796
+
11048
11797
  <p>Buttons that will be rendered and added to the existing list of buttons on the list page view. Content
11049
11798
  should be returned as an HTML string. Note that content does not need to be marked as safe because this is
11050
11799
  automatically handled.</p>
11051
11800
 
11052
- </div>
11801
+ </div>
11053
11802
 
11054
11803
  </div>
11055
11804
 
11056
-
11057
11805
  <div class="doc doc-object doc-function">
11058
11806
 
11059
11807
 
11060
-
11061
11808
  <h3 id="nautobot.apps.ui.TemplateExtension.render" class="doc doc-heading">
11062
- <code class="highlight language-python"><span class="n">render</span><span class="p">(</span><span class="n">template_name</span><span class="p">,</span> <span class="n">extra_context</span><span class="o">=</span><span class="kc">None</span><span class="p">)</span></code>
11809
+ <code class="highlight language-python"><span class="n">render</span><span class="p">(</span><span class="n">template_name</span><span class="p">,</span> <span class="n">extra_context</span><span class="o">=</span><span class="kc">None</span><span class="p">)</span></code>
11063
11810
 
11064
11811
  <a href="#nautobot.apps.ui.TemplateExtension.render" class="headerlink" title="Permanent link">&para;</a></h3>
11065
11812
 
11066
11813
 
11067
- <div class="doc doc-contents ">
11068
-
11814
+ <div class="doc doc-contents ">
11815
+
11069
11816
  <p>Convenience method for rendering the specified Django template using the default context data. An additional
11070
11817
  context dictionary may be passed as <code>extra_context</code>.</p>
11071
11818
 
11072
- </div>
11819
+ </div>
11073
11820
 
11074
11821
  </div>
11075
11822
 
11076
-
11077
11823
  <div class="doc doc-object doc-function">
11078
11824
 
11079
11825
 
11080
-
11081
11826
  <h3 id="nautobot.apps.ui.TemplateExtension.right_page" class="doc doc-heading">
11082
- <code class="highlight language-python"><span class="n">right_page</span><span class="p">()</span></code>
11827
+ <code class="highlight language-python"><span class="n">right_page</span><span class="p">()</span></code>
11083
11828
 
11084
11829
  <a href="#nautobot.apps.ui.TemplateExtension.right_page" class="headerlink" title="Permanent link">&para;</a></h3>
11085
11830
 
11086
11831
 
11087
- <div class="doc doc-contents ">
11088
-
11832
+ <div class="doc doc-contents ">
11833
+
11089
11834
  <p>Content that will be rendered on the right of the detail page view. Content should be returned as an
11090
11835
  HTML string. Note that content does not need to be marked as safe because this is automatically handled.</p>
11091
11836
 
11092
- </div>
11837
+ </div>
11093
11838
 
11094
11839
  </div>
11095
11840
 
@@ -11097,8 +11842,7 @@ HTML string. Note that content does not need to be marked as safe because this i
11097
11842
 
11098
11843
  </div>
11099
11844
 
11100
- </div>
11101
-
11845
+ </div>
11102
11846
 
11103
11847
  </div>
11104
11848
 
@@ -11107,7 +11851,7 @@ HTML string. Note that content does not need to be marked as safe because this i
11107
11851
 
11108
11852
  </div>
11109
11853
 
11110
- </div>
11854
+ </div>
11111
11855
 
11112
11856
  </div>
11113
11857
 
@@ -11206,7 +11950,7 @@ HTML string. Note that content does not need to be marked as safe because this i
11206
11950
 
11207
11951
 
11208
11952
  <a href="https://blog.networktocode.com/blog/tags/nautobot" target="_blank" rel="noopener" title="Network to Code Blog" class="md-social__link">
11209
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64zm0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0zm32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>
11953
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M0 64c0-17.7 14.3-32 32-32 229.8 0 416 186.2 416 416 0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96 14.3 96 0 81.7 0 64zm0 352a64 64 0 1 1 128 0 64 64 0 1 1-128 0zm32-256c159.1 0 288 128.9 288 288 0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>
11210
11954
  </a>
11211
11955
 
11212
11956
 
@@ -11214,7 +11958,7 @@ HTML string. Note that content does not need to be marked as safe because this i
11214
11958
 
11215
11959
 
11216
11960
  <a href="https://www.youtube.com/playlist?list=PLjA0bhxgryJ2Ts4GJMDA-tPzVWEncv4pb" target="_blank" rel="noopener" title="Nautobot Videos" class="md-social__link">
11217
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
11961
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>
11218
11962
  </a>
11219
11963
 
11220
11964
 
@@ -11222,7 +11966,7 @@ HTML string. Note that content does not need to be marked as safe because this i
11222
11966
 
11223
11967
 
11224
11968
  <a href="https://www.networktocode.com/community/" target="_blank" rel="noopener" title="Network to Code Community" class="md-social__link">
11225
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z"/></svg>
11969
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z"/></svg>
11226
11970
  </a>
11227
11971
 
11228
11972
 
@@ -11230,7 +11974,7 @@ HTML string. Note that content does not need to be marked as safe because this i
11230
11974
 
11231
11975
 
11232
11976
  <a href="https://github.com/nautobot/nautobot" target="_blank" rel="noopener" title="GitHub Repo" class="md-social__link">
11233
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
11977
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
11234
11978
  </a>
11235
11979
 
11236
11980
 
@@ -11238,7 +11982,7 @@ HTML string. Note that content does not need to be marked as safe because this i
11238
11982
 
11239
11983
 
11240
11984
  <a href="https://twitter.com/networktocode" target="_blank" rel="noopener" title="Network to Code Twitter" class="md-social__link">
11241
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
11985
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
11242
11986
  </a>
11243
11987
 
11244
11988
  </div>