nautobot 2.2.0b1__py3-none-any.whl → 2.2.1__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 (425) 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 +44 -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 +20 -6
  47. nautobot/core/views/mixins.py +7 -1
  48. nautobot/core/views/renderers.py +11 -6
  49. nautobot/dcim/api/serializers.py +4 -4
  50. nautobot/dcim/api/urls.py +2 -3
  51. nautobot/dcim/api/views.py +7 -18
  52. nautobot/dcim/apps.py +8 -4
  53. nautobot/dcim/elevations.py +5 -1
  54. nautobot/dcim/factory.py +7 -7
  55. nautobot/dcim/filters/__init__.py +16 -17
  56. nautobot/dcim/forms.py +61 -45
  57. nautobot/dcim/homepage.py +11 -3
  58. nautobot/dcim/management/commands/migrate_location_contacts.py +218 -0
  59. nautobot/dcim/migrations/0057_controller_models.py +11 -70
  60. nautobot/dcim/models/__init__.py +2 -2
  61. nautobot/dcim/models/devices.py +14 -16
  62. nautobot/dcim/models/racks.py +1 -3
  63. nautobot/dcim/navigation.py +23 -31
  64. nautobot/dcim/signals.py +6 -6
  65. nautobot/dcim/tables/__init__.py +2 -2
  66. nautobot/dcim/tables/devices.py +13 -16
  67. nautobot/dcim/tables/template_code.py +1 -1
  68. nautobot/dcim/templates/dcim/controller_create.html +70 -0
  69. nautobot/dcim/templates/dcim/controller_retrieve.html +35 -18
  70. nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +88 -0
  71. nautobot/dcim/templates/dcim/device/lldp_neighbors.html +75 -43
  72. nautobot/dcim/templates/dcim/device.html +11 -3
  73. nautobot/dcim/templates/dcim/device_edit.html +1 -1
  74. nautobot/dcim/templates/dcim/devicefamily_retrieve.html +4 -0
  75. nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +1 -1
  76. nautobot/dcim/tests/test_api.py +47 -6
  77. nautobot/dcim/tests/test_filters.py +92 -81
  78. nautobot/dcim/tests/test_graphql.py +11 -1
  79. nautobot/dcim/tests/test_models.py +15 -15
  80. nautobot/dcim/tests/test_signals.py +3 -1
  81. nautobot/dcim/tests/test_views.py +24 -12
  82. nautobot/dcim/urls.py +1 -1
  83. nautobot/dcim/views.py +25 -15
  84. nautobot/extras/api/serializers.py +20 -1
  85. nautobot/extras/api/urls.py +1 -2
  86. nautobot/extras/api/views.py +0 -10
  87. nautobot/extras/apps.py +7 -0
  88. nautobot/extras/context_managers.py +15 -4
  89. nautobot/extras/filters/__init__.py +53 -2
  90. nautobot/extras/filters/customfields.py +14 -9
  91. nautobot/extras/filters/mixins.py +6 -1
  92. nautobot/extras/forms/contacts.py +7 -0
  93. nautobot/extras/health_checks.py +1 -0
  94. nautobot/extras/jobs.py +1 -0
  95. nautobot/extras/managers.py +15 -2
  96. nautobot/extras/models/contacts.py +1 -0
  97. nautobot/extras/models/customfields.py +25 -2
  98. nautobot/extras/models/datasources.py +1 -0
  99. nautobot/extras/models/mixins.py +1 -0
  100. nautobot/extras/navigation.py +71 -65
  101. nautobot/extras/plugins/__init__.py +2 -1
  102. nautobot/extras/plugins/views.py +7 -11
  103. nautobot/extras/querysets.py +1 -2
  104. nautobot/extras/secrets/providers.py +1 -0
  105. nautobot/extras/signals.py +15 -5
  106. nautobot/extras/tasks.py +70 -17
  107. nautobot/extras/tests/test_api.py +2 -4
  108. nautobot/extras/tests/test_customfields.py +72 -9
  109. nautobot/extras/tests/test_dynamicgroups.py +2 -0
  110. nautobot/extras/tests/test_filters.py +89 -4
  111. nautobot/extras/tests/test_models.py +9 -0
  112. nautobot/extras/tests/test_relationships.py +10 -1
  113. nautobot/extras/tests/test_views.py +112 -1
  114. nautobot/extras/views.py +18 -17
  115. nautobot/ipam/api/serializers.py +10 -0
  116. nautobot/ipam/api/urls.py +1 -2
  117. nautobot/ipam/api/views.py +0 -11
  118. nautobot/ipam/apps.py +3 -2
  119. nautobot/ipam/tables.py +2 -22
  120. nautobot/ipam/tests/test_graphql.py +2 -3
  121. nautobot/ipam/tests/test_tables.py +42 -0
  122. nautobot/ipam/tests/test_views.py +1 -0
  123. nautobot/ipam/views.py +9 -9
  124. nautobot/project-static/css/base.css +1 -0
  125. nautobot/project-static/docs/404.html +126 -73
  126. nautobot/project-static/docs/apps/index.html +127 -71
  127. nautobot/project-static/docs/apps/nautobot-apps.html +127 -71
  128. nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js → bundle.bd41221c.min.js} +2 -2
  129. nautobot/project-static/docs/assets/javascripts/{bundle.8fd75fb4.min.js.map → bundle.bd41221c.min.js.map} +3 -3
  130. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css +1 -0
  131. nautobot/project-static/docs/assets/stylesheets/main.bcfcd587.min.css.map +1 -0
  132. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +127 -71
  133. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +127 -71
  134. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +167 -73
  135. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +165 -72
  136. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +127 -71
  137. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +127 -71
  138. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +127 -71
  139. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +127 -71
  140. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +127 -71
  141. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +127 -71
  142. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +127 -71
  143. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +127 -71
  144. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +127 -71
  145. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +127 -71
  146. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +127 -71
  147. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +127 -71
  148. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +127 -71
  149. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +127 -71
  150. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +128 -72
  151. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +127 -71
  152. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +127 -71
  153. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +345 -71
  154. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +172 -73
  155. nautobot/project-static/docs/development/apps/api/configuration-view.html +127 -71
  156. nautobot/project-static/docs/development/apps/api/database-backend-config.html +127 -71
  157. nautobot/project-static/docs/development/apps/api/models/django-admin.html +127 -71
  158. nautobot/project-static/docs/development/apps/api/models/global-search.html +127 -71
  159. nautobot/project-static/docs/development/apps/api/models/graphql.html +127 -71
  160. nautobot/project-static/docs/development/apps/api/models/index.html +127 -71
  161. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +127 -71
  162. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +127 -71
  163. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +127 -71
  164. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +127 -71
  165. nautobot/project-static/docs/development/apps/api/platform-features/index.html +127 -71
  166. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +127 -71
  167. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +127 -71
  168. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +127 -71
  169. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +127 -71
  170. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +127 -71
  171. nautobot/project-static/docs/development/apps/api/prometheus.html +127 -71
  172. nautobot/project-static/docs/development/apps/api/setup.html +127 -71
  173. nautobot/project-static/docs/development/apps/api/testing.html +127 -71
  174. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +127 -71
  175. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +127 -71
  176. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +127 -71
  177. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +127 -71
  178. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +127 -71
  179. nautobot/project-static/docs/development/apps/api/views/base-template.html +127 -71
  180. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +141 -80
  181. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +144 -83
  182. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +127 -71
  183. nautobot/project-static/docs/development/apps/api/views/index.html +127 -71
  184. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +127 -71
  185. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +127 -71
  186. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +127 -71
  187. nautobot/project-static/docs/development/apps/api/views/notes.html +127 -71
  188. nautobot/project-static/docs/development/apps/api/views/rest-api.html +127 -71
  189. nautobot/project-static/docs/development/apps/api/views/urls.html +127 -71
  190. nautobot/project-static/docs/development/apps/index.html +127 -71
  191. nautobot/project-static/docs/development/apps/migration/code-updates.html +127 -71
  192. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +127 -71
  193. nautobot/project-static/docs/development/apps/migration/from-v1.html +127 -71
  194. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +127 -71
  195. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +127 -71
  196. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +127 -71
  197. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +127 -71
  198. nautobot/project-static/docs/development/apps/porting-from-netbox.html +127 -71
  199. nautobot/project-static/docs/development/core/application-registry.html +127 -71
  200. nautobot/project-static/docs/development/core/best-practices.html +145 -79
  201. nautobot/project-static/docs/development/core/bootstrap-ui.html +127 -71
  202. nautobot/project-static/docs/development/core/caching.html +127 -71
  203. nautobot/project-static/docs/development/core/controllers.html +141 -275
  204. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +127 -71
  205. nautobot/project-static/docs/development/core/extending-models.html +13 -8166
  206. nautobot/project-static/docs/development/core/generic-views.html +142 -86
  207. nautobot/project-static/docs/development/core/getting-started.html +146 -81
  208. nautobot/project-static/docs/development/core/homepage.html +145 -89
  209. nautobot/project-static/docs/development/core/index.html +127 -71
  210. nautobot/project-static/docs/development/core/model-checklist.html +8354 -0
  211. nautobot/project-static/docs/development/core/model-features.html +130 -74
  212. nautobot/project-static/docs/development/core/natural-keys.html +127 -71
  213. nautobot/project-static/docs/development/core/navigation-menu.html +127 -71
  214. nautobot/project-static/docs/development/core/release-checklist.html +127 -71
  215. nautobot/project-static/docs/development/core/role-internals.html +127 -71
  216. nautobot/project-static/docs/development/core/settings.html +127 -71
  217. nautobot/project-static/docs/development/core/style-guide.html +127 -71
  218. nautobot/project-static/docs/development/core/templates.html +127 -71
  219. nautobot/project-static/docs/development/core/testing.html +127 -71
  220. nautobot/project-static/docs/development/core/user-preferences.html +127 -71
  221. nautobot/project-static/docs/development/extending-models.html +3 -3
  222. nautobot/project-static/docs/development/index.html +127 -71
  223. nautobot/project-static/docs/development/jobs/index.html +128 -72
  224. nautobot/project-static/docs/development/jobs/migration/from-v1.html +127 -71
  225. nautobot/project-static/docs/index.html +126 -73
  226. nautobot/project-static/docs/models/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +3 -3
  227. nautobot/project-static/docs/objects.inv +0 -0
  228. nautobot/project-static/docs/release-notes/index.html +127 -71
  229. nautobot/project-static/docs/release-notes/version-1.0.html +127 -71
  230. nautobot/project-static/docs/release-notes/version-1.1.html +127 -71
  231. nautobot/project-static/docs/release-notes/version-1.2.html +127 -71
  232. nautobot/project-static/docs/release-notes/version-1.3.html +127 -71
  233. nautobot/project-static/docs/release-notes/version-1.4.html +127 -71
  234. nautobot/project-static/docs/release-notes/version-1.5.html +127 -71
  235. nautobot/project-static/docs/release-notes/version-1.6.html +127 -71
  236. nautobot/project-static/docs/release-notes/version-2.0.html +127 -71
  237. nautobot/project-static/docs/release-notes/version-2.1.html +538 -254
  238. nautobot/project-static/docs/release-notes/version-2.2.html +520 -101
  239. nautobot/project-static/docs/requirements.txt +3 -3
  240. nautobot/project-static/docs/search/search_index.json +1 -1
  241. nautobot/project-static/docs/sitemap.xml +264 -259
  242. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  243. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +127 -71
  244. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +127 -71
  245. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +127 -71
  246. nautobot/project-static/docs/user-guide/administration/configuration/index.html +127 -71
  247. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +192 -71
  248. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +127 -71
  249. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +127 -71
  250. nautobot/project-static/docs/user-guide/administration/guides/caching.html +127 -71
  251. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +127 -71
  252. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +127 -71
  253. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +127 -71
  254. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +131 -71
  255. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +127 -71
  256. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +127 -71
  257. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +130 -74
  258. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +127 -71
  259. nautobot/project-static/docs/user-guide/administration/installation/docker.html +134 -74
  260. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +127 -71
  261. nautobot/project-static/docs/user-guide/administration/installation/health-checks.html +8616 -0
  262. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +127 -71
  263. nautobot/project-static/docs/user-guide/administration/installation/index.html +127 -71
  264. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +127 -71
  265. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +127 -71
  266. nautobot/project-static/docs/user-guide/administration/installation/selinux-troubleshooting.html +130 -74
  267. nautobot/project-static/docs/user-guide/administration/installation/services.html +127 -71
  268. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +127 -71
  269. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +127 -71
  270. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +127 -71
  271. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +127 -71
  272. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +127 -71
  273. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +127 -71
  274. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +127 -71
  275. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +127 -71
  276. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +127 -71
  277. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +127 -71
  278. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +127 -71
  279. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +127 -71
  280. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +127 -71
  281. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +127 -71
  282. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +127 -71
  283. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +127 -71
  284. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +127 -71
  285. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +127 -71
  286. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +127 -71
  287. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +127 -71
  288. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +127 -71
  289. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +127 -71
  290. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +127 -71
  291. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +362 -79
  292. nautobot/project-static/docs/user-guide/core-data-model/dcim/{controllerdevicegroup.html → controllermanageddevicegroup.html} +210 -85
  293. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +127 -71
  294. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +127 -71
  295. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +127 -71
  296. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +127 -71
  297. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +127 -71
  298. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +127 -71
  299. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +127 -71
  300. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +127 -71
  301. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +127 -71
  302. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +127 -71
  303. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +127 -71
  304. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +127 -71
  305. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +127 -71
  306. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +127 -71
  307. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +127 -71
  308. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +127 -71
  309. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +127 -71
  310. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +127 -71
  311. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +127 -71
  312. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +127 -71
  313. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +127 -71
  314. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +127 -71
  315. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +127 -71
  316. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +127 -71
  317. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +127 -71
  318. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +127 -71
  319. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +127 -71
  320. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +127 -71
  321. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +127 -71
  322. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +127 -71
  323. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +130 -74
  324. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +127 -71
  325. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +138 -71
  326. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +138 -71
  327. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +127 -71
  328. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +127 -71
  329. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +127 -71
  330. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +127 -71
  331. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +127 -71
  332. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +127 -71
  333. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +127 -71
  334. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +127 -71
  335. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +127 -71
  336. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +127 -71
  337. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +127 -71
  338. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +127 -71
  339. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +127 -71
  340. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +127 -71
  341. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +127 -71
  342. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +127 -71
  343. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +127 -71
  344. nautobot/project-static/docs/user-guide/feature-guides/{contact-and-team.html → contacts-and-teams.html} +128 -72
  345. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +129 -73
  346. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +127 -71
  347. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +127 -71
  348. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +127 -71
  349. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +127 -71
  350. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +127 -71
  351. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +127 -71
  352. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +129 -73
  353. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +127 -71
  354. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +127 -71
  355. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +127 -71
  356. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +127 -71
  357. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +127 -71
  358. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +127 -71
  359. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +127 -71
  360. nautobot/project-static/docs/user-guide/index.html +127 -71
  361. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +127 -71
  362. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +127 -71
  363. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +127 -71
  364. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +127 -71
  365. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +127 -71
  366. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +127 -71
  367. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +127 -71
  368. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +127 -71
  369. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +127 -71
  370. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +127 -71
  371. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +127 -71
  372. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +127 -71
  373. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +127 -71
  374. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +127 -71
  375. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +127 -71
  376. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +127 -71
  377. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +127 -71
  378. nautobot/project-static/docs/user-guide/platform-functionality/note.html +127 -71
  379. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +127 -71
  380. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +127 -71
  381. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +127 -71
  382. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +127 -71
  383. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +127 -71
  384. nautobot/project-static/docs/user-guide/platform-functionality/role.html +127 -71
  385. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +127 -71
  386. nautobot/project-static/docs/user-guide/platform-functionality/status.html +127 -71
  387. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +127 -71
  388. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +127 -71
  389. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +127 -71
  390. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +127 -71
  391. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +127 -71
  392. nautobot/project-static/jquery/jquery-3.7.1.min.js +2 -0
  393. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_444444_256x240.png +0 -0
  394. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_555555_256x240.png +0 -0
  395. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777620_256x240.png +0 -0
  396. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_777777_256x240.png +0 -0
  397. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_cc0000_256x240.png +0 -0
  398. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/images/ui-icons_ffffff_256x240.png +0 -0
  399. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.css +7 -0
  400. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.min.js +6 -0
  401. nautobot/project-static/jquery-ui-1.13.2/jquery-ui.structure.min.css +5 -0
  402. nautobot/project-static/{jquery-ui-1.13.1 → jquery-ui-1.13.2}/jquery-ui.theme.min.css +1 -1
  403. nautobot/tenancy/api/urls.py +1 -2
  404. nautobot/tenancy/api/views.py +0 -12
  405. nautobot/tenancy/tables.py +1 -1
  406. nautobot/tenancy/tests/test_views.py +1 -0
  407. nautobot/users/api/urls.py +1 -2
  408. nautobot/users/api/views.py +2 -65
  409. nautobot/users/views.py +8 -8
  410. nautobot/virtualization/api/urls.py +1 -2
  411. nautobot/virtualization/api/views.py +0 -12
  412. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/METADATA +24 -24
  413. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/RECORD +418 -412
  414. nautobot/dcim/templates/dcim/controllerdevicegroup_create.html +0 -43
  415. nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css +0 -1
  416. nautobot/project-static/docs/assets/stylesheets/main.f2e4d321.min.css.map +0 -1
  417. nautobot/project-static/jquery/jquery-3.6.0.min.js +0 -2
  418. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.css +0 -7
  419. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.min.js +0 -6
  420. nautobot/project-static/jquery-ui-1.13.1/jquery-ui.structure.min.css +0 -5
  421. /nautobot/dcim/templates/dcim/{controllerdevicegroup_retrieve.html → controllermanageddevicegroup_retrieve.html} +0 -0
  422. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/LICENSE.txt +0 -0
  423. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/NOTICE +0 -0
  424. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/WHEEL +0 -0
  425. {nautobot-2.2.0b1.dist-info → nautobot-2.2.1.dist-info}/entry_points.txt +0 -0
