nautobot 3.0.4__py3-none-any.whl → 3.0.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (363) hide show
  1. nautobot/core/tables.py +28 -17
  2. nautobot/core/templates/graphene/graphiql.html +3 -5
  3. nautobot/core/templates/inc/javascript.html +5 -10
  4. nautobot/core/templates/inc/media.html +5 -4
  5. nautobot/core/templates/inc/media_failure.html +73 -0
  6. nautobot/core/templates/media_failure.html +1 -0
  7. nautobot/core/tests/test_templatetags_helpers.py +9 -9
  8. nautobot/core/ui/object_detail.py +1 -0
  9. nautobot/dcim/tables/devices.py +4 -4
  10. nautobot/dcim/tables/template_code.py +8 -4
  11. nautobot/dcim/tests/test_tables.py +5 -6
  12. nautobot/dcim/views.py +6 -7
  13. nautobot/extras/tables.py +3 -3
  14. nautobot/extras/templates/extras/inc/jobresult_js.html +1 -2
  15. nautobot/extras/templates/extras/scheduledjob.html +3 -1
  16. nautobot/extras/tests/test_customfields.py +75 -9
  17. nautobot/ipam/filters.py +58 -3
  18. nautobot/ipam/tables.py +8 -4
  19. nautobot/ipam/tests/test_filters.py +55 -0
  20. nautobot/project-static/dist/css/nautobot.css +1 -1
  21. nautobot/project-static/dist/css/nautobot.css.map +1 -1
  22. nautobot/project-static/docs/404.html +64 -8
  23. nautobot/project-static/docs/apps/index.html +64 -8
  24. nautobot/project-static/docs/apps/nautobot-apps.html +64 -8
  25. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +64 -8
  26. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +64 -8
  27. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +64 -8
  28. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +64 -8
  29. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +64 -8
  30. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +64 -8
  31. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +64 -8
  32. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +64 -8
  33. nautobot/project-static/docs/code-reference/nautobot/apps/events.html +64 -8
  34. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +64 -8
  35. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +64 -8
  36. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +64 -8
  37. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +64 -8
  38. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +64 -8
  39. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +64 -8
  40. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +64 -8
  41. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +64 -8
  42. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +64 -8
  43. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +64 -8
  44. nautobot/project-static/docs/code-reference/nautobot/apps/templatetags.html +64 -8
  45. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +64 -8
  46. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +64 -8
  47. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +64 -8
  48. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +64 -8
  49. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +64 -8
  50. nautobot/project-static/docs/development/apps/api/configuration-view.html +64 -8
  51. nautobot/project-static/docs/development/apps/api/database-backend-config.html +64 -8
  52. nautobot/project-static/docs/development/apps/api/models/django-admin.html +67 -11
  53. nautobot/project-static/docs/development/apps/api/models/global-search.html +64 -8
  54. nautobot/project-static/docs/development/apps/api/models/graphql.html +64 -8
  55. nautobot/project-static/docs/development/apps/api/models/index.html +64 -8
  56. nautobot/project-static/docs/development/apps/api/models/queryset.html +13440 -0
  57. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +64 -8
  58. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +64 -8
  59. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +64 -8
  60. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +64 -8
  61. nautobot/project-static/docs/development/apps/api/platform-features/index.html +64 -8
  62. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +64 -8
  63. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +64 -8
  64. nautobot/project-static/docs/development/apps/api/platform-features/prepopulating-data.html +64 -8
  65. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +64 -8
  66. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +64 -8
  67. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +64 -8
  68. nautobot/project-static/docs/development/apps/api/prometheus.html +64 -8
  69. nautobot/project-static/docs/development/apps/api/setup.html +64 -8
  70. nautobot/project-static/docs/development/apps/api/testing.html +64 -8
  71. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +64 -8
  72. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +64 -8
  73. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +64 -8
  74. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +64 -8
  75. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +64 -8
  76. nautobot/project-static/docs/development/apps/api/views/base-template.html +64 -8
  77. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +64 -8
  78. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +64 -8
  79. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +64 -8
  80. nautobot/project-static/docs/development/apps/api/views/index.html +67 -11
  81. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +64 -8
  82. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +64 -8
  83. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +64 -8
  84. nautobot/project-static/docs/development/apps/api/views/notes.html +64 -8
  85. nautobot/project-static/docs/development/apps/api/views/rest-api.html +64 -8
  86. nautobot/project-static/docs/development/apps/api/views/urls.html +64 -8
  87. nautobot/project-static/docs/development/apps/index.html +64 -8
  88. nautobot/project-static/docs/development/apps/migration/code-updates.html +64 -8
  89. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +64 -8
  90. nautobot/project-static/docs/development/apps/migration/from-v1.html +64 -8
  91. nautobot/project-static/docs/development/apps/migration/from-v2/migrating-v2-to-v3.html +64 -8
  92. nautobot/project-static/docs/development/apps/migration/from-v2/new-nautobot-custom-ui-apis.html +64 -8
  93. nautobot/project-static/docs/development/apps/migration/from-v2/overview.html +68 -8
  94. nautobot/project-static/docs/development/apps/migration/from-v2/upgrading-from-bootstrap-v3-to-v5.html +64 -8
  95. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +64 -8
  96. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +64 -8
  97. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +64 -8
  98. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +64 -8
  99. nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +64 -8
  100. nautobot/project-static/docs/development/apps/migration/ui-component-framework/breadcrumbs-titles.html +64 -8
  101. nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +64 -8
  102. nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +64 -8
  103. nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +64 -8
  104. nautobot/project-static/docs/development/apps/porting-from-netbox.html +64 -8
  105. nautobot/project-static/docs/development/core/application-registry.html +64 -8
  106. nautobot/project-static/docs/development/core/best-practices.html +64 -8
  107. nautobot/project-static/docs/development/core/caching.html +64 -8
  108. nautobot/project-static/docs/development/core/controllers.html +64 -8
  109. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +64 -8
  110. nautobot/project-static/docs/development/core/docs-media-standards.html +64 -8
  111. nautobot/project-static/docs/development/core/generic-views.html +64 -8
  112. nautobot/project-static/docs/development/core/getting-started.html +64 -8
  113. nautobot/project-static/docs/development/core/homepage.html +64 -8
  114. nautobot/project-static/docs/development/core/index.html +64 -8
  115. nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +64 -8
  116. nautobot/project-static/docs/development/core/model-checklist.html +64 -8
  117. nautobot/project-static/docs/development/core/model-features.html +64 -8
  118. nautobot/project-static/docs/development/core/natural-keys.html +64 -8
  119. nautobot/project-static/docs/development/core/navigation-menu.html +64 -8
  120. nautobot/project-static/docs/development/core/release-checklist.html +64 -8
  121. nautobot/project-static/docs/development/core/role-internals.html +64 -8
  122. nautobot/project-static/docs/development/core/settings.html +64 -8
  123. nautobot/project-static/docs/development/core/style-guide.html +64 -8
  124. nautobot/project-static/docs/development/core/templates.html +64 -8
  125. nautobot/project-static/docs/development/core/testing.html +64 -8
  126. nautobot/project-static/docs/development/core/ui-best-practices.html +64 -8
  127. nautobot/project-static/docs/development/core/ui-component-framework.html +64 -8
  128. nautobot/project-static/docs/development/core/user-preferences.html +64 -8
  129. nautobot/project-static/docs/development/index.html +64 -8
  130. nautobot/project-static/docs/development/jobs/getting-started.html +64 -8
  131. nautobot/project-static/docs/development/jobs/index.html +64 -8
  132. nautobot/project-static/docs/development/jobs/installation.html +64 -8
  133. nautobot/project-static/docs/development/jobs/job-extensions.html +64 -8
  134. nautobot/project-static/docs/development/jobs/job-logging.html +64 -8
  135. nautobot/project-static/docs/development/jobs/job-patterns.html +64 -8
  136. nautobot/project-static/docs/development/jobs/job-structure.html +64 -8
  137. nautobot/project-static/docs/development/jobs/migration/from-v1.html +64 -8
  138. nautobot/project-static/docs/development/jobs/testing.html +64 -8
  139. nautobot/project-static/docs/index.html +64 -8
  140. nautobot/project-static/docs/overview/application_stack.html +64 -8
  141. nautobot/project-static/docs/overview/design_philosophy.html +64 -8
  142. nautobot/project-static/docs/release-notes/index.html +64 -8
  143. nautobot/project-static/docs/release-notes/version-1.0.html +64 -8
  144. nautobot/project-static/docs/release-notes/version-1.1.html +64 -8
  145. nautobot/project-static/docs/release-notes/version-1.2.html +65 -9
  146. nautobot/project-static/docs/release-notes/version-1.3.html +64 -8
  147. nautobot/project-static/docs/release-notes/version-1.4.html +64 -8
  148. nautobot/project-static/docs/release-notes/version-1.5.html +64 -8
  149. nautobot/project-static/docs/release-notes/version-1.6.html +64 -8
  150. nautobot/project-static/docs/release-notes/version-2.0.html +64 -8
  151. nautobot/project-static/docs/release-notes/version-2.1.html +64 -8
  152. nautobot/project-static/docs/release-notes/version-2.2.html +64 -8
  153. nautobot/project-static/docs/release-notes/version-2.3.html +64 -8
  154. nautobot/project-static/docs/release-notes/version-2.4.html +584 -8
  155. nautobot/project-static/docs/release-notes/version-3.0.html +232 -8
  156. nautobot/project-static/docs/search/search_index.json +1 -1
  157. nautobot/project-static/docs/sitemap.xml +337 -329
  158. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  159. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +64 -8
  160. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +64 -8
  161. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +64 -8
  162. nautobot/project-static/docs/user-guide/administration/configuration/index.html +64 -8
  163. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +64 -8
  164. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +64 -8
  165. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +64 -8
  166. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +64 -8
  167. nautobot/project-static/docs/user-guide/administration/guides/docker.html +64 -8
  168. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +64 -8
  169. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +64 -8
  170. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +64 -8
  171. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +64 -8
  172. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +64 -8
  173. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +64 -8
  174. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +64 -8
  175. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +64 -8
  176. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +64 -8
  177. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +72 -9
  178. nautobot/project-static/docs/user-guide/administration/installation/index.html +64 -8
  179. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +64 -8
  180. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +64 -8
  181. nautobot/project-static/docs/user-guide/administration/installation/services.html +64 -8
  182. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +65 -9
  183. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +64 -8
  184. nautobot/project-static/docs/user-guide/administration/security/index.html +64 -8
  185. nautobot/project-static/docs/user-guide/administration/security/notices.html +64 -8
  186. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +64 -8
  187. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +64 -8
  188. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +67 -11
  189. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +64 -8
  190. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +64 -8
  191. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +64 -8
  192. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +64 -8
  193. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +64 -8
  194. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +64 -8
  195. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +64 -8
  196. nautobot/project-static/docs/user-guide/administration/upgrading/from-v2/index.html +68 -8
  197. nautobot/project-static/docs/user-guide/administration/upgrading/postgresql.html +13391 -0
  198. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +125 -15
  199. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +64 -8
  200. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +64 -8
  201. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +64 -8
  202. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +64 -8
  203. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +64 -8
  204. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +64 -8
  205. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +64 -8
  206. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +64 -8
  207. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +64 -8
  208. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +64 -8
  209. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +64 -8
  210. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +64 -8
  211. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +64 -8
  212. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +64 -8
  213. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +64 -8
  214. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +64 -8
  215. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +64 -8
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +64 -8
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +64 -8
  218. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +64 -8
  219. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +64 -8
  220. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +64 -8
  221. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +64 -8
  222. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +64 -8
  223. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +64 -8
  224. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +64 -8
  225. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +64 -8
  226. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +64 -8
  227. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +64 -8
  228. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +64 -8
  229. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +64 -8
  230. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +64 -8
  231. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +64 -8
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +64 -8
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +64 -8
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +64 -8
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +64 -8
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulefamily.html +64 -8
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +64 -8
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +64 -8
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +64 -8
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +64 -8
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +64 -8
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +64 -8
  243. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +64 -8
  244. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +64 -8
  245. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +64 -8
  246. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +64 -8
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +64 -8
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +64 -8
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +64 -8
  250. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +64 -8
  251. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +64 -8
  252. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +64 -8
  253. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +64 -8
  254. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +64 -8
  255. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +64 -8
  256. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +64 -8
  257. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +64 -8
  258. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +64 -8
  259. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +64 -8
  260. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +64 -8
  261. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +64 -8
  262. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +64 -8
  263. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +64 -8
  264. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +64 -8
  265. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +64 -8
  266. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +64 -8
  267. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/certificateprofile.html +64 -8
  268. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/healthcheckmonitor.html +64 -8
  269. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/index.html +64 -8
  270. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/loadbalancerpool.html +64 -8
  271. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/loadbalancerpoolmember.html +64 -8
  272. nautobot/project-static/docs/user-guide/core-data-model/load-balancers/virtualserver.html +64 -8
  273. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +64 -8
  274. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +64 -8
  275. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +64 -8
  276. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +64 -8
  277. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +64 -8
  278. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +64 -8
  279. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +64 -8
  280. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +64 -8
  281. nautobot/project-static/docs/user-guide/core-data-model/vpn/index.html +64 -8
  282. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpn.html +64 -8
  283. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnphase1policy.html +64 -8
  284. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnphase2policy.html +64 -8
  285. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpnprofile.html +64 -8
  286. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpntunnel.html +64 -8
  287. nautobot/project-static/docs/user-guide/core-data-model/vpn/vpntunnelendpoint.html +64 -8
  288. nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +64 -8
  289. nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +64 -8
  290. nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +64 -8
  291. nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +64 -8
  292. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +64 -8
  293. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +64 -8
  294. nautobot/project-static/docs/user-guide/feature-guides/data-compliance.html +64 -8
  295. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +64 -8
  296. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +64 -8
  297. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +64 -8
  298. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +64 -8
  299. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +64 -8
  300. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +64 -8
  301. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +64 -8
  302. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +64 -8
  303. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +64 -8
  304. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +64 -8
  305. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +64 -8
  306. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +64 -8
  307. nautobot/project-static/docs/user-guide/feature-guides/load-balancers.html +64 -8
  308. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +64 -8
  309. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +64 -8
  310. nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +64 -8
  311. nautobot/project-static/docs/user-guide/index.html +64 -8
  312. nautobot/project-static/docs/user-guide/platform-functionality/approval-workflow.html +64 -8
  313. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +64 -8
  314. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +64 -8
  315. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +64 -8
  316. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +64 -8
  317. nautobot/project-static/docs/user-guide/platform-functionality/data-validation.html +64 -8
  318. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +64 -8
  319. nautobot/project-static/docs/user-guide/platform-functionality/echarts.html +64 -8
  320. nautobot/project-static/docs/user-guide/platform-functionality/events.html +64 -8
  321. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +64 -8
  322. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +64 -8
  323. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +64 -8
  324. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +64 -8
  325. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +64 -8
  326. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +64 -8
  327. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +64 -8
  328. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +64 -8
  329. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +64 -8
  330. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +64 -8
  331. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +64 -8
  332. nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +64 -8
  333. nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +64 -8
  334. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +64 -8
  335. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +64 -8
  336. nautobot/project-static/docs/user-guide/platform-functionality/note.html +64 -8
  337. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +64 -8
  338. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +64 -8
  339. nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +64 -8
  340. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +64 -8
  341. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +116 -34
  342. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +64 -8
  343. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +64 -8
  344. nautobot/project-static/docs/user-guide/platform-functionality/role.html +64 -8
  345. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +64 -8
  346. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +64 -8
  347. nautobot/project-static/docs/user-guide/platform-functionality/status.html +64 -8
  348. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +64 -8
  349. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +64 -8
  350. nautobot/project-static/docs/user-guide/platform-functionality/user-interface/configurablecolumns.html +64 -8
  351. nautobot/project-static/docs/user-guide/platform-functionality/user-interface/savedview.html +64 -8
  352. nautobot/project-static/docs/user-guide/platform-functionality/user-interface/search.html +64 -8
  353. nautobot/project-static/docs/user-guide/platform-functionality/users/groups.html +64 -8
  354. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +64 -8
  355. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +64 -8
  356. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +64 -8
  357. nautobot/ui/src/scss/nautobot.scss +2 -1
  358. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/METADATA +1 -1
  359. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/RECORD +363 -360
  360. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/LICENSE.txt +0 -0
  361. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/NOTICE +0 -0
  362. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/WHEEL +0 -0
  363. {nautobot-3.0.4.dist-info → nautobot-3.0.5.dist-info}/entry_points.txt +0 -0
