nautobot 2.3.1__py3-none-any.whl → 2.3.3__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 (339) hide show
  1. nautobot/core/celery/schedulers.py +18 -0
  2. nautobot/core/settings.yaml +3 -3
  3. nautobot/core/tables.py +1 -1
  4. nautobot/core/templates/home.html +4 -3
  5. nautobot/core/templatetags/buttons.py +1 -1
  6. nautobot/core/tests/runner.py +27 -9
  7. nautobot/core/tests/test_utils.py +13 -0
  8. nautobot/core/utils/lookup.py +7 -1
  9. nautobot/core/views/utils.py +3 -3
  10. nautobot/dcim/factory.py +3 -3
  11. nautobot/dcim/tables/devices.py +7 -7
  12. nautobot/dcim/templates/dcim/device.html +12 -0
  13. nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +12 -0
  14. nautobot/dcim/utils.py +9 -6
  15. nautobot/extras/api/serializers.py +2 -0
  16. nautobot/extras/context_managers.py +11 -4
  17. nautobot/extras/filters/__init__.py +14 -2
  18. nautobot/extras/forms/forms.py +6 -0
  19. nautobot/extras/forms/mixins.py +2 -2
  20. nautobot/extras/jobs.py +0 -1
  21. nautobot/extras/management/__init__.py +3 -0
  22. nautobot/extras/migrations/0115_scheduledjob_time_zone.py +23 -0
  23. nautobot/extras/models/groups.py +4 -1
  24. nautobot/extras/models/jobs.py +24 -11
  25. nautobot/extras/tables.py +34 -4
  26. nautobot/extras/templates/extras/scheduledjob.html +13 -2
  27. nautobot/extras/tests/test_api.py +17 -18
  28. nautobot/extras/tests/test_context_managers.py +33 -14
  29. nautobot/extras/tests/test_dynamicgroups.py +11 -0
  30. nautobot/extras/tests/test_filters.py +57 -1
  31. nautobot/extras/tests/test_models.py +304 -1
  32. nautobot/extras/tests/test_views.py +4 -2
  33. nautobot/extras/views.py +7 -0
  34. nautobot/ipam/api/views.py +9 -2
  35. nautobot/ipam/choices.py +17 -0
  36. nautobot/ipam/factory.py +6 -0
  37. nautobot/ipam/filters.py +1 -1
  38. nautobot/ipam/forms.py +5 -3
  39. nautobot/ipam/migrations/0048_vrf_status.py +23 -0
  40. nautobot/ipam/migrations/0049_vrf_data_migration.py +25 -0
  41. nautobot/ipam/models.py +6 -0
  42. nautobot/ipam/tables.py +3 -2
  43. nautobot/ipam/templates/ipam/vrf.html +4 -0
  44. nautobot/ipam/templates/ipam/vrf_edit.html +1 -0
  45. nautobot/ipam/tests/test_api.py +44 -3
  46. nautobot/ipam/tests/test_views.py +3 -0
  47. nautobot/project-static/css/base.css +6 -0
  48. nautobot/project-static/docs/404.html +23 -23
  49. nautobot/project-static/docs/apps/index.html +25 -25
  50. nautobot/project-static/docs/apps/nautobot-apps.html +24 -24
  51. nautobot/project-static/docs/assets/javascripts/bundle.56dfad97.min.js +16 -0
  52. nautobot/project-static/docs/assets/javascripts/bundle.56dfad97.min.js.map +7 -0
  53. nautobot/project-static/docs/assets/javascripts/workers/{search.b8dbb3d2.min.js → search.07f07601.min.js} +1 -1
  54. nautobot/project-static/docs/assets/javascripts/workers/{search.b8dbb3d2.min.js.map → search.07f07601.min.js.map} +1 -1
  55. nautobot/project-static/docs/assets/stylesheets/main.35f28582.min.css +1 -0
  56. nautobot/project-static/docs/assets/stylesheets/main.35f28582.min.css.map +1 -0
  57. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +26 -26
  58. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +26 -26
  59. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +58 -58
  60. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +32 -31
  61. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +31 -31
  62. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +25 -25
  63. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +25 -25
  64. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +30 -30
  65. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +34 -34
  66. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +41 -41
  67. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +48 -48
  68. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +92 -92
  69. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +41 -41
  70. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +85 -85
  71. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +84 -84
  72. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +26 -26
  73. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +28 -28
  74. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +40 -40
  75. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +78 -78
  76. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +77 -77
  77. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +26 -26
  78. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +80 -80
  79. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +67 -67
  80. nautobot/project-static/docs/development/apps/api/configuration-view.html +25 -25
  81. nautobot/project-static/docs/development/apps/api/database-backend-config.html +25 -25
  82. nautobot/project-static/docs/development/apps/api/models/django-admin.html +25 -25
  83. nautobot/project-static/docs/development/apps/api/models/global-search.html +25 -25
  84. nautobot/project-static/docs/development/apps/api/models/graphql.html +25 -25
  85. nautobot/project-static/docs/development/apps/api/models/index.html +25 -25
  86. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +25 -25
  87. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +25 -25
  88. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +25 -25
  89. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +25 -25
  90. nautobot/project-static/docs/development/apps/api/platform-features/index.html +25 -25
  91. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +25 -25
  92. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +25 -25
  93. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +25 -25
  94. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +25 -25
  95. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +25 -25
  96. nautobot/project-static/docs/development/apps/api/prometheus.html +25 -25
  97. nautobot/project-static/docs/development/apps/api/setup.html +25 -25
  98. nautobot/project-static/docs/development/apps/api/testing.html +25 -25
  99. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +25 -25
  100. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +25 -25
  101. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +25 -25
  102. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +25 -25
  103. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +25 -25
  104. nautobot/project-static/docs/development/apps/api/views/base-template.html +25 -25
  105. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +25 -25
  106. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +25 -25
  107. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +25 -25
  108. nautobot/project-static/docs/development/apps/api/views/index.html +25 -25
  109. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +25 -25
  110. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +25 -25
  111. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +25 -25
  112. nautobot/project-static/docs/development/apps/api/views/notes.html +25 -25
  113. nautobot/project-static/docs/development/apps/api/views/rest-api.html +25 -25
  114. nautobot/project-static/docs/development/apps/api/views/urls.html +25 -25
  115. nautobot/project-static/docs/development/apps/index.html +25 -25
  116. nautobot/project-static/docs/development/apps/migration/code-updates.html +25 -25
  117. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +25 -25
  118. nautobot/project-static/docs/development/apps/migration/from-v1.html +25 -25
  119. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +25 -25
  120. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +25 -25
  121. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +25 -25
  122. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +25 -25
  123. nautobot/project-static/docs/development/apps/porting-from-netbox.html +25 -25
  124. nautobot/project-static/docs/development/core/application-registry.html +25 -25
  125. nautobot/project-static/docs/development/core/best-practices.html +25 -25
  126. nautobot/project-static/docs/development/core/bootstrap-ui.html +25 -25
  127. nautobot/project-static/docs/development/core/caching.html +25 -25
  128. nautobot/project-static/docs/development/core/controllers.html +25 -25
  129. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +25 -25
  130. nautobot/project-static/docs/development/core/generic-views.html +25 -25
  131. nautobot/project-static/docs/development/core/getting-started.html +25 -25
  132. nautobot/project-static/docs/development/core/homepage.html +25 -25
  133. nautobot/project-static/docs/development/core/index.html +25 -25
  134. nautobot/project-static/docs/development/core/model-checklist.html +25 -25
  135. nautobot/project-static/docs/development/core/model-features.html +25 -25
  136. nautobot/project-static/docs/development/core/natural-keys.html +25 -25
  137. nautobot/project-static/docs/development/core/navigation-menu.html +25 -25
  138. nautobot/project-static/docs/development/core/release-checklist.html +25 -25
  139. nautobot/project-static/docs/development/core/role-internals.html +25 -25
  140. nautobot/project-static/docs/development/core/settings.html +25 -25
  141. nautobot/project-static/docs/development/core/style-guide.html +25 -25
  142. nautobot/project-static/docs/development/core/templates.html +25 -25
  143. nautobot/project-static/docs/development/core/testing.html +25 -25
  144. nautobot/project-static/docs/development/core/user-preferences.html +25 -25
  145. nautobot/project-static/docs/development/index.html +25 -25
  146. nautobot/project-static/docs/development/jobs/index.html +25 -25
  147. nautobot/project-static/docs/development/jobs/migration/from-v1.html +25 -25
  148. nautobot/project-static/docs/index.html +30 -30
  149. nautobot/project-static/docs/overview/application_stack.html +31 -31
  150. nautobot/project-static/docs/overview/design_philosophy.html +25 -25
  151. nautobot/project-static/docs/release-notes/index.html +25 -25
  152. nautobot/project-static/docs/release-notes/version-1.0.html +25 -25
  153. nautobot/project-static/docs/release-notes/version-1.1.html +25 -25
  154. nautobot/project-static/docs/release-notes/version-1.2.html +25 -25
  155. nautobot/project-static/docs/release-notes/version-1.3.html +25 -25
  156. nautobot/project-static/docs/release-notes/version-1.4.html +25 -25
  157. nautobot/project-static/docs/release-notes/version-1.5.html +25 -25
  158. nautobot/project-static/docs/release-notes/version-1.6.html +25 -25
  159. nautobot/project-static/docs/release-notes/version-2.0.html +25 -25
  160. nautobot/project-static/docs/release-notes/version-2.1.html +25 -25
  161. nautobot/project-static/docs/release-notes/version-2.2.html +25 -25
  162. nautobot/project-static/docs/release-notes/version-2.3.html +318 -61
  163. nautobot/project-static/docs/search/search_index.json +1 -1
  164. nautobot/project-static/docs/sitemap.xml +271 -542
  165. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  166. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +25 -25
  167. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +25 -25
  168. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +25 -25
  169. nautobot/project-static/docs/user-guide/administration/configuration/index.html +25 -25
  170. nautobot/project-static/docs/user-guide/administration/configuration/optional-settings.html +28 -28
  171. nautobot/project-static/docs/user-guide/administration/configuration/required-settings.html +25 -25
  172. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +25 -25
  173. nautobot/project-static/docs/user-guide/administration/guides/caching.html +25 -25
  174. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +25 -25
  175. nautobot/project-static/docs/user-guide/administration/guides/healthcheck.html +25 -25
  176. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +25 -25
  177. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +25 -25
  178. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +25 -25
  179. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +25 -25
  180. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +25 -25
  181. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +25 -25
  182. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +25 -25
  183. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +25 -25
  184. nautobot/project-static/docs/user-guide/administration/installation/index.html +25 -25
  185. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +25 -25
  186. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +25 -25
  187. nautobot/project-static/docs/user-guide/administration/installation/services.html +25 -25
  188. nautobot/project-static/docs/user-guide/administration/installation-extras/docker.html +25 -25
  189. nautobot/project-static/docs/user-guide/administration/installation-extras/health-checks.html +25 -25
  190. nautobot/project-static/docs/user-guide/administration/installation-extras/selinux-troubleshooting.html +25 -25
  191. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +25 -25
  192. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +25 -25
  193. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +25 -25
  194. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +25 -25
  195. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +25 -25
  196. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +25 -25
  197. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +25 -25
  198. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +25 -25
  199. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +25 -25
  200. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +25 -25
  201. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +25 -25
  202. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +25 -25
  203. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +25 -25
  204. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +25 -25
  205. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +25 -25
  206. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +25 -25
  207. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +25 -25
  208. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +25 -25
  209. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +25 -25
  210. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +25 -25
  211. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +25 -25
  212. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +25 -25
  213. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +25 -25
  214. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +25 -25
  215. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +25 -25
  216. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +25 -25
  217. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +25 -25
  218. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +25 -25
  219. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +25 -25
  220. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +25 -25
  221. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +25 -25
  222. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +25 -25
  223. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +25 -25
  224. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +25 -25
  225. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +25 -25
  226. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +25 -25
  227. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +25 -25
  228. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +25 -25
  229. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +25 -25
  230. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +25 -25
  231. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +25 -25
  232. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +25 -25
  233. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +25 -25
  234. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +25 -25
  235. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +25 -25
  236. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +25 -25
  237. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +25 -25
  238. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +25 -25
  239. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +25 -25
  240. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +25 -25
  241. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +25 -25
  242. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +25 -25
  243. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +25 -25
  244. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +25 -25
  245. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +25 -25
  246. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +25 -25
  247. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +25 -25
  248. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +25 -25
  249. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +25 -25
  250. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +25 -25
  251. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +25 -25
  252. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +25 -25
  253. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +25 -25
  254. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +25 -25
  255. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +25 -25
  256. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +25 -25
  257. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +25 -25
  258. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +25 -25
  259. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +25 -25
  260. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +25 -25
  261. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +25 -25
  262. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +25 -25
  263. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +25 -25
  264. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +25 -25
  265. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +25 -25
  266. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +25 -25
  267. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +25 -25
  268. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +25 -25
  269. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +25 -25
  270. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +25 -25
  271. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +25 -25
  272. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +25 -25
  273. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +25 -25
  274. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +25 -25
  275. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +25 -25
  276. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +25 -25
  277. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +25 -25
  278. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +25 -25
  279. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +25 -25
  280. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +25 -25
  281. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +25 -25
  282. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +25 -25
  283. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +25 -25
  284. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +25 -25
  285. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +25 -25
  286. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +25 -25
  287. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +25 -25
  288. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +25 -25
  289. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +25 -25
  290. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +25 -25
  291. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +25 -25
  292. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +25 -25
  293. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +25 -25
  294. nautobot/project-static/docs/user-guide/index.html +25 -25
  295. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +25 -25
  296. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +25 -25
  297. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +25 -25
  298. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +25 -25
  299. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +25 -25
  300. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +25 -25
  301. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +25 -25
  302. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +25 -25
  303. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +25 -25
  304. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +25 -25
  305. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +25 -25
  306. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +25 -25
  307. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +25 -25
  308. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +25 -25
  309. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +25 -25
  310. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +25 -25
  311. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +25 -25
  312. nautobot/project-static/docs/user-guide/platform-functionality/note.html +25 -25
  313. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +25 -25
  314. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +25 -25
  315. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +25 -25
  316. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +25 -25
  317. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +25 -25
  318. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +25 -25
  319. nautobot/project-static/docs/user-guide/platform-functionality/role.html +25 -25
  320. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +25 -25
  321. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +25 -25
  322. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +25 -25
  323. nautobot/project-static/docs/user-guide/platform-functionality/status.html +25 -25
  324. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +25 -25
  325. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +25 -25
  326. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +25 -25
  327. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +25 -25
  328. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +25 -25
  329. nautobot/project-static/js/homepage_layout.js +3 -0
  330. {nautobot-2.3.1.dist-info → nautobot-2.3.3.dist-info}/METADATA +4 -4
  331. {nautobot-2.3.1.dist-info → nautobot-2.3.3.dist-info}/RECORD +335 -332
  332. nautobot/project-static/docs/assets/javascripts/bundle.fe8b6f2b.min.js +0 -29
  333. nautobot/project-static/docs/assets/javascripts/bundle.fe8b6f2b.min.js.map +0 -7
  334. nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.min.css +0 -1
  335. nautobot/project-static/docs/assets/stylesheets/main.3cba04c6.min.css.map +0 -1
  336. {nautobot-2.3.1.dist-info → nautobot-2.3.3.dist-info}/LICENSE.txt +0 -0
  337. {nautobot-2.3.1.dist-info → nautobot-2.3.3.dist-info}/NOTICE +0 -0
  338. {nautobot-2.3.1.dist-info → nautobot-2.3.3.dist-info}/WHEEL +0 -0
  339. {nautobot-2.3.1.dist-info → nautobot-2.3.3.dist-info}/entry_points.txt +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.