@@ -16,7 +16,7 @@
16
16
 
17
17
 
18
18
  <link rel="icon" href="assets/favicon.ico">
19
- <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.8">
19
+ <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.16">
20
20
 
21
21
 
22
22
 
@@ -24,7 +24,7 @@
24
24
 
25
25
 
26
26
 
27
- <link rel="stylesheet" href="assets/stylesheets/main.f2e4d321.min.css">
27
+ <link rel="stylesheet" href="assets/stylesheets/main.bcfcd587.min.css">
28
28
 
29
29
 
30
30
  <link rel="stylesheet" href="assets/stylesheets/palette.06af60db.min.css">
@@ -577,16 +577,14 @@
577
577
 
578
578
 
579
579
 
580
-
581
-
582
580
 
583
581
 
584
582
 
585
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
583
+
584
+ <li class="md-nav__item md-nav__item--nested">
586
585
 
587
586
 
588
587
 
589
-
590
588
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" >
591
589
 
592
590
 
@@ -603,7 +601,7 @@
603
601
  </a>
604
602
 
605
603
 
606
- <label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="">
604
+ <label class="md-nav__link " for="__nav_2" id="__nav_2_label" tabindex="0">
607
605
  <span class="md-nav__icon md-icon"></span>
608
606
  </label>
