nautobot 2.2.0b1__py3-none-any.whl → 2.2.2__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 (429) hide show
  1. nautobot/__init__.py +31 -0
  2. nautobot/apps/api.py +1 -2
  3. nautobot/apps/utils.py +4 -0
  4. nautobot/apps/views.py +2 -0
  5. nautobot/circuits/api/urls.py +1 -2
  6. nautobot/circuits/api/views.py +0 -12
  7. nautobot/circuits/apps.py +1 -1
  8. nautobot/circuits/tests/test_filters.py +1 -1
  9. nautobot/core/api/routers.py +50 -3
  10. nautobot/core/api/utils.py +4 -0
  11. nautobot/core/api/views.py +21 -15
  12. nautobot/core/cli/__init__.py +18 -11
  13. nautobot/core/constants.py +85 -0
  14. nautobot/core/filters.py +7 -1
  15. nautobot/core/forms/widgets.py +1 -2
  16. nautobot/core/graphql/schema.py +1 -0
  17. nautobot/core/management/commands/generate_test_data.py +4 -4
  18. nautobot/core/models/__init__.py +1 -0
  19. nautobot/core/settings.py +24 -3
  20. nautobot/core/settings.yaml +20 -0
  21. nautobot/core/signals.py +1 -0
  22. nautobot/core/tables.py +2 -1
  23. nautobot/core/templates/admin/base.html +23 -94
  24. nautobot/core/templates/generic/object_retrieve.html +2 -2
  25. nautobot/core/templates/graphene/graphiql.html +18 -47
  26. nautobot/core/templates/inc/footer.html +5 -5
  27. nautobot/core/templates/inc/javascript.html +4 -4
  28. nautobot/core/templates/inc/media.html +2 -2
  29. nautobot/core/templates/inc/nav_menu.html +0 -7
  30. nautobot/core/templates/nautobot_config.py.j2 +14 -1
  31. nautobot/core/templates/rest_framework/api.html +12 -5
  32. nautobot/core/templatetags/helpers.py +2 -2
  33. nautobot/core/testing/__init__.py +1 -1
  34. nautobot/core/testing/filters.py +1 -1
  35. nautobot/core/testing/views.py +30 -0
  36. nautobot/core/tests/integration/test_view_authentication.py +68 -0
  37. nautobot/core/tests/test_api.py +13 -6
  38. nautobot/core/tests/test_csv.py +5 -4
  39. nautobot/core/tests/test_filters.py +2 -1
  40. nautobot/core/tests/test_graphql.py +4 -14
  41. nautobot/core/tests/test_navigations.py +3 -0
  42. nautobot/core/tests/test_views.py +45 -16
  43. nautobot/core/utils/data.py +1 -2
  44. nautobot/core/utils/lookup.py +126 -0
  45. nautobot/core/views/__init__.py +3 -7
  46. nautobot/core/views/generic.py +24 -10
  47. nautobot/core/views/mixins.py +11 -4
  48. nautobot/core/views/renderers.py +11 -6
  49. nautobot/core/wsgi.py +9 -2
  50. nautobot/dcim/api/serializers.py +4 -4
  51. nautobot/dcim/api/urls.py +2 -3
  52. nautobot/dcim/api/views.py +7 -18
  53. nautobot/dcim/apps.py +8 -4
  54. nautobot/dcim/elevations.py +5 -1
  55. nautobot/dcim/factory.py +7 -7
  56. nautobot/dcim/filters/__init__.py +16 -17
  57. nautobot/dcim/forms.py +69 -48
  58. nautobot/dcim/homepage.py +11 -3
  59. nautobot/dcim/management/commands/migrate_location_contacts.py +218 -0
  60. nautobot/dcim/migrations/0057_controller_models.py +11 -70
  61. nautobot/dcim/models/__init__.py +2 -2
  62. nautobot/dcim/models/devices.py +14 -16
  63. nautobot/dcim/models/racks.py +1 -3
  64. nautobot/dcim/navigation.py +23 -31
  65. nautobot/dcim/signals.py +6 -6
  66. nautobot/dcim/tables/__init__.py +2 -2
  67. nautobot/dcim/tables/devices.py +13 -16
  68. nautobot/dcim/tables/template_code.py +1 -1
  69. nautobot/dcim/templates/dcim/controller_create.html +70 -0
  70. nautobot/dcim/templates/dcim/controller_retrieve.html +35 -18
  71. nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +88 -0
  72. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +74 -42
  73. nautobot/dcim/templates/dcim/device.html +11 -3
  74. nautobot/dcim/templates/dcim/device_edit.html +1 -1
  75. nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
  76. nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
  77. nautobot/dcim/tests/test_api.py +47 -6
  78. nautobot/dcim/tests/test_filters.py +92 -81
  79. nautobot/dcim/tests/test_forms.py +49 -2
  80. nautobot/dcim/tests/test_graphql.py +11 -1
  81. nautobot/dcim/tests/test_models.py +15 -15
  82. nautobot/dcim/tests/test_signals.py +3 -1
  83. nautobot/dcim/tests/test_views.py +24 -12
  84. nautobot/dcim/urls.py +1 -1
  85. nautobot/dcim/views.py +25 -15
  86. nautobot/extras/api/serializers.py +20 -1
  87. nautobot/extras/api/urls.py +1 -2
  88. nautobot/extras/api/views.py +0 -10
  89. nautobot/extras/apps.py +7 -0
  90. nautobot/extras/context_managers.py +71 -4
  91. nautobot/extras/filters/__init__.py +53 -2
  92. nautobot/extras/filters/customfields.py +14 -9
  93. nautobot/extras/filters/mixins.py +6 -1
  94. nautobot/extras/forms/contacts.py +7 -0
  95. nautobot/extras/health_checks.py +1 -0
  96. nautobot/extras/jobs.py +1 -0
  97. nautobot/extras/managers.py +15 -2
  98. nautobot/extras/models/contacts.py +1 -0
  99. nautobot/extras/models/customfields.py +25 -2
  100. nautobot/extras/models/datasources.py +1 -0
  101. nautobot/extras/models/mixins.py +1 -0
  102. nautobot/extras/navigation.py +71 -65
  103. nautobot/extras/plugins/__init__.py +2 -1
  104. nautobot/extras/plugins/views.py +7 -11
  105. nautobot/extras/querysets.py +1 -2
  106. nautobot/extras/secrets/providers.py +1 -0
  107. nautobot/extras/signals.py +95 -51
  108. nautobot/extras/tasks.py +70 -17
  109. nautobot/extras/tests/test_api.py +2 -4
  110. nautobot/extras/tests/test_context_managers.py +98 -1
  111. nautobot/extras/tests/test_customfields.py +72 -9
  112. nautobot/extras/tests/test_dynamicgroups.py +2 -0
  113. nautobot/extras/tests/test_filters.py +89 -4
  114. nautobot/extras/tests/test_models.py +9 -0
  115. nautobot/extras/tests/test_relationships.py +10 -1
  116. nautobot/extras/tests/test_views.py +112 -1
  117. nautobot/extras/utils.py +37 -0
  118. nautobot/extras/views.py +18 -17
  119. nautobot/ipam/api/serializers.py +10 -0
  120. nautobot/ipam/api/urls.py +1 -2
  121. nautobot/ipam/api/views.py +0 -11
  122. nautobot/ipam/apps.py +3 -2
  123. nautobot/ipam/tables.py +3 -23
  124. nautobot/ipam/tests/test_graphql.py +2 -3
  125. nautobot/ipam/tests/test_tables.py +42 -0
  126. nautobot/ipam/tests/test_views.py +1 -0
  127. nautobot/ipam/views.py +9 -9
  128. nautobot/project-static/css/base.css +1 -0
  129. nautobot/project-static/docs/404.html +126 -73
  130. nautobot/project-static/docs/apps/index.html +127 -71
  131. nautobot/project-static/docs/apps/nautobot-apps.html +127 -71
  132. nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
  133. nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
  134. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
  135. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
  136. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +127 -71
  137. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +127 -71
  138. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +167 -73
  139. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +165 -72
  140. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +127 -71
  141. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +127 -71
  142. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +127 -71
  143. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +127 -71
  144. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +127 -71
  145. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +127 -71
  146. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +127 -71
  147. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +127 -71
  148. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +127 -71
  149. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +127 -71
  150. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +127 -71
  151. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +127 -71
  152. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +127 -71
  153. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +127 -71
  154. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +128 -72
  155. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +127 -71
  156. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +127 -71
  157. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +345 -71
  158. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +172 -73
  159. nautobot/project-static/docs/development/apps/api/configuration-view.html +127 -71
  160. nautobot/project-static/docs/development/apps/api/database-backend-config.html +127 -71
  161. nautobot/project-static/docs/development/apps/api/models/django-admin.html +127 -71
  162. nautobot/project-static/docs/development/apps/api/models/global-search.html +127 -71
  163. nautobot/project-static/docs/development/apps/api/models/graphql.html +127 -71
  164. nautobot/project-static/docs/development/apps/api/models/index.html +127 -71
  165. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +127 -71
  166. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +127 -71
  167. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +127 -71
  168. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +127 -71
  169. nautobot/project-static/docs/development/apps/api/platform-features/index.html +127 -71
  170. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +127 -71
  171. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +127 -71
  172. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +127 -71
  173. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +127 -71
  174. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +127 -71
  175. nautobot/project-static/docs/development/apps/api/prometheus.html +127 -71
  176. nautobot/project-static/docs/development/apps/api/setup.html +127 -71
  177. nautobot/project-static/docs/development/apps/api/testing.html +127 -71
  178. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +127 -71
  179. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +127 -71
  180. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +127 -71
  181. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +127 -71
  182. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +127 -71
  183. nautobot/project-static/docs/development/apps/api/views/base-template.html +127 -71
  184. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +141 -80
  185. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +144 -83
  186. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +127 -71
  187. nautobot/project-static/docs/development/apps/api/views/index.html +127 -71
  188. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +127 -71
  189. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +127 -71
  190. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +127 -71
  191. nautobot/project-static/docs/development/apps/api/views/notes.html +127 -71
  192. nautobot/project-static/docs/development/apps/api/views/rest-api.html +127 -71
  193. nautobot/project-static/docs/development/apps/api/views/urls.html +127 -71
  194. nautobot/project-static/docs/development/apps/index.html +127 -71
  195. nautobot/project-static/docs/development/apps/migration/code-updates.html +127 -71
  196. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +127 -71
  197. nautobot/project-static/docs/development/apps/migration/from-v1.html +127 -71
  198. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +127 -71
  199. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +127 -71
  200. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +127 -71
  201. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +127 -71
  202. nautobot/project-static/docs/development/apps/porting-from-netbox.html +127 -71
  203. nautobot/project-static/docs/development/core/application-registry.html +127 -71
  204. nautobot/project-static/docs/development/core/best-practices.html +145 -79
  205. nautobot/project-static/docs/development/core/bootstrap-ui.html +127 -71
  206. nautobot/project-static/docs/development/core/caching.html +127 -71
  207. nautobot/project-static/docs/development/core/controllers.html +141 -275
  208. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +127 -71
  209. nautobot/project-static/docs/development/core/extending-models.html +13 -8166
  210. nautobot/project-static/docs/development/core/generic-views.html +142 -86
  211. nautobot/project-static/docs/development/core/getting-started.html +146 -81
  212. nautobot/project-static/docs/development/core/homepage.html +145 -89
  213. nautobot/project-static/docs/development/core/index.html +127 -71
  214. nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
  215. nautobot/project-static/docs/development/core/model-features.html +130 -74
  216. nautobot/project-static/docs/development/core/natural-keys.html +127 -71
  217. nautobot/project-static/docs/development/core/navigation-menu.html +127 -71
  218. nautobot/project-static/docs/development/core/release-checklist.html +127 -71
  219. nautobot/project-static/docs/development/core/role-internals.html +127 -71
  220. nautobot/project-static/docs/development/core/settings.html +127 -71
  221. nautobot/project-static/docs/development/core/style-guide.html +127 -71
  222. nautobot/project-static/docs/development/core/templates.html +127 -71
  223. nautobot/project-static/docs/development/core/testing.html +127 -71
  224. nautobot/project-static/docs/development/core/user-preferences.html +127 -71
  225. nautobot/project-static/docs/development/extending-models.html +3 -3
  226. nautobot/project-static/docs/development/index.html +127 -71
  227. nautobot/project-static/docs/development/jobs/index.html +128 -72
  228. nautobot/project-static/docs/development/jobs/migration/from-v1.html +127 -71
  229. nautobot/project-static/docs/index.html +126 -73
  230. nautobot/project-static/docs/models/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +3 -3
  231. nautobot/project-static/docs/objects.inv +0 -0
  232. nautobot/project-static/docs/release-notes/index.html +127 -71
  233. nautobot/project-static/docs/release-notes/version-1.0.html +127 -71
  234. nautobot/project-static/docs/release-notes/version-1.1.html +127 -71
  235. nautobot/project-static/docs/release-notes/version-1.2.html +127 -71
  236. nautobot/project-static/docs/release-notes/version-1.3.html +127 -71
  237. nautobot/project-static/docs/release-notes/version-1.4.html +127 -71
  238. nautobot/project-static/docs/release-notes/version-1.5.html +127 -71
  239. nautobot/project-static/docs/release-notes/version-1.6.html +663 -304
  240. nautobot/project-static/docs/release-notes/version-2.0.html +127 -71
  241. nautobot/project-static/docs/release-notes/version-2.1.html +538 -254
  242. nautobot/project-static/docs/release-notes/version-2.2.html +711 -125
  243. nautobot/project-static/docs/requirements.txt +3 -3
  244. nautobot/project-static/docs/search/search_index.json +1 -1
  245. nautobot/project-static/docs/sitemap.xml +264 -259
  246. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  247. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +127 -71
  248. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +127 -71
  249. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +127 -71
  250. nautobot/project-static/docs/user-guide/administration/configuration/index.html +127 -71
  251. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +192 -71
  252. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +127 -71
  253. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +127 -71
  254. nautobot/project-static/docs/user-guide/administration/guides/caching.html +127 -71
  255. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +127 -71
  256. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +127 -71
  257. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +127 -71
  258. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -71
  259. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +127 -71
  260. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +127 -71
  261. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +130 -74
  262. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +127 -71
  263. nautobot/project-static/docs/user-guide/administration/installation/docker.html +134 -74
  264. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +127 -71
  265. nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +8616 -0
  266. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +127 -71
  267. nautobot/project-static/docs/user-guide/administration/installation/index.html +127 -71
  268. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +127 -71
  269. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +127 -71
  270. nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +130 -74
  271. nautobot/project-static/docs/user-guide/administration/installation/services.html +127 -71
  272. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +127 -71
  273. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +127 -71
  274. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +127 -71
  275. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +127 -71
  276. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +127 -71
  277. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +127 -71
  278. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +127 -71
  279. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +127 -71
  280. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +127 -71
  281. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +127 -71
  282. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +127 -71
  283. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +127 -71
  284. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +127 -71
  285. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +127 -71
  286. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +127 -71
  287. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +127 -71
  288. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +127 -71
  289. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +127 -71
  290. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +127 -71
  291. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +127 -71
  292. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +127 -71
  293. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +127 -71
  294. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +127 -71
  295. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +362 -79
  296. nautobot/project-static/docs/user-guide/core-data-model/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +210 -85
  297. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +127 -71
  298. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +127 -71
  299. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +127 -71
  300. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +127 -71
  301. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +127 -71
  302. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +127 -71
  303. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +127 -71
  304. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +127 -71
  305. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +127 -71
  306. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +127 -71
  307. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +127 -71
  308. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +127 -71
  309. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +127 -71
  310. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +127 -71
  311. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +127 -71
  312. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +127 -71
  313. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +127 -71
  314. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +127 -71
  315. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +127 -71
  316. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +127 -71
  317. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +127 -71
  318. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +127 -71
  319. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +127 -71
  320. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +127 -71
  321. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +127 -71
  322. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +127 -71
  323. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +127 -71
  324. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +127 -71
  325. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +127 -71
  326. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +127 -71
  327. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +130 -74
  328. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +127 -71
  329. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +138 -71
  330. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +138 -71
  331. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +127 -71
  332. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +127 -71
  333. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +127 -71
  334. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +127 -71
  335. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +127 -71
  336. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +127 -71
  337. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +127 -71
  338. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +127 -71
  339. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +127 -71
  340. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +127 -71
  341. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +127 -71
  342. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +127 -71
  343. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +127 -71
  344. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +127 -71
  345. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +127 -71
  346. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +127 -71
  347. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +127 -71
  348. nautobot/project-static/docs/user-guide/feature-guides/{contact-and-team.html → contacts-and-teams.html} +128 -72
  349. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +129 -73
  350. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +127 -71
  351. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +127 -71
  352. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +127 -71
  353. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +127 -71
  354. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +127 -71
  355. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +127 -71
  356. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +129 -73
  357. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +127 -71
  358. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +127 -71
  359. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +127 -71
  360. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +127 -71
  361. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +127 -71
  362. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +127 -71
  363. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +127 -71
  364. nautobot/project-static/docs/user-guide/index.html +127 -71
  365. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +127 -71
  366. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +127 -71
  367. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +127 -71
  368. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +127 -71
  369. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +127 -71
  370. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +127 -71
  371. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +127 -71
  372. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +127 -71
  373. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +127 -71
  374. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +127 -71
  375. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +127 -71
  376. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +127 -71
  377. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +127 -71
  378. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +127 -71
  379. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +127 -71
  380. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +127 -71
  381. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +127 -71
  382. nautobot/project-static/docs/user-guide/platform-functionality/note.html +127 -71
  383. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +127 -71
  384. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +127 -71
  385. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +127 -71
  386. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +127 -71
  387. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +127 -71
  388. nautobot/project-static/docs/user-guide/platform-functionality/role.html +127 -71
  389. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +127 -71
  390. nautobot/project-static/docs/user-guide/platform-functionality/status.html +127 -71
  391. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +127 -71
  392. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +127 -71
  393. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +127 -71
  394. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +127 -71
  395. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +127 -71
  396. nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
  397. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
  398. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
  399. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
  400. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
  401. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
  402. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
  403. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
  404. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
  405. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
  406. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
  407. nautobot/tenancy/api/urls.py +1 -2
  408. nautobot/tenancy/api/views.py +0 -12
  409. nautobot/tenancy/tables.py +1 -1
  410. nautobot/tenancy/tests/test_views.py +1 -0
  411. nautobot/users/api/urls.py +1 -2
  412. nautobot/users/api/views.py +2 -65
  413. nautobot/users/views.py +8 -8
  414. nautobot/virtualization/api/urls.py +1 -2
  415. nautobot/virtualization/api/views.py +0 -12
  416. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/METADATA +24 -24
  417. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/RECORD +422 -416
  418. nautobot/dcim/templates/dcim/controllerdevicegroup_create.html +0 -43
  419. nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
  420. nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
  421. nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
  422. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
  423. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
  424. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
  425. /nautobot/dcim/templates/dcim/{controllerdevicegroup_retrieve.html → controllermanageddevicegroup_retrieve.html} +0 -0
  426. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/LICENSE.txt +0 -0
  427. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/NOTICE +0 -0
  428. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.dist-info}/WHEEL +0 -0
  429. {nautobot-2.2.0b1.dist-info → nautobot-2.2.2.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.5.3, mkdocs-material-9.5.8">
21
+ <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
22
22
 
23
23
 
24
24
 
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- <link rel="stylesheet" href="../../../assets/stylesheets/main.f2e4d321.min.css">
29
+ <link rel="stylesheet" href="../../../assets/stylesheets/main.bcfcd587.min.css">
30
30
 
31
31
 
32
32
  <link rel="stylesheet" href="../../../assets/stylesheets/palette.06af60db.min.css">
@@ -401,16 +401,17 @@
401
401
 
402
402
 
403
403
 
404
-
405
-
404
+
405
+
406
+
406
407
 
407
408
 
409
+
408
410
 
409
411
  <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
410
412
 
411
413
 
412
414
 
413
-
414
415
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
415
416
 
416
417
 
@@ -451,13 +452,14 @@
451
452
 
452
453
 
453
454
 
455
+
456
+
454
457
 
455
458
 
456
459
  <li class="md-nav__item md-nav__item--active md-nav__item--nested">
457
460
 
458
461
 
459
462
 
460
-
461
463
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" checked>
462
464
 
463
465
 
@@ -490,13 +492,14 @@
490
492
 
491
493
 
492
494
 
495
+
496
+
493
497
 
494
498
 
495
499
  <li class="md-nav__item md-nav__item--active md-nav__item--nested">
496
500
 
497
501
 
498
502
 
499
-
500
503
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" checked>
501
504
 
502
505
 
@@ -963,6 +966,27 @@
963
966
 
964
967
 
965
968
 
969
+ <li class="md-nav__item">
970
+ <a href="health-checks.html" class="md-nav__link">
971
+
972
+
973
+ <span class="md-ellipsis">
974
+ Health Checks
975
+ </span>
976
+
977
+
978
+ </a>
979
+ </li>
980
+
981
+
982
+
983
+
984
+
985
+
986
+
987
+
988
+
989
+
966
990
  <li class="md-nav__item">
967
991
  <a href="selinux-troubleshooting.html" class="md-nav__link">
968
992
 
@@ -995,13 +1019,14 @@
995
1019
 
996
1020
 
997
1021
 
1022
+
1023
+
998
1024
 
999
1025
 
1000
1026
  <li class="md-nav__item md-nav__item--nested">
1001
1027
 
1002
1028
 
1003
1029
 
1004
-
1005
1030
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
1006
1031
 
1007
1032
 
@@ -1074,13 +1099,14 @@
1074
1099
 
1075
1100
 
1076
1101
 
1102
+
1103
+
1077
1104
 
1078
1105
 
1079
1106
  <li class="md-nav__item md-nav__item--nested">
1080
1107
 
1081
1108
 
1082
1109
 
1083
-
1084
1110
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
1085
1111
 
1086
1112
 
@@ -1140,13 +1166,14 @@
1140
1166
 
1141
1167
 
1142
1168
 
1169
+
1170
+
1143
1171
 
1144
1172
 
1145
1173
  <li class="md-nav__item md-nav__item--nested">
1146
1174
 
1147
1175
 
1148
1176
 
1149
-
1150
1177
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
1151
1178
 
1152
1179
 
@@ -1293,13 +1320,14 @@
1293
1320
 
1294
1321
 
1295
1322
 
1323
+
1324
+
1296
1325
 
1297
1326
 
1298
1327
  <li class="md-nav__item md-nav__item--nested">
1299
1328
 
1300
1329
 
1301
1330
 
1302
-
1303
1331
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
1304
1332
 
1305
1333
 
@@ -1380,13 +1408,14 @@
1380
1408
 
1381
1409
 
1382
1410
 
1411
+
1412
+
1383
1413
 
1384
1414
 
1385
1415
  <li class="md-nav__item md-nav__item--nested">
1386
1416
 
1387
1417
 
1388
1418
 
1389
-
1390
1419
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
1391
1420
 
1392
1421
 
@@ -1488,13 +1517,14 @@
1488
1517
 
1489
1518
 
1490
1519
 
1520
+
1521
+
1491
1522
 
1492
1523
 
1493
1524
  <li class="md-nav__item md-nav__item--nested">
1494
1525
 
1495
1526
 
1496
1527
 
1497
-
1498
1528
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
1499
1529
 
1500
1530
 
@@ -1604,13 +1634,14 @@
1604
1634
 
1605
1635
 
1606
1636
 
1637
+
1638
+
1607
1639
 
1608
1640
 
1609
1641
  <li class="md-nav__item md-nav__item--nested">
1610
1642
 
1611
1643
 
1612
1644
 
1613
-
1614
1645
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
1615
1646
 
1616
1647
 
@@ -1691,13 +1722,14 @@
1691
1722
 
1692
1723
 
1693
1724
 
1725
+
1726
+
1694
1727
 
1695
1728
 
1696
1729
  <li class="md-nav__item md-nav__item--nested">
1697
1730
 
1698
1731
 
1699
1732
 
1700
-
1701
1733
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
1702
1734
 
1703
1735
 
@@ -1912,13 +1944,14 @@
1912
1944
 
1913
1945
 
1914
1946
 
1947
+
1948
+
1915
1949
 
1916
1950
 
1917
1951
  <li class="md-nav__item md-nav__item--nested">
1918
1952
 
1919
1953
 
1920
1954
 
1921
-
1922
1955
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
1923
1956
 
1924
1957
 
@@ -1949,13 +1982,14 @@
1949
1982
 
1950
1983
 
1951
1984
 
1985
+
1986
+
1952
1987
 
1953
1988
 
1954
1989
  <li class="md-nav__item md-nav__item--nested">
1955
1990
 
1956
1991
 
1957
1992
 
1958
-
1959
1993
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
1960
1994
 
1961
1995
 
@@ -2168,7 +2202,7 @@
2168
2202
 
2169
2203
 
2170
2204
  <li class="md-nav__item">
2171
- <a href="../../feature-guides/contact-and-team.html" class="md-nav__link">
2205
+ <a href="../../feature-guides/contacts-and-teams.html" class="md-nav__link">
2172
2206
 
2173
2207
 
2174
2208
  <span class="md-ellipsis">
@@ -2325,13 +2359,14 @@
2325
2359
 
2326
2360
 
2327
2361
 
2362
+
2363
+
2328
2364
 
2329
2365
 
2330
2366
  <li class="md-nav__item md-nav__item--nested">
2331
2367
 
2332
2368
 
2333
2369
 
2334
-
2335
2370
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
2336
2371
 
2337
2372
 
@@ -2362,13 +2397,14 @@
2362
2397
 
2363
2398
 
2364
2399
 
2400
+
2401
+
2365
2402
 
2366
2403
 
2367
2404
  <li class="md-nav__item md-nav__item--nested">
2368
2405
 
2369
2406
 
2370
2407
 
2371
-
2372
2408
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
2373
2409
 
2374
2410
 
@@ -2428,13 +2464,14 @@
2428
2464
 
2429
2465
 
2430
2466
 
2467
+
2468
+
2431
2469
 
2432
2470
 
2433
2471
  <li class="md-nav__item md-nav__item--nested">
2434
2472
 
2435
2473
 
2436
2474
 
2437
-
2438
2475
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
2439
2476
 
2440
2477
 
@@ -2578,13 +2615,14 @@
2578
2615
 
2579
2616
 
2580
2617
 
2618
+
2619
+
2581
2620
 
2582
2621
 
2583
2622
  <li class="md-nav__item md-nav__item--nested">
2584
2623
 
2585
2624
 
2586
2625
 
2587
-
2588
2626
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
2589
2627
 
2590
2628
 
@@ -2762,13 +2800,14 @@
2762
2800
 
2763
2801
 
2764
2802
 
2803
+
2804
+
2765
2805
 
2766
2806
 
2767
2807
  <li class="md-nav__item md-nav__item--nested">
2768
2808
 
2769
2809
 
2770
2810
 
2771
-
2772
2811
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
2773
2812
 
2774
2813
 
@@ -2983,13 +3022,14 @@
2983
3022
 
2984
3023
 
2985
3024
 
3025
+
3026
+
2986
3027
 
2987
3028
 
2988
3029
  <li class="md-nav__item md-nav__item--nested">
2989
3030
 
2990
3031
 
2991
3032
 
2992
-
2993
3033
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
2994
3034
 
2995
3035
 
@@ -3433,11 +3473,11 @@
3433
3473
 
3434
3474
 
3435
3475
  <li class="md-nav__item">
3436
- <a href="../../core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
3476
+ <a href="../../core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
3437
3477
 
3438
3478
 
3439
3479
  <span class="md-ellipsis">
3440
- Controller Device Group
3480
+ Controller Managed Device Group
3441
3481
  </span>
3442
3482
 
3443
3483
 
@@ -3464,13 +3504,14 @@
3464
3504
 
3465
3505
 
3466
3506
 
3507
+
3508
+
3467
3509
 
3468
3510
 
3469
3511
  <li class="md-nav__item md-nav__item--nested">
3470
3512
 
3471
3513
 
3472
3514
 
3473
-
3474
3515
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
3475
3516
 
3476
3517
 
@@ -3593,13 +3634,14 @@
3593
3634
 
3594
3635
 
3595
3636
 
3637
+
3638
+
3596
3639
 
3597
3640
 
3598
3641
  <li class="md-nav__item md-nav__item--nested">
3599
3642
 
3600
3643
 
3601
3644
 
3602
-
3603
3645
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
3604
3646
 
3605
3647
 
@@ -3827,13 +3869,14 @@
3827
3869
 
3828
3870
 
3829
3871
 
3872
+
3873
+
3830
3874
 
3831
3875
 
3832
3876
  <li class="md-nav__item md-nav__item--nested">
3833
3877
 
3834
3878
 
3835
3879
 
3836
-
3837
3880
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
3838
3881
 
3839
3882
 
@@ -3914,13 +3957,14 @@
3914
3957
 
3915
3958
 
3916
3959
 
3960
+
3961
+
3917
3962
 
3918
3963
 
3919
3964
  <li class="md-nav__item md-nav__item--nested">
3920
3965
 
3921
3966
 
3922
3967
 
3923
-
3924
3968
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
3925
3969
 
3926
3970
 
@@ -4072,13 +4116,14 @@
4072
4116
 
4073
4117
 
4074
4118
 
4119
+
4120
+
4075
4121
 
4076
4122
 
4077
4123
  <li class="md-nav__item md-nav__item--nested">
4078
4124
 
4079
4125
 
4080
4126
 
4081
-
4082
4127
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
4083
4128
 
4084
4129
 
@@ -4277,13 +4322,14 @@
4277
4322
 
4278
4323
 
4279
4324
 
4325
+
4326
+
4280
4327
 
4281
4328
 
4282
4329
  <li class="md-nav__item md-nav__item--nested">
4283
4330
 
4284
4331
 
4285
4332
 
4286
-
4287
4333
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
4288
4334
 
4289
4335
 
@@ -4372,13 +4418,14 @@
4372
4418
 
4373
4419
 
4374
4420
 
4421
+
4422
+
4375
4423
 
4376
4424
 
4377
4425
  <li class="md-nav__item md-nav__item--nested">
4378
4426
 
4379
4427
 
4380
4428
 
4381
-
4382
4429
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
4383
4430
 
4384
4431
 
@@ -4572,13 +4619,14 @@
4572
4619
 
4573
4620
 
4574
4621
 
4622
+
4623
+
4575
4624
 
4576
4625
 
4577
4626
  <li class="md-nav__item md-nav__item--nested">
4578
4627
 
4579
4628
 
4580
4629
 
4581
-
4582
4630
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
4583
4631
 
4584
4632
 
@@ -4793,13 +4841,14 @@
4793
4841
 
4794
4842
 
4795
4843
 
4844
+
4845
+
4796
4846
 
4797
4847
 
4798
4848
  <li class="md-nav__item md-nav__item--nested">
4799
4849
 
4800
4850
 
4801
4851
 
4802
-
4803
4852
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
4804
4853
 
4805
4854
 
@@ -4916,16 +4965,14 @@
4916
4965
 
4917
4966
 
4918
4967
 
4919
-
4920
-
4921
4968
 
4922
4969
 
4923
4970
 
4924
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
4971
+
4972
+ <li class="md-nav__item md-nav__item--nested">
4925
4973
 
4926
4974
 
4927
4975
 
4928
-
4929
4976
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
4930
4977
 
4931
4978
 
@@ -4942,7 +4989,7 @@
4942
4989
  </a>
4943
4990
 
4944
4991
 
4945
- <label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
4992
+ <label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
4946
4993
  <span class="md-nav__icon md-icon"></span>
4947
4994
  </label>
4948
4995
 
@@ -4964,13 +5011,14 @@
4964
5011
 
4965
5012
 
4966
5013
 
5014
+
5015
+
4967
5016
 
4968
5017
 
4969
5018
  <li class="md-nav__item md-nav__item--nested">
4970
5019
 
4971
5020
 
4972
5021
 
4973
-
4974
5022
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
4975
5023
 
4976
5024
 
@@ -5038,13 +5086,14 @@
5038
5086
 
5039
5087
 
5040
5088
 
5089
+
5090
+
5041
5091
 
5042
5092
 
5043
5093
  <li class="md-nav__item md-nav__item--nested">
5044
5094
 
5045
5095
 
5046
5096
 
5047
-
5048
5097
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
5049
5098
 
5050
5099
 
@@ -5125,13 +5174,14 @@
5125
5174
 
5126
5175
 
5127
5176
 
5177
+
5178
+
5128
5179
 
5129
5180
 
5130
5181
  <li class="md-nav__item md-nav__item--nested">
5131
5182
 
5132
5183
 
5133
5184
 
5134
-
5135
5185
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
5136
5186
 
5137
5187
 
@@ -5241,13 +5291,14 @@
5241
5291
 
5242
5292
 
5243
5293
 
5294
+
5295
+
5244
5296
 
5245
5297
 
5246
5298
  <li class="md-nav__item md-nav__item--nested">
5247
5299
 
5248
5300
 
5249
5301
 
5250
-
5251
5302
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
5252
5303
 
5253
5304
 
@@ -5433,13 +5484,14 @@
5433
5484
 
5434
5485
 
5435
5486
 
5487
+
5488
+
5436
5489
 
5437
5490
 
5438
5491
  <li class="md-nav__item md-nav__item--nested">
5439
5492
 
5440
5493
 
5441
5494
 
5442
-
5443
5495
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
5444
5496
 
5445
5497
 
@@ -5549,13 +5601,14 @@
5549
5601
 
5550
5602
 
5551
5603
 
5604
+
5605
+
5552
5606
 
5553
5607
 
5554
5608
  <li class="md-nav__item md-nav__item--nested">
5555
5609
 
5556
5610
 
5557
5611
 
5558
-
5559
5612
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
5560
5613
 
5561
5614
 
@@ -5812,13 +5865,14 @@
5812
5865
 
5813
5866
 
5814
5867
 
5868
+
5869
+
5815
5870
 
5816
5871
 
5817
5872
  <li class="md-nav__item md-nav__item--nested">
5818
5873
 
5819
5874
 
5820
5875
 
5821
-
5822
5876
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
5823
5877
 
5824
5878
 
@@ -5991,13 +6045,14 @@
5991
6045
 
5992
6046
 
5993
6047
 
6048
+
6049
+
5994
6050
 
5995
6051
 
5996
6052
  <li class="md-nav__item md-nav__item--nested">
5997
6053
 
5998
6054
 
5999
6055
 
6000
-
6001
6056
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
6002
6057
 
6003
6058
 
@@ -6519,13 +6574,14 @@
6519
6574
 
6520
6575
 
6521
6576
 
6577
+
6578
+
6522
6579
 
6523
6580
 
6524
6581
  <li class="md-nav__item md-nav__item--nested">
6525
6582
 
6526
6583
 
6527
6584
 
6528
-
6529
6585
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
6530
6586
 
6531
6587
 
@@ -6619,13 +6675,14 @@
6619
6675
 
6620
6676
 
6621
6677
 
6678
+
6679
+
6622
6680
 
6623
6681
 
6624
6682
  <li class="md-nav__item md-nav__item--nested">
6625
6683
 
6626
6684
 
6627
6685
 
6628
-
6629
6686
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
6630
6687
 
6631
6688
 
@@ -6756,13 +6813,14 @@
6756
6813
 
6757
6814
 
6758
6815
 
6816
+
6817
+
6759
6818
 
6760
6819
 
6761
6820
  <li class="md-nav__item md-nav__item--nested">
6762
6821
 
6763
6822
 
6764
6823
 
6765
-
6766
6824
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
6767
6825
 
6768
6826
 
@@ -6830,13 +6888,14 @@
6830
6888
 
6831
6889
 
6832
6890
 
6891
+
6892
+
6833
6893
 
6834
6894
 
6835
6895
  <li class="md-nav__item md-nav__item--nested">
6836
6896
 
6837
6897
 
6838
6898
 
6839
-
6840
6899
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
6841
6900
 
6842
6901
 
@@ -7041,11 +7100,11 @@
7041
7100
 
7042
7101
 
7043
7102
  <li class="md-nav__item">
7044
- <a href="../../../development/core/extending-models.html" class="md-nav__link">
7103
+ <a href="../../../development/core/generic-views.html" class="md-nav__link">
7045
7104
 
7046
7105
 
7047
7106
  <span class="md-ellipsis">
7048
- Extending Models
7107
+ Generic Views
7049
7108
  </span>
7050
7109
 
7051
7110
 
@@ -7062,11 +7121,11 @@
7062
7121
 
7063
7122
 
7064
7123
  <li class="md-nav__item">
7065
- <a href="../../../development/core/generic-views.html" class="md-nav__link">
7124
+ <a href="../../../development/core/homepage.html" class="md-nav__link">
7066
7125
 
7067
7126
 
7068
7127
  <span class="md-ellipsis">
7069
- Generic Views
7128
+ Home Page Panels
7070
7129
  </span>
7071
7130
 
7072
7131
 
@@ -7083,11 +7142,11 @@
7083
7142
 
7084
7143
 
7085
7144
  <li class="md-nav__item">
7086
- <a href="../../../development/core/homepage.html" class="md-nav__link">
7145
+ <a href="../../../development/core/model-checklist.html" class="md-nav__link">
7087
7146
 
7088
7147
 
7089
7148
  <span class="md-ellipsis">
7090
- Home Page Panels
7149
+ Model Development Checklist
7091
7150
  </span>
7092
7151
 
7093
7152
 
@@ -7310,16 +7369,14 @@
7310
7369
 
7311
7370
 
7312
7371
 
7313
-
7314
-
7315
7372
 
7316
7373
 
7317
7374
 
7318
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
7375
+
7376
+ <li class="md-nav__item md-nav__item--nested">
7319
7377
 
7320
7378
 
7321
7379
 
7322
-
7323
7380
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
7324
7381
 
7325
7382
 
@@ -7336,7 +7393,7 @@
7336
7393
  </a>
7337
7394
 
7338
7395
 
7339
- <label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
7396
+ <label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
7340
7397
  <span class="md-nav__icon md-icon"></span>
7341
7398
  </label>
7342
7399
 
@@ -7575,16 +7632,14 @@
7575
7632
 
7576
7633
 
7577
7634
 
7578
-
7579
-
7580
7635
 
7581
7636
 
7582
7637
 
7583
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
7638
+
7639
+ <li class="md-nav__item md-nav__item--nested">
7584
7640
 
7585
7641
 
7586
7642
 
7587
-
7588
7643
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
7589
7644
 
7590
7645
 
@@ -7601,7 +7656,7 @@
7601
7656
  </a>
7602
7657
 
7603
7658
 
7604
- <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
7659
+ <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
7605
7660
  <span class="md-nav__icon md-icon"></span>
7606
7661
  </label>
7607
7662
 
@@ -7623,13 +7678,14 @@
7623
7678
 
7624
7679
 
7625
7680
 
7681
+
7682
+
7626
7683
 
7627
7684
 
7628
7685
  <li class="md-nav__item md-nav__item--nested">
7629
7686
 
7630
7687
 
7631
7688
 
7632
-
7633
7689
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
7634
7690
 
7635
7691
 
@@ -8555,9 +8611,9 @@ development instance:</p>
8555
8611
  <script id="__config" type="application/json">{"base": "../../..", "features": ["content.code.copy", "navigation.footer", "navigation.tabs", "navigation.tabs.sticky", "navigation.tracking", "search.highlight", "search.share", "search.suggest"], "search": "../../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}}</script>
8556
8612
 
8557
8613
 
8558
- <script src="../../../assets/javascripts/bundle.8fd75fb4.min.js"></script>
8614
+ <script src="../../../assets/javascripts/bundle.bd41221c.min.js"></script>
8559
8615
 
8560
- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
8616
+ <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
8561
8617
 
8562
8618
 
8563
8619
  </body>