nautobot 1.6.31__py3-none-any.whl → 1.6.32__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 (235) hide show
  1. nautobot/circuits/forms.py +6 -0
  2. nautobot/circuits/views.py +1 -0
  3. nautobot/core/graphql/schema.py +3 -1
  4. nautobot/core/graphql/types.py +10 -0
  5. nautobot/core/models/__init__.py +2 -0
  6. nautobot/core/templates/generic/object_list.html +1 -1
  7. nautobot/core/tests/test_views.py +73 -0
  8. nautobot/core/urls.py +3 -3
  9. nautobot/core/views/__init__.py +21 -0
  10. nautobot/dcim/forms.py +29 -0
  11. nautobot/dcim/models/device_component_templates.py +4 -0
  12. nautobot/dcim/models/device_components.py +4 -0
  13. nautobot/dcim/models/devices.py +2 -0
  14. nautobot/dcim/views.py +4 -0
  15. nautobot/extras/forms/forms.py +12 -0
  16. nautobot/extras/models/customfields.py +2 -0
  17. nautobot/extras/models/datasources.py +2 -0
  18. nautobot/extras/models/groups.py +8 -0
  19. nautobot/extras/models/jobs.py +10 -0
  20. nautobot/extras/models/models.py +2 -0
  21. nautobot/extras/models/secrets.py +8 -2
  22. nautobot/extras/secrets/__init__.py +14 -0
  23. nautobot/extras/tests/test_models.py +26 -0
  24. nautobot/extras/views.py +1 -0
  25. nautobot/ipam/filters.py +1 -1
  26. nautobot/ipam/forms.py +6 -0
  27. nautobot/ipam/models.py +8 -0
  28. nautobot/ipam/views.py +1 -0
  29. nautobot/project-static/docs/404.html +62 -0
  30. nautobot/project-static/docs/additional-features/caching.html +62 -0
  31. nautobot/project-static/docs/additional-features/change-logging.html +62 -0
  32. nautobot/project-static/docs/additional-features/config-contexts.html +62 -0
  33. nautobot/project-static/docs/additional-features/graphql.html +62 -0
  34. nautobot/project-static/docs/additional-features/healthcheck.html +62 -0
  35. nautobot/project-static/docs/additional-features/job-scheduling-and-approvals.html +63 -1
  36. nautobot/project-static/docs/additional-features/jobs.html +62 -0
  37. nautobot/project-static/docs/additional-features/napalm.html +62 -0
  38. nautobot/project-static/docs/additional-features/prometheus-metrics.html +62 -0
  39. nautobot/project-static/docs/additional-features/template-filters.html +62 -0
  40. nautobot/project-static/docs/administration/celery-queues.html +63 -1
  41. nautobot/project-static/docs/administration/nautobot-server.html +62 -0
  42. nautobot/project-static/docs/administration/nautobot-shell.html +62 -0
  43. nautobot/project-static/docs/administration/permissions.html +62 -0
  44. nautobot/project-static/docs/administration/replicating-nautobot.html +62 -0
  45. nautobot/project-static/docs/administration/request-profiling.html +62 -0
  46. nautobot/project-static/docs/administration/security/index.html +4407 -0
  47. nautobot/project-static/docs/administration/security/notices.html +4797 -0
  48. nautobot/project-static/docs/apps/index.html +62 -0
  49. nautobot/project-static/docs/apps/nautobot-apps.html +62 -0
  50. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -0
  51. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +62 -0
  52. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +62 -0
  53. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +62 -0
  54. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +62 -0
  55. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +62 -0
  56. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +83 -21
  57. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +67 -1
  58. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +140 -52
  59. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +62 -0
  60. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3203 -3101
  61. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +62 -0
  62. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +62 -0
  63. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +210 -148
  64. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +62 -0
  65. nautobot/project-static/docs/configuration/authentication/ldap.html +62 -0
  66. nautobot/project-static/docs/configuration/authentication/remote.html +62 -0
  67. nautobot/project-static/docs/configuration/authentication/sso.html +62 -0
  68. nautobot/project-static/docs/configuration/index.html +62 -0
  69. nautobot/project-static/docs/configuration/optional-settings.html +67 -5
  70. nautobot/project-static/docs/configuration/required-settings.html +62 -0
  71. nautobot/project-static/docs/core-functionality/circuits.html +62 -0
  72. nautobot/project-static/docs/core-functionality/device-types.html +62 -0
  73. nautobot/project-static/docs/core-functionality/devices.html +62 -0
  74. nautobot/project-static/docs/core-functionality/ipam.html +62 -0
  75. nautobot/project-static/docs/core-functionality/power.html +62 -0
  76. nautobot/project-static/docs/core-functionality/secrets.html +62 -0
  77. nautobot/project-static/docs/core-functionality/services.html +62 -0
  78. nautobot/project-static/docs/core-functionality/sites-and-racks.html +62 -0
  79. nautobot/project-static/docs/core-functionality/tenancy.html +62 -0
  80. nautobot/project-static/docs/core-functionality/virtualization.html +62 -0
  81. nautobot/project-static/docs/core-functionality/vlans.html +62 -0
  82. nautobot/project-static/docs/development/application-registry.html +62 -0
  83. nautobot/project-static/docs/development/best-practices.html +62 -0
  84. nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html +62 -0
  85. nautobot/project-static/docs/development/extending-models.html +62 -0
  86. nautobot/project-static/docs/development/generic-views.html +62 -0
  87. nautobot/project-static/docs/development/getting-started.html +63 -1
  88. nautobot/project-static/docs/development/homepage.html +62 -0
  89. nautobot/project-static/docs/development/index.html +62 -0
  90. nautobot/project-static/docs/development/navigation-menu.html +62 -0
  91. nautobot/project-static/docs/development/release-checklist.html +62 -0
  92. nautobot/project-static/docs/development/style-guide.html +62 -0
  93. nautobot/project-static/docs/development/templates.html +62 -0
  94. nautobot/project-static/docs/development/testing.html +62 -0
  95. nautobot/project-static/docs/development/user-preferences.html +62 -0
  96. nautobot/project-static/docs/docker/index.html +62 -0
  97. nautobot/project-static/docs/index.html +62 -0
  98. nautobot/project-static/docs/installation/centos.html +62 -0
  99. nautobot/project-static/docs/installation/external-authentication.html +62 -0
  100. nautobot/project-static/docs/installation/http-server.html +62 -0
  101. nautobot/project-static/docs/installation/index.html +62 -0
  102. nautobot/project-static/docs/installation/migrating-from-netbox.html +62 -0
  103. nautobot/project-static/docs/installation/migrating-from-postgresql.html +62 -0
  104. nautobot/project-static/docs/installation/nautobot.html +62 -0
  105. nautobot/project-static/docs/installation/selinux-troubleshooting.html +62 -0
  106. nautobot/project-static/docs/installation/services.html +62 -0
  107. nautobot/project-static/docs/installation/ubuntu.html +62 -0
  108. nautobot/project-static/docs/installation/upgrading.html +62 -0
  109. nautobot/project-static/docs/models/circuits/circuit.html +62 -0
  110. nautobot/project-static/docs/models/circuits/circuittermination.html +62 -0
  111. nautobot/project-static/docs/models/circuits/circuittype.html +62 -0
  112. nautobot/project-static/docs/models/circuits/provider.html +62 -0
  113. nautobot/project-static/docs/models/circuits/providernetwork.html +62 -0
  114. nautobot/project-static/docs/models/dcim/cable.html +62 -0
  115. nautobot/project-static/docs/models/dcim/consoleport.html +62 -0
  116. nautobot/project-static/docs/models/dcim/consoleporttemplate.html +62 -0
  117. nautobot/project-static/docs/models/dcim/consoleserverport.html +62 -0
  118. nautobot/project-static/docs/models/dcim/consoleserverporttemplate.html +62 -0
  119. nautobot/project-static/docs/models/dcim/device.html +62 -0
  120. nautobot/project-static/docs/models/dcim/devicebay.html +62 -0
  121. nautobot/project-static/docs/models/dcim/devicebaytemplate.html +62 -0
  122. nautobot/project-static/docs/models/dcim/deviceredundancygroup.html +62 -0
  123. nautobot/project-static/docs/models/dcim/devicerole.html +62 -0
  124. nautobot/project-static/docs/models/dcim/devicetype.html +62 -0
  125. nautobot/project-static/docs/models/dcim/frontport.html +62 -0
  126. nautobot/project-static/docs/models/dcim/frontporttemplate.html +62 -0
  127. nautobot/project-static/docs/models/dcim/interface.html +62 -0
  128. nautobot/project-static/docs/models/dcim/interfaceredundancygroup.html +62 -0
  129. nautobot/project-static/docs/models/dcim/interfacetemplate.html +62 -0
  130. nautobot/project-static/docs/models/dcim/inventoryitem.html +62 -0
  131. nautobot/project-static/docs/models/dcim/location.html +62 -0
  132. nautobot/project-static/docs/models/dcim/locationtype.html +62 -0
  133. nautobot/project-static/docs/models/dcim/manufacturer.html +62 -0
  134. nautobot/project-static/docs/models/dcim/platform.html +62 -0
  135. nautobot/project-static/docs/models/dcim/powerfeed.html +62 -0
  136. nautobot/project-static/docs/models/dcim/poweroutlet.html +62 -0
  137. nautobot/project-static/docs/models/dcim/poweroutlettemplate.html +62 -0
  138. nautobot/project-static/docs/models/dcim/powerpanel.html +62 -0
  139. nautobot/project-static/docs/models/dcim/powerport.html +62 -0
  140. nautobot/project-static/docs/models/dcim/powerporttemplate.html +62 -0
  141. nautobot/project-static/docs/models/dcim/rack.html +62 -0
  142. nautobot/project-static/docs/models/dcim/rackgroup.html +62 -0
  143. nautobot/project-static/docs/models/dcim/rackreservation.html +62 -0
  144. nautobot/project-static/docs/models/dcim/rackrole.html +62 -0
  145. nautobot/project-static/docs/models/dcim/rearport.html +62 -0
  146. nautobot/project-static/docs/models/dcim/rearporttemplate.html +62 -0
  147. nautobot/project-static/docs/models/dcim/region.html +62 -0
  148. nautobot/project-static/docs/models/dcim/site.html +62 -0
  149. nautobot/project-static/docs/models/dcim/virtualchassis.html +62 -0
  150. nautobot/project-static/docs/models/extras/computedfield.html +63 -1
  151. nautobot/project-static/docs/models/extras/configcontext.html +62 -0
  152. nautobot/project-static/docs/models/extras/configcontextschema.html +62 -0
  153. nautobot/project-static/docs/models/extras/customfield.html +62 -0
  154. nautobot/project-static/docs/models/extras/customlink.html +63 -1
  155. nautobot/project-static/docs/models/extras/dynamicgroup.html +62 -0
  156. nautobot/project-static/docs/models/extras/exporttemplate.html +62 -0
  157. nautobot/project-static/docs/models/extras/gitrepository.html +62 -0
  158. nautobot/project-static/docs/models/extras/graphqlquery.html +62 -0
  159. nautobot/project-static/docs/models/extras/imageattachment.html +62 -0
  160. nautobot/project-static/docs/models/extras/job.html +62 -0
  161. nautobot/project-static/docs/models/extras/jobbutton.html +63 -1
  162. nautobot/project-static/docs/models/extras/jobhook.html +62 -0
  163. nautobot/project-static/docs/models/extras/joblogentry.html +62 -0
  164. nautobot/project-static/docs/models/extras/jobresult.html +62 -0
  165. nautobot/project-static/docs/models/extras/note.html +62 -0
  166. nautobot/project-static/docs/models/extras/relationship.html +62 -0
  167. nautobot/project-static/docs/models/extras/secret.html +62 -0
  168. nautobot/project-static/docs/models/extras/secretsgroup.html +62 -0
  169. nautobot/project-static/docs/models/extras/status.html +62 -0
  170. nautobot/project-static/docs/models/extras/tag.html +62 -0
  171. nautobot/project-static/docs/models/extras/webhook.html +62 -0
  172. nautobot/project-static/docs/models/ipam/aggregate.html +62 -0
  173. nautobot/project-static/docs/models/ipam/ipaddress.html +62 -0
  174. nautobot/project-static/docs/models/ipam/prefix.html +62 -0
  175. nautobot/project-static/docs/models/ipam/rir.html +62 -0
  176. nautobot/project-static/docs/models/ipam/role.html +62 -0
  177. nautobot/project-static/docs/models/ipam/routetarget.html +62 -0
  178. nautobot/project-static/docs/models/ipam/service.html +62 -0
  179. nautobot/project-static/docs/models/ipam/vlan.html +62 -0
  180. nautobot/project-static/docs/models/ipam/vlangroup.html +62 -0
  181. nautobot/project-static/docs/models/ipam/vrf.html +62 -0
  182. nautobot/project-static/docs/models/tenancy/tenant.html +62 -0
  183. nautobot/project-static/docs/models/tenancy/tenantgroup.html +62 -0
  184. nautobot/project-static/docs/models/users/objectpermission.html +62 -0
  185. nautobot/project-static/docs/models/users/token.html +62 -0
  186. nautobot/project-static/docs/models/virtualization/cluster.html +62 -0
  187. nautobot/project-static/docs/models/virtualization/clustergroup.html +62 -0
  188. nautobot/project-static/docs/models/virtualization/clustertype.html +62 -0
  189. nautobot/project-static/docs/models/virtualization/virtualmachine.html +62 -0
  190. nautobot/project-static/docs/models/virtualization/vminterface.html +62 -0
  191. nautobot/project-static/docs/plugins/development.html +63 -1
  192. nautobot/project-static/docs/plugins/index.html +62 -0
  193. nautobot/project-static/docs/plugins/porting-from-netbox.html +62 -0
  194. nautobot/project-static/docs/release-notes/index.html +62 -0
  195. nautobot/project-static/docs/release-notes/version-1.0.html +62 -0
  196. nautobot/project-static/docs/release-notes/version-1.1.html +64 -2
  197. nautobot/project-static/docs/release-notes/version-1.2.html +63 -1
  198. nautobot/project-static/docs/release-notes/version-1.3.html +62 -0
  199. nautobot/project-static/docs/release-notes/version-1.4.html +62 -0
  200. nautobot/project-static/docs/release-notes/version-1.5.html +62 -0
  201. nautobot/project-static/docs/release-notes/version-1.6.html +354 -188
  202. nautobot/project-static/docs/rest-api/authentication.html +62 -0
  203. nautobot/project-static/docs/rest-api/filtering.html +62 -0
  204. nautobot/project-static/docs/rest-api/overview.html +62 -0
  205. nautobot/project-static/docs/search/search_index.json +1 -1
  206. nautobot/project-static/docs/sitemap.xml +197 -187
  207. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  208. nautobot/project-static/docs/user-guides/custom-fields.html +62 -0
  209. nautobot/project-static/docs/user-guides/getting-started/creating-devices.html +63 -1
  210. nautobot/project-static/docs/user-guides/getting-started/index.html +62 -0
  211. nautobot/project-static/docs/user-guides/getting-started/interfaces.html +62 -0
  212. nautobot/project-static/docs/user-guides/getting-started/ipam.html +62 -0
  213. nautobot/project-static/docs/user-guides/getting-started/platforms.html +62 -0
  214. nautobot/project-static/docs/user-guides/getting-started/regions.html +62 -0
  215. nautobot/project-static/docs/user-guides/getting-started/search-bar.html +62 -0
  216. nautobot/project-static/docs/user-guides/getting-started/tenants.html +62 -0
  217. nautobot/project-static/docs/user-guides/getting-started/vlans-and-vlan-groups.html +63 -1
  218. nautobot/project-static/docs/user-guides/git-data-source.html +62 -0
  219. nautobot/project-static/docs/user-guides/graphql.html +62 -0
  220. nautobot/project-static/docs/user-guides/relationships.html +62 -0
  221. nautobot/project-static/docs/user-guides/s3-django-storage.html +62 -0
  222. nautobot/tenancy/forms.py +10 -0
  223. nautobot/tenancy/views.py +1 -0
  224. nautobot/users/models.py +4 -0
  225. nautobot/utilities/testing/views.py +17 -1
  226. nautobot/utilities/tests/test_jinja_filters.py +26 -2
  227. nautobot/utilities/utils.py +14 -0
  228. nautobot/virtualization/forms.py +12 -0
  229. nautobot/virtualization/views.py +2 -0
  230. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/METADATA +1 -1
  231. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/RECORD +235 -233
  232. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/LICENSE.txt +0 -0
  233. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/NOTICE +0 -0
  234. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/WHEEL +0 -0
  235. {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/entry_points.txt +0 -0
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -5262,7 +5324,7 @@
5262
5324
  </table>
5263
5325
  <div class="admonition info">
5264
5326
  <p class="admonition-title">Info</p>
5265
- <p>By default <code>invoke unittest</code> will start and run the unit tests inside the Docker development container; this ensures that PostgreSQL and Redis servers are available during the test. However, if you have your environment configured such that <code>nautobot-server</code> can run locally, outside of the Docker environment, you may wish to set the environment variable <code>INVOKE_NAUTOBOT_LOCAL=True</code> to execute these tests in your local environment instead. See the <a href="#invoke-configuration">Invoke configuration</a> for more information.</p>
5327
+ <p>By default <code>invoke unittest</code> will start and run the unit tests inside the Docker development container; this ensures that PostgreSQL and Redis servers are available during the test. However, if you have your environment configured such that <code>nautobot-server</code> can run locally, outside of the Docker environment, you may wish to set the environment variable <code>INVOKE_NAUTOBOT_LOCAL=True</code> to execute these tests in your local environment instead. See the <a href="docker-compose-advanced-use-cases.html#invoke-configuration">Invoke configuration</a> for more information.</p>
5266
5328
  </div>
5267
5329
  <p>In cases where you haven't made any changes to the database (which is most of the time), you can append the <code>--keepdb</code> argument to this command to reuse the test database between runs. This cuts down on the time it takes to run the test suite since the database doesn't have to be rebuilt each time.</p>
5268
5330
  <table>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>
@@ -869,6 +869,68 @@
869
869
 
870
870
 
871
871
 
872
+
873
+
874
+
875
+
876
+
877
+
878
+ <li class="md-nav__item md-nav__item--nested">
879
+
880
+
881
+
882
+
883
+ <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_5_7" >
884
+
885
+
886
+
887
+ <label class="md-nav__link" for="__nav_2_5_7" id="__nav_2_5_7_label" tabindex="0">
888
+ Security
889
+ <span class="md-nav__icon md-icon"></span>
890
+ </label>
891
+
892
+ <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_2_5_7_label" aria-expanded="false">
893
+ <label class="md-nav__title" for="__nav_2_5_7">
894
+ <span class="md-nav__icon md-icon"></span>
895
+ Security
896
+ </label>
897
+ <ul class="md-nav__list" data-md-scrollfix>
898
+
899
+
900
+
901
+
902
+
903
+
904
+ <li class="md-nav__item">
905
+ <a href="../administration/security/index.html" class="md-nav__link">
906
+ Nautobot Security
907
+ </a>
908
+ </li>
909
+
910
+
911
+
912
+
913
+
914
+
915
+
916
+
917
+
918
+ <li class="md-nav__item">
919
+ <a href="../administration/security/notices.html" class="md-nav__link">
920
+ Notices
921
+ </a>
922
+ </li>
923
+
924
+
925
+
926
+
927
+ </ul>
928
+ </nav>
929
+ </li>
930
+
931
+
932
+
933
+
872
934
  </ul>
873
935
  </nav>
874
936
  </li>