609
607
 
@@ -625,13 +623,14 @@
625
623
 
626
624
 
627
625
 
626
+
627
+
628
628
 
629
629
 
630
630
  <li class="md-nav__item md-nav__item--nested">
631
631
 
632
632
 
633
633
 
634
-
635
634
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1" >
636
635
 
637
636
 
@@ -662,13 +661,14 @@
662
661
 
663
662
 
664
663
 
664
+
665
+
665
666
 
666
667
 
667
668
  <li class="md-nav__item md-nav__item--nested">
668
669
 
669
670
 
670
671
 
671
-
672
672
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_1" >
673
673
 
674
674
 
@@ -864,6 +864,27 @@
864
864
 
865
865
 
866
866
 
867
+ <li class="md-nav__item">
868
+ <a href="user-guide/administration/installation/health-checks.html" class="md-nav__link">
869
+
870
+
871
+ <span class="md-ellipsis">
872
+ Health Checks
873
+ </span>
874
+
875
+
876
+ </a>
877
+ </li>
878
+
879
+
880
+
881
+
882
+
883
+
884
+
885
+
886
+
887
+
867
888
  <li class="md-nav__item">
868
889
  <a href="user-guide/administration/installation/selinux-troubleshooting.html" class="md-nav__link">
869
890
 