@@ -976,6 +976,34 @@
976
976
 
977
977
 
978
978
 
979
+ <li class="md-nav__item">
980
+ <a href="../upgrading/postgresql.html" class="md-nav__link">
981
+
982
+
983
+
984
+ <span class="md-ellipsis">
985
+
986
+
987
+ Upgrading PostgreSQL
988
+
989
+
990
+
991
+ </span>
992
+
993
+
994
+
995
+ </a>
996
+ </li>
997
+
998
+
999
+
1000
+
1001
+
1002
+
1003
+
1004
+
1005
+
1006
+
979
1007
  <li class="md-nav__item">
980
1008
  <a href="../upgrading/upgrading.html" class="md-nav__link">
981
1009
 
@@ -1016,7 +1044,7 @@
1016
1044
 
1017
1045
 
1018
1046
 
1019
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3">
1047
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
1020
1048
 
1021
1049
 
1022
1050
  <div class="md-nav__link md-nav__container">
@@ -1038,14 +1066,14 @@
1038
1066
  </a>
1039
1067
 
1040
1068
 
1041
- <label class="md-nav__link " for="__nav_2_1_2_3" id="__nav_2_1_2_3_label" tabindex="0">
1069
+ <label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
1042
1070
  <span class="md-nav__icon md-icon"></span>