@@ -896,13 +917,14 @@
896
917
 
897
918
 
898
919
 
920
+
921
+
899
922
 
900
923
 
901
924
  <li class="md-nav__item md-nav__item--nested">
902
925
 
903
926
 
904
927
 
905
-
906
928
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2" >
907
929
 
908
930
 
@@ -975,13 +997,14 @@
975
997
 
976
998
 
977
999
 
1000
+
1001
+
978
1002
 
979
1003
 
980
1004
  <li class="md-nav__item md-nav__item--nested">
981
1005
 
982
1006
 
983
1007
 
984
-
985
1008
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3" >
986
1009
 
987
1010
 
@@ -1041,13 +1064,14 @@
1041
1064
 
1042
1065
 
1043
1066
 
1067
+
1068
+
1044
1069
 
1045
1070
 
1046
1071
  <li class="md-nav__item md-nav__item--nested">
1047
1072
 
1048
1073
 
1049
1074
 
1050
-
1051
1075
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2" >
1052
1076
 
1053
1077
 
@@ -1194,13 +1218,14 @@
1194
1218
 
1195
1219
 
1196
1220
 
1221
+
1222
+
1197
1223
 
1198
1224
 
1199
1225
  <li class="md-nav__item md-nav__item--nested">
1200
1226
 
1201
1227
 
1202
1228
 
1203
-
1204
1229
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_3" >
1205
1230
 
1206
1231
 
@@ -1281,13 +1306,14 @@
1281
1306
 
1282
1307
 
1283
1308
 
1309
+
1310
+
1284
1311
 
1285
1312
 
1286
1313
  <li class="md-nav__item md-nav__item--nested">
1287
1314
 
1288
1315
 
1289
1316
 
1290
-
1291
1317
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4" >
1292
1318
 
1293
1319
 
@@ -1389,13 +1415,14 @@
1389
1415
 
1390
1416
 
1391
1417
 
1418
+
1419
+
1392
1420
 
1393
1421
 
1394
1422
  <li class="md-nav__item md-nav__item--nested">
1395
1423
 
1396
1424
 
1397
1425
 
1398
-
1399
1426
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_4_4" >
1400
1427
 
1401
1428
 
@@ -1505,13 +1532,14 @@
1505
1532
 
1506
1533
 
1507
1534
 
1535
+
1536
+
1508
1537
 
1509
1538
 
1510
1539
  <li class="md-nav__item md-nav__item--nested">
1511
1540
 
1512
1541
 
1513
1542
 
1514
-
1515
1543
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_5" >
1516
1544
 
1517
1545
 
@@ -1592,13 +1620,14 @@
1592
1620
 
1593
1621
 
1594
1622
 
1623
+
1624
+
1595
1625
 
1596
1626
 
1597
1627
  <li class="md-nav__item md-nav__item--nested">
1598
1628
 
1599
1629
 
1600
1630
 
1601
-
1602
1631
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_6" >
1603
1632
 
1604
1633
 
@@ -1813,13 +1842,14 @@
1813
1842
 
1814
1843
 
1815
1844
 
1845
+
1846
+
1816
1847
 
1817
1848
 
1818
1849
  <li class="md-nav__item md-nav__item--nested">
1819
1850
 
1820
1851
 
1821
1852
 
1822
-
1823
1853
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2" >
1824
1854
 
1825
1855
 
@@ -1850,13 +1880,14 @@
1850
1880
 
1851
1881
 
1852
1882
 
1883
+
1884
+
1853
1885
 
1854
1886
 
1855
1887
  <li class="md-nav__item md-nav__item--nested">
1856
1888
 
1857
1889
 
1858
1890
 
1859
-
1860
1891
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_2_1" >
1861
1892
 
1862
1893
 
@@ -2069,7 +2100,7 @@
2069
2100
 
2070
2101
 
2071
2102
  <li class="md-nav__item">
2072
- <a href="user-guide/feature-guides/contact-and-team.html" class="md-nav__link">
2103
+ <a href="user-guide/feature-guides/contacts-and-teams.html" class="md-nav__link">
2073
2104
 
2074
2105
 
2075
2106
  <span class="md-ellipsis">
@@ -2226,13 +2257,14 @@
2226
2257
 
2227
2258
 
2228
2259
 
2260
+
2261
+
2229
2262
 
2230
2263
 
2231
2264
  <li class="md-nav__item md-nav__item--nested">
2232
2265
 
2233
2266
 
2234
2267
 
2235
-
2236
2268
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3" >
2237
2269
 
2238
2270
 
@@ -2263,13 +2295,14 @@
2263
2295
 
2264
2296
 
2265
2297
 
2298
+
2299
+
2266
2300
 
2267
2301
 
2268
2302
  <li class="md-nav__item md-nav__item--nested">
2269
2303
 
2270
2304
 
2271
2305
 
2272
-
2273
2306
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_1" >
2274
2307
 
2275
2308
 
@@ -2329,13 +2362,14 @@
2329
2362
 
2330
2363
 
2331
2364
 
2365
+
2366
+
2332
2367
 
2333
2368
 
2334
2369
  <li class="md-nav__item md-nav__item--nested">
2335
2370
 
2336
2371
 
2337
2372
 
2338
-
2339
2373
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_2" >
2340
2374
 
2341
2375
 
@@ -2479,13 +2513,14 @@
2479
2513
 
2480
2514
 
2481
2515
 
2516
+
2517
+
2482
2518
 
2483
2519
 
2484
2520
  <li class="md-nav__item md-nav__item--nested">
2485
2521
 
2486
2522
 
2487
2523
 
2488
-
2489
2524
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3" >
2490
2525
 
2491
2526
 
@@ -2663,13 +2698,14 @@
2663
2698
 
2664
2699
 
2665
2700
 
2701
+
2702
+
2666
2703
 
2667
2704
 
2668
2705
  <li class="md-nav__item md-nav__item--nested">
2669
2706
 
2670
2707
 
2671
2708
 
2672
-
2673
2709
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_8" >
2674
2710
 
2675
2711
 
@@ -2884,13 +2920,14 @@
2884
2920
 
2885
2921
 
2886
2922
 
2923
+
2924
+
2887
2925
 
2888
2926
 
2889
2927
  <li class="md-nav__item md-nav__item--nested">
2890
2928
 
2891
2929
 
2892
2930
 
2893
-
2894
2931
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_3_9" >
2895
2932
 
2896
2933
 
@@ -3334,11 +3371,11 @@
3334
3371
 
3335
3372
 
3336
3373
  <li class="md-nav__item">
3337
- <a href="user-guide/core-data-model/dcim/controllerdevicegroup.html" class="md-nav__link">
3374
+ <a href="user-guide/core-data-model/dcim/controllermanageddevicegroup.html" class="md-nav__link">
3338
3375
 
3339
3376
 
3340
3377
  <span class="md-ellipsis">
3341
- Controller Device Group
3378
+ Controller Managed Device Group
3342
3379
  </span>
3343
3380
 
3344
3381
 
@@ -3365,13 +3402,14 @@
3365
3402
 
3366
3403
 
3367
3404
 
3405
+
3406
+
3368
3407
 
3369
3408
 
3370
3409
  <li class="md-nav__item md-nav__item--nested">
3371
3410
 
3372
3411
 
3373
3412
 
3374
-
3375
3413
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_4" >
3376
3414
 
3377
3415
 
@@ -3494,13 +3532,14 @@
3494
3532
 
3495
3533
 
3496
3534
 
3535
+
3536
+
3497
3537
 
3498
3538
 
3499
3539
  <li class="md-nav__item md-nav__item--nested">
3500
3540
 
3501
3541
 
3502
3542
 
3503
-
3504
3543
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_5" >
3505
3544
 
3506
3545
 
@@ -3728,13 +3767,14 @@
3728
3767
 
3729
3768
 
3730
3769
 
3770
+
3771
+
3731
3772
 
3732
3773
 
3733
3774
  <li class="md-nav__item md-nav__item--nested">
3734
3775
 
3735
3776
 
3736
3777
 
3737
-
3738
3778
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_6" >
3739
3779
 
3740
3780
 
@@ -3815,13 +3855,14 @@
3815
3855
 
3816
3856
 
3817
3857
 
3858
+
3859
+
3818
3860
 
3819
3861
 
3820
3862
  <li class="md-nav__item md-nav__item--nested">
3821
3863
 
3822
3864
 
3823
3865
 
3824
-
3825
3866
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_3_7" >
3826
3867
 
3827
3868
 
@@ -3973,13 +4014,14 @@
3973
4014
 
3974
4015
 
3975
4016
 
4017
+
4018
+
3976
4019
 
3977
4020
 
3978
4021
  <li class="md-nav__item md-nav__item--nested">
3979
4022
 
3980
4023
 
3981
4024
 
3982
-
3983
4025
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" >
3984
4026
 
3985
4027
 
@@ -4178,13 +4220,14 @@
4178
4220
 
4179
4221
 
4180
4222
 
4223
+
4224
+
4181
4225
 
4182
4226
 
4183
4227
  <li class="md-nav__item md-nav__item--nested">
4184
4228
 
4185
4229
 
4186
4230
 
4187
-
4188
4231
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_9" >
4189
4232
 
4190
4233
 
@@ -4273,13 +4316,14 @@
4273
4316
 
4274
4317
 
4275
4318
 
4319
+
4320
+
4276
4321
 
4277
4322
 
4278
4323
  <li class="md-nav__item md-nav__item--nested">
4279
4324
 
4280
4325
 
4281
4326
 
4282
-
4283
4327
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_11" >
4284
4328
 
4285
4329
 
@@ -4473,13 +4517,14 @@
4473
4517
 
4474
4518
 
4475
4519
 
4520
+
4521
+
4476
4522
 
4477
4523
 
4478
4524
  <li class="md-nav__item md-nav__item--nested">
4479
4525
 
4480
4526
 
4481
4527
 
4482
-
4483
4528
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_15" >
4484
4529
 
4485
4530
 
@@ -4694,13 +4739,14 @@
4694
4739
 
4695
4740
 
4696
4741
 
4742
+
4743
+
4697
4744
 
4698
4745
 
4699
4746
  <li class="md-nav__item md-nav__item--nested">
4700
4747
 
4701
4748
 
4702
4749
 
4703
-
4704
4750
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4_21" >
4705
4751
 
4706
4752
 
@@ -4817,16 +4863,14 @@
4817
4863
 
4818
4864
 
4819
4865
 
4820
-
4821
-
4822
4866
 
4823
4867
 
4824
4868
 
4825
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
4869
+
4870
+ <li class="md-nav__item md-nav__item--nested">
4826
4871
 
4827
4872
 
4828
4873
 
4829
-
4830
4874
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3" >
4831
4875
 
4832
4876
 
@@ -4843,7 +4887,7 @@
4843
4887
  </a>
4844
4888
 
4845
4889
 
4846
- <label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="">
4890
+ <label class="md-nav__link " for="__nav_3" id="__nav_3_label" tabindex="0">
4847
4891
  <span class="md-nav__icon md-icon"></span>
4848
4892
  </label>
4849
4893
 
@@ -4865,13 +4909,14 @@
4865
4909
 
4866
4910
 
4867
4911
 
4912
+
4913
+
4868
4914
 
4869
4915
 
4870
4916
  <li class="md-nav__item md-nav__item--nested">
4871
4917
 
4872
4918
 
4873
4919
 
4874
-
4875
4920
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_1" >
4876
4921
 
4877
4922
 
@@ -4939,13 +4984,14 @@
4939
4984
 
4940
4985
 
4941
4986
 
4987
+
4988
+
4942
4989
 
4943
4990
 
4944
4991
  <li class="md-nav__item md-nav__item--nested">
4945
4992
 
4946
4993
 
4947
4994
 
4948
-
4949
4995
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2" >
4950
4996
 
4951
4997
 
@@ -5026,13 +5072,14 @@
5026
5072
 
5027
5073
 
5028
5074
 
5075
+
5076
+
5029
5077
 
5030
5078
 
5031
5079
  <li class="md-nav__item md-nav__item--nested">
5032
5080
 
5033
5081
 
5034
5082
 
5035
-
5036
5083
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_3" >
5037
5084
 
5038
5085
 
@@ -5142,13 +5189,14 @@
5142
5189
 
5143
5190
 
5144
5191
 
5192
+
5193
+
5145
5194
 
5146
5195
 
5147
5196
  <li class="md-nav__item md-nav__item--nested">
5148
5197
 
5149
5198
 
5150
5199
 
5151
-
5152
5200
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4" >
5153
5201
 
5154
5202
 
@@ -5334,13 +5382,14 @@
5334
5382
 
5335
5383
 
5336
5384
 
5385
+
5386
+
5337
5387
 
5338
5388
 
5339
5389
  <li class="md-nav__item md-nav__item--nested">
5340
5390
 
5341
5391
 
5342
5392
 
5343
-
5344
5393
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_4_8" >
5345
5394
 
5346
5395
 
@@ -5450,13 +5499,14 @@
5450
5499
 
5451
5500
 
5452
5501
 
5502
+
5503
+
5453
5504
 
5454
5505
 
5455
5506
  <li class="md-nav__item md-nav__item--nested">
5456
5507
 
5457
5508
 
5458
5509
 
5459
-
5460
5510
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_5" >
5461
5511
 
5462
5512
 
@@ -5713,13 +5763,14 @@
5713
5763
 
5714
5764
 
5715
5765
 
5766
+
5767
+
5716
5768
 
5717
5769
 
5718
5770
  <li class="md-nav__item md-nav__item--nested">
5719
5771
 
5720
5772
 
5721
5773
 
5722
-
5723
5774
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_6" >
5724
5775
 
5725
5776
 
@@ -5892,13 +5943,14 @@
5892
5943
 
5893
5944
 
5894
5945
 
5946
+
5947
+
5895
5948
 
5896
5949
 
5897
5950
  <li class="md-nav__item md-nav__item--nested">
5898
5951
 
5899
5952
 
5900
5953
 
5901
-
5902
5954
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_8" >
5903
5955
 
5904
5956
 
@@ -6420,13 +6472,14 @@
6420
6472
 
6421
6473
 
6422
6474
 
6475
+
6476
+
6423
6477
 
6424
6478
 
6425
6479
  <li class="md-nav__item md-nav__item--nested">
6426
6480
 
6427
6481
 
6428
6482
 
6429
-
6430
6483
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9" >
6431
6484
 
6432
6485
 
@@ -6520,13 +6573,14 @@
6520
6573
 
6521
6574
 
6522
6575
 
6576
+
6577
+
6523
6578
 
6524
6579
 
6525
6580
  <li class="md-nav__item md-nav__item--nested">
6526
6581
 
6527
6582
 
6528
6583
 
6529
-
6530
6584
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_9_4" >
6531
6585
 
6532
6586
 
@@ -6657,13 +6711,14 @@
6657
6711
 
6658
6712
 
6659
6713
 
6714
+
6715
+
6660
6716
 
6661
6717
 
6662
6718
  <li class="md-nav__item md-nav__item--nested">
6663
6719
 
6664
6720
 
6665
6721
 
6666
-
6667
6722
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_2_10" >
6668
6723
 
6669
6724
 
@@ -6731,13 +6786,14 @@
6731
6786
 
6732
6787
 
6733
6788
 
6789
+
6790
+
6734
6791
 
6735
6792
 
6736
6793
  <li class="md-nav__item md-nav__item--nested">
6737
6794
 
6738
6795
 
6739
6796
 
6740
-
6741
6797
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_3_3" >
6742
6798
 
6743
6799
 
@@ -6942,11 +6998,11 @@
6942
6998
 
6943
6999
 
6944
7000
  <li class="md-nav__item">
6945
- <a href="development/core/extending-models.html" class="md-nav__link">
7001
+ <a href="development/core/generic-views.html" class="md-nav__link">
6946
7002
 
6947
7003
 
6948
7004
  <span class="md-ellipsis">
6949
- Extending Models
7005
+ Generic Views
6950
7006
  </span>
6951
7007
 
6952
7008
 
@@ -6963,11 +7019,11 @@
6963
7019
 
6964
7020
 
6965
7021
  <li class="md-nav__item">
6966
- <a href="development/core/generic-views.html" class="md-nav__link">
7022
+ <a href="development/core/homepage.html" class="md-nav__link">
6967
7023
 
6968
7024
 
6969
7025
  <span class="md-ellipsis">
6970
- Generic Views
7026
+ Home Page Panels
6971
7027
  </span>
6972
7028
 
6973
7029
 
@@ -6984,11 +7040,11 @@
6984
7040
 
6985
7041
 
6986
7042
  <li class="md-nav__item">
6987
- <a href="development/core/homepage.html" class="md-nav__link">
7043
+ <a href="development/core/model-checklist.html" class="md-nav__link">
6988
7044
 
6989
7045
 
6990
7046
  <span class="md-ellipsis">
6991
- Home Page Panels
7047
+ Model Development Checklist
6992
7048
  </span>
6993
7049
 
6994
7050
 
@@ -7211,16 +7267,14 @@
7211
7267
 
7212
7268
 
7213
7269
 
7214
-
7215
-
7216
7270
 
7217
7271
 
7218
7272
 
7219
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
7273
+
7274
+ <li class="md-nav__item md-nav__item--nested">
7220
7275
 
7221
7276
 
7222
7277
 
7223
-
7224
7278
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_4" >
7225
7279
 
7226
7280
 
@@ -7237,7 +7291,7 @@
7237
7291
  </a>
7238
7292
 
7239
7293
 
7240
- <label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="">
7294
+ <label class="md-nav__link " for="__nav_4" id="__nav_4_label" tabindex="0">
7241
7295
  <span class="md-nav__icon md-icon"></span>
7242
7296
  </label>
7243
7297
 
@@ -7476,16 +7530,14 @@
7476
7530
 
7477
7531
 
7478
7532
 
7479
-
7480
-
7481
7533
 
7482
7534
 
7483
7535
 
7484
- <li class="md-nav__item md-nav__item--section md-nav__item--nested">
7536
+
7537
+ <li class="md-nav__item md-nav__item--nested">
7485
7538
 
7486
7539
 
7487
7540
 
7488
-
7489
7541
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5" >
7490
7542
 
7491
7543
 
@@ -7502,7 +7554,7 @@
7502
7554
  </a>
7503
7555
 
7504
7556
 
7505
- <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="">
7557
+ <label class="md-nav__link " for="__nav_5" id="__nav_5_label" tabindex="0">
7506
7558
  <span class="md-nav__icon md-icon"></span>
7507
7559
  </label>
7508
7560
 
@@ -7524,13 +7576,14 @@
7524
7576
 
7525
7577
 
7526
7578
 
7579
+
7580
+
7527
7581
 
7528
7582
 
7529
7583
  <li class="md-nav__item md-nav__item--nested">
7530
7584
 
7531
7585
 
7532
7586
 
7533
-
7534
7587
  <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_5_1" >
7535
7588
 
7536
7589
 
@@ -8246,9 +8299,9 @@
8246
8299
  <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>
8247
8300
 
8248
8301
 
8249
- <script src="assets/javascripts/bundle.8fd75fb4.min.js"></script>
8302
+ <script src="assets/javascripts/bundle.bd41221c.min.js"></script>
8250
8303
 
8251
- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
8304
+ <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
8252
8305
 
8253
8306
 
8254
8307
  </body>