1043
1071
  </label>
1044
1072
 
1045
1073
  </div>
1046
1074
 
1047
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_3_label" aria-expanded="false">
1048
- <label class="md-nav__title" for="__nav_2_1_2_3">
1075
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
1076
+ <label class="md-nav__title" for="__nav_2_1_2_4">
1049
1077
  <span class="md-nav__icon md-icon"></span>
1050
1078
 
1051
1079
 
@@ -1101,7 +1129,7 @@
1101
1129
 
1102
1130
 
1103
1131
 
1104
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2">
1132
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
1105
1133
 
1106
1134
 
1107
1135
  <div class="md-nav__link md-nav__container">
@@ -1123,14 +1151,14 @@
1123
1151
  </a>
1124
1152
 
1125
1153
 
1126
- <label class="md-nav__link " for="__nav_2_1_2_3_2" id="__nav_2_1_2_3_2_label" tabindex="0">
1154
+ <label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
1127
1155
  <span class="md-nav__icon md-icon"></span>
1128
1156
  </label>
1129
1157
 
1130
1158
  </div>
1131
1159
 
1132
- <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_3_2_label" aria-expanded="false">
1133
- <label class="md-nav__title" for="__nav_2_1_2_3_2">
1160
+ <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
1161
+ <label class="md-nav__title" for="__nav_2_1_2_4_2">
1134
1162
  <span class="md-nav__icon md-icon"></span>
1135
1163
 
1136
1164
 
@@ -8991,6 +9019,34 @@
8991
9019
 
8992
9020
 
8993
9021
 
9022
+
9023
+
9024
+
9025
+
9026
+
9027
+
9028
+ <li class="md-nav__item">
9029
+ <a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
9030
+
9031
+
9032
+
9033
+ <span class="md-ellipsis">
9034
+
9035
+
9036
+ QuerySet
9037
+
9038
+
9039
+
9040
+ </span>
9041
+
9042
+
9043
+
9044
+ </a>
9045
+ </li>
9046
+
9047
+
9048
+
9049
+
8994
9050
  </ul>
8995
9051
  </nav>
8996
9052
 
@@ -1091,6 +1091,34 @@
1091
1091
 
1092
1092
 
1093
1093
 
1094
+ <li class="md-nav__item">
1095
+ <a href="../upgrading/postgresql.html" class="md-nav__link">
1096
+
1097
+
1098
+
1099
+ <span class="md-ellipsis">
1100
+
1101
+
1102
+ Upgrading PostgreSQL
1103
+
1104
+
1105
+
1106
+ </span>
1107
+
1108
+
1109
+
1110
+ </a>
1111
+ </li>
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1094
1122
  <li class="md-nav__item">
1095
1123
  <a href="../upgrading/upgrading.html" class="md-nav__link">
1096
1124
 
@@ -1131,7 +1159,7 @@
1131
1159
 
1132
1160
 
1133
1161
 
1134
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3">
1162
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
1135
1163
 
1136
1164
 
1137
1165
  <div class="md-nav__link md-nav__container">
@@ -1153,14 +1181,14 @@
1153
1181
  </a>
1154
1182
 
1155
1183
 
1156
- <label class="md-nav__link " for="__nav_2_1_2_3" id="__nav_2_1_2_3_label" tabindex="0">
1184
+ <label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
1157
1185
  <span class="md-nav__icon md-icon"></span>
1158
1186
  </label>
1159
1187
 
1160
1188
  </div>
1161
1189
 
1162
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_3_label" aria-expanded="false">
1163
- <label class="md-nav__title" for="__nav_2_1_2_3">
1190
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
1191
+ <label class="md-nav__title" for="__nav_2_1_2_4">
1164
1192
  <span class="md-nav__icon md-icon"></span>
1165
1193
 
1166
1194
 
@@ -1216,7 +1244,7 @@
1216
1244
 
1217
1245
 
1218
1246
 
1219
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2">
1247
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
1220
1248
 
1221
1249
 
1222
1250
  <div class="md-nav__link md-nav__container">
@@ -1238,14 +1266,14 @@
1238
1266
  </a>
1239
1267
 
1240
1268
 
1241
- <label class="md-nav__link " for="__nav_2_1_2_3_2" id="__nav_2_1_2_3_2_label" tabindex="0">
1269
+ <label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
1242
1270
  <span class="md-nav__icon md-icon"></span>
1243
1271
  </label>
1244
1272
 
1245
1273
  </div>
1246
1274
 
1247
- <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_3_2_label" aria-expanded="false">
1248
- <label class="md-nav__title" for="__nav_2_1_2_3_2">
1275
+ <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
1276
+ <label class="md-nav__title" for="__nav_2_1_2_4_2">
1249
1277
  <span class="md-nav__icon md-icon"></span>
1250
1278
 
1251
1279
 
@@ -9035,6 +9063,34 @@
9035
9063
 
9036
9064
 
9037
9065
 
9066
+
9067
+
9068
+
9069
+
9070
+
9071
+
9072
+ <li class="md-nav__item">
9073
+ <a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
9074
+
9075
+
9076
+
9077
+ <span class="md-ellipsis">
9078
+
9079
+
9080
+ QuerySet
9081
+
9082
+
9083
+
9084
+ </span>
9085
+
9086
+
9087
+
9088
+ </a>
9089
+ </li>
9090
+
9091
+
9092
+
9093
+
9038
9094
  </ul>
9039
9095
  </nav>
9040
9096
 
@@ -1036,6 +1036,34 @@
1036
1036
 
1037
1037
 
1038
1038
 
1039
+ <li class="md-nav__item">
1040
+ <a href="../upgrading/postgresql.html" class="md-nav__link">
1041
+
1042
+
1043
+
1044
+ <span class="md-ellipsis">
1045
+
1046
+
1047
+ Upgrading PostgreSQL
1048
+
1049
+
1050
+
1051
+ </span>
1052
+
1053
+
1054
+
1055
+ </a>
1056
+ </li>
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+
1064
+
1065
+
1066
+
1039
1067
  <li class="md-nav__item">
1040
1068
  <a href="../upgrading/upgrading.html" class="md-nav__link">
1041
1069
 
@@ -1076,7 +1104,7 @@
1076
1104
 
1077
1105
 
1078
1106
 
1079
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3">
1107
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
1080
1108
 
1081
1109
 
1082
1110
  <div class="md-nav__link md-nav__container">
@@ -1098,14 +1126,14 @@
1098
1126
  </a>
1099
1127
 
1100
1128
 
1101
- <label class="md-nav__link " for="__nav_2_1_2_3" id="__nav_2_1_2_3_label" tabindex="0">
1129
+ <label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
1102
1130
  <span class="md-nav__icon md-icon"></span>
1103
1131
  </label>
1104
1132
 
1105
1133
  </div>
1106
1134
 
1107
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_3_label" aria-expanded="false">
1108
- <label class="md-nav__title" for="__nav_2_1_2_3">
1135
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
1136
+ <label class="md-nav__title" for="__nav_2_1_2_4">
1109
1137
  <span class="md-nav__icon md-icon"></span>
1110
1138
 
1111
1139
 
@@ -1161,7 +1189,7 @@
1161
1189
 
1162
1190
 
1163
1191
 
1164
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2">
1192
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
1165
1193
 
1166
1194
 
1167
1195
  <div class="md-nav__link md-nav__container">
@@ -1183,14 +1211,14 @@
1183
1211
  </a>
1184
1212
 
1185
1213
 
1186
- <label class="md-nav__link " for="__nav_2_1_2_3_2" id="__nav_2_1_2_3_2_label" tabindex="0">
1214
+ <label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
1187
1215
  <span class="md-nav__icon md-icon"></span>
1188
1216
  </label>
1189
1217
 
1190
1218
  </div>
1191
1219
 
1192
- <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_3_2_label" aria-expanded="false">
1193
- <label class="md-nav__title" for="__nav_2_1_2_3_2">
1220
+ <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
1221
+ <label class="md-nav__title" for="__nav_2_1_2_4_2">
1194
1222
  <span class="md-nav__icon md-icon"></span>
1195
1223
 
1196
1224
 
@@ -8980,6 +9008,34 @@
8980
9008
 
8981
9009
 
8982
9010
 
9011
+
9012
+
9013
+
9014
+
9015
+
9016
+
9017
+ <li class="md-nav__item">
9018
+ <a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
9019
+
9020
+
9021
+
9022
+ <span class="md-ellipsis">
9023
+
9024
+
9025
+ QuerySet
9026
+
9027
+
9028
+
9029
+ </span>
9030
+
9031
+
9032
+
9033
+ </a>
9034
+ </li>
9035
+
9036
+
9037
+
9038
+
8983
9039
  </ul>
8984
9040
  </nav>
8985
9041
 
@@ -1197,6 +1197,34 @@
1197
1197
 
1198
1198
 
1199
1199
 
1200
+ <li class="md-nav__item">
1201
+ <a href="../upgrading/postgresql.html" class="md-nav__link">
1202
+
1203
+
1204
+
1205
+ <span class="md-ellipsis">
1206
+
1207
+
1208
+ Upgrading PostgreSQL
1209
+
1210
+
1211
+
1212
+ </span>
1213
+
1214
+
1215
+
1216
+ </a>
1217
+ </li>
1218
+
1219
+
1220
+
1221
+
1222
+
1223
+
1224
+
1225
+
1226
+
1227
+
1200
1228
  <li class="md-nav__item">
1201
1229
  <a href="../upgrading/upgrading.html" class="md-nav__link">
1202
1230
 
@@ -1237,7 +1265,7 @@
1237
1265
 
1238
1266
 
1239
1267
 
1240
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3">
1268
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
1241
1269
 
1242
1270
 
1243
1271
  <div class="md-nav__link md-nav__container">
@@ -1259,14 +1287,14 @@
1259
1287
  </a>
1260
1288
 
1261
1289
 
1262
- <label class="md-nav__link " for="__nav_2_1_2_3" id="__nav_2_1_2_3_label" tabindex="0">
1290
+ <label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
1263
1291
  <span class="md-nav__icon md-icon"></span>
1264
1292
  </label>
1265
1293
 
1266
1294
  </div>
1267
1295
 
1268
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_3_label" aria-expanded="false">
1269
- <label class="md-nav__title" for="__nav_2_1_2_3">
1296
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
1297
+ <label class="md-nav__title" for="__nav_2_1_2_4">
1270
1298
  <span class="md-nav__icon md-icon"></span>
1271
1299
 
1272
1300
 
@@ -1322,7 +1350,7 @@
1322
1350
 
1323
1351
 
1324
1352
 
1325
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2">
1353
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
1326
1354
 
1327
1355
 
1328
1356
  <div class="md-nav__link md-nav__container">
@@ -1344,14 +1372,14 @@
1344
1372
  </a>
1345
1373
 
1346
1374
 
1347
- <label class="md-nav__link " for="__nav_2_1_2_3_2" id="__nav_2_1_2_3_2_label" tabindex="0">
1375
+ <label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
1348
1376
  <span class="md-nav__icon md-icon"></span>
1349
1377
  </label>
1350
1378
 
1351
1379
  </div>
1352
1380
 
1353
- <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_3_2_label" aria-expanded="false">
1354
- <label class="md-nav__title" for="__nav_2_1_2_3_2">
1381
+ <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
1382
+ <label class="md-nav__title" for="__nav_2_1_2_4_2">
1355
1383
  <span class="md-nav__icon md-icon"></span>
1356
1384
 
1357
1385
 
@@ -9141,6 +9169,34 @@
9141
9169
 
9142
9170
 
9143
9171
 
9172
+
9173
+
9174
+
9175
+
9176
+
9177
+
9178
+ <li class="md-nav__item">
9179
+ <a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
9180
+
9181
+
9182
+
9183
+ <span class="md-ellipsis">
9184
+
9185
+
9186
+ QuerySet
9187
+
9188
+
9189
+
9190
+ </span>
9191
+
9192
+
9193
+
9194
+ </a>
9195
+ </li>
9196
+
9197
+
9198
+
9199
+
9144
9200
  </ul>
9145
9201
  </nav>
9146
9202
 
@@ -13674,7 +13730,14 @@ be installed on your Nautobot server in a secure location that is readable only
13674
13730
  </ul>
13675
13731
  <p>This addition brings attention to SELinux, which is especially pertinent in environments like CentOS or RHEL, where SELinux is often enabled by default and could be a non-obvious blocker to NGINX operations.</p>
13676
13732
  <h3 id="static-media-failure">Static Media Failure<a class="headerlink" href="#static-media-failure" title="Permanent link">¶</a></h3>
13677
- <p>If you get a <em>Static Media Failure; The following static media file failed to load: css/base.css</em>, verify that the permissions on the <code>$NAUTOBOT_ROOT</code> directory are correctly set and that the <code>nginx</code> account is a member of the <code>nautobot</code> group, as described above.</p>
13733
+ <p>If you get a <em>Static Media Failure; [...] static media file(s) failed to load.</em>, check the following:</p>
13734
+ <ul>
13735
+ <li><code>nautobot-server collectstatic</code> was run during the most recent upgrade. This installs the most recent iteration of each static file into the static root path.</li>
13736
+ <li>The HTTP service (e.g. NGINX) is configured to serve files from the <code>STATIC_ROOT</code> path.</li>
13737
+ <li>The permissions on the <code>$NAUTOBOT_ROOT</code> directory are correctly set and the <code>nginx</code> account is a member of the <code>nautobot</code> group, as described above.</li>
13738
+ <li>Files that failed to load exist in the static root directory and are readable by the HTTP process.</li>
13739
+ </ul>
13740
+ <p>If all of the above are true and the issue still persists, you can check which static files failed to load and their respective HTTP responses (or lack thereof). To do that, open browser developer tools (Safari requires "Show features for web developers" to be enabled in Advanced Settings) using <code>Ctrl + Shift + J</code> keyboard shortcut in most browsers (<code>Cmd + Shift + J</code> on macOS). In the newly opened pane or window, choose "Console" or "Network" tab to troubleshoot further. If errors don't show up, refresh the page while keeping the Developer Tools open.</p>
13678
13741
  <h3 id="502-bad-gateway">502 Bad Gateway<a class="headerlink" href="#502-bad-gateway" title="Permanent link">¶</a></h3>
13679
13742
  <p>If you are able to connect but receive a 502 (bad gateway) error, check the following:</p>
13680
13743
  <ul>
@@ -1219,6 +1219,34 @@
1219
1219
 
1220
1220
 
1221
1221
 
1222
+ <li class="md-nav__item">
1223
+ <a href="../upgrading/postgresql.html" class="md-nav__link">
1224
+
1225
+
1226
+
1227
+ <span class="md-ellipsis">
1228
+
1229
+
1230
+ Upgrading PostgreSQL
1231
+
1232
+
1233
+
1234
+ </span>
1235
+
1236
+
1237
+
1238
+ </a>
1239
+ </li>
1240
+
1241
+
1242
+
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+
1249
+
1222
1250
  <li class="md-nav__item">
1223
1251
  <a href="../upgrading/upgrading.html" class="md-nav__link">
1224
1252
 
@@ -1259,7 +1287,7 @@
1259
1287
 
1260
1288
 
1261
1289
 
1262
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3">
1290
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4">
1263
1291
 
1264
1292
 
1265
1293
  <div class="md-nav__link md-nav__container">
@@ -1281,14 +1309,14 @@
1281
1309
  </a>
1282
1310
 
1283
1311
 
1284
- <label class="md-nav__link " for="__nav_2_1_2_3" id="__nav_2_1_2_3_label" tabindex="0">
1312
+ <label class="md-nav__link " for="__nav_2_1_2_4" id="__nav_2_1_2_4_label" tabindex="0">
1285
1313
  <span class="md-nav__icon md-icon"></span>
1286
1314
  </label>
1287
1315
 
1288
1316
  </div>
1289
1317
 
1290
- <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_3_label" aria-expanded="false">
1291
- <label class="md-nav__title" for="__nav_2_1_2_3">
1318
+ <nav class="md-nav" data-md-level="4" aria-labelledby="__nav_2_1_2_4_label" aria-expanded="false">
1319
+ <label class="md-nav__title" for="__nav_2_1_2_4">
1292
1320
  <span class="md-nav__icon md-icon"></span>
1293
1321
 
1294
1322
 
@@ -1344,7 +1372,7 @@
1344
1372
 
1345
1373
 
1346
1374
 
1347
- <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_3_2">
1375
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_1_2_4_2">
1348
1376
 
1349
1377
 
1350
1378
  <div class="md-nav__link md-nav__container">
@@ -1366,14 +1394,14 @@
1366
1394
  </a>
1367
1395
 
1368
1396
 
1369
- <label class="md-nav__link " for="__nav_2_1_2_3_2" id="__nav_2_1_2_3_2_label" tabindex="0">
1397
+ <label class="md-nav__link " for="__nav_2_1_2_4_2" id="__nav_2_1_2_4_2_label" tabindex="0">
1370
1398
  <span class="md-nav__icon md-icon"></span>
1371
1399
  </label>
1372
1400
 
1373
1401
  </div>
1374
1402
 
1375
- <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_3_2_label" aria-expanded="false">
1376
- <label class="md-nav__title" for="__nav_2_1_2_3_2">
1403
+ <nav class="md-nav" data-md-level="5" aria-labelledby="__nav_2_1_2_4_2_label" aria-expanded="false">
1404
+ <label class="md-nav__title" for="__nav_2_1_2_4_2">
1377
1405
  <span class="md-nav__icon md-icon"></span>
1378
1406
 
1379
1407
 
@@ -9163,6 +9191,34 @@
9163
9191
 
9164
9192
 
9165
9193
 
9194
+
9195
+
9196
+
9197
+
9198
+
9199
+
9200
+ <li class="md-nav__item">
9201
+ <a href="../../../development/apps/api/models/queryset.html" class="md-nav__link">
9202
+
9203
+
9204
+
9205
+ <span class="md-ellipsis">
9206
+
9207
+
9208
+ QuerySet
9209
+
9210
+
9211
+
9212
+ </span>
9213
+
9214
+
9215
+
9216
+ </a>
9217
+ </li>
9218
+
9219
+
9220
+
9221
+
9166
9222
  </ul>
9167
9223
  </nav>
9168
9224