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.
- nautobot/circuits/forms.py +6 -0
- nautobot/circuits/views.py +1 -0
- nautobot/core/graphql/schema.py +3 -1
- nautobot/core/graphql/types.py +10 -0
- nautobot/core/models/__init__.py +2 -0
- nautobot/core/templates/generic/object_list.html +1 -1
- nautobot/core/tests/test_views.py +73 -0
- nautobot/core/urls.py +3 -3
- nautobot/core/views/__init__.py +21 -0
- nautobot/dcim/forms.py +29 -0
- nautobot/dcim/models/device_component_templates.py +4 -0
- nautobot/dcim/models/device_components.py +4 -0
- nautobot/dcim/models/devices.py +2 -0
- nautobot/dcim/views.py +4 -0
- nautobot/extras/forms/forms.py +12 -0
- nautobot/extras/models/customfields.py +2 -0
- nautobot/extras/models/datasources.py +2 -0
- nautobot/extras/models/groups.py +8 -0
- nautobot/extras/models/jobs.py +10 -0
- nautobot/extras/models/models.py +2 -0
- nautobot/extras/models/secrets.py +8 -2
- nautobot/extras/secrets/__init__.py +14 -0
- nautobot/extras/tests/test_models.py +26 -0
- nautobot/extras/views.py +1 -0
- nautobot/ipam/filters.py +1 -1
- nautobot/ipam/forms.py +6 -0
- nautobot/ipam/models.py +8 -0
- nautobot/ipam/views.py +1 -0
- nautobot/project-static/docs/404.html +62 -0
- nautobot/project-static/docs/additional-features/caching.html +62 -0
- nautobot/project-static/docs/additional-features/change-logging.html +62 -0
- nautobot/project-static/docs/additional-features/config-contexts.html +62 -0
- nautobot/project-static/docs/additional-features/graphql.html +62 -0
- nautobot/project-static/docs/additional-features/healthcheck.html +62 -0
- nautobot/project-static/docs/additional-features/job-scheduling-and-approvals.html +63 -1
- nautobot/project-static/docs/additional-features/jobs.html +62 -0
- nautobot/project-static/docs/additional-features/napalm.html +62 -0
- nautobot/project-static/docs/additional-features/prometheus-metrics.html +62 -0
- nautobot/project-static/docs/additional-features/template-filters.html +62 -0
- nautobot/project-static/docs/administration/celery-queues.html +63 -1
- nautobot/project-static/docs/administration/nautobot-server.html +62 -0
- nautobot/project-static/docs/administration/nautobot-shell.html +62 -0
- nautobot/project-static/docs/administration/permissions.html +62 -0
- nautobot/project-static/docs/administration/replicating-nautobot.html +62 -0
- nautobot/project-static/docs/administration/request-profiling.html +62 -0
- nautobot/project-static/docs/administration/security/index.html +4407 -0
- nautobot/project-static/docs/administration/security/notices.html +4797 -0
- nautobot/project-static/docs/apps/index.html +62 -0
- nautobot/project-static/docs/apps/nautobot-apps.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +83 -21
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +67 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +140 -52
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +3203 -3101
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +62 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +210 -148
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +62 -0
- nautobot/project-static/docs/configuration/authentication/ldap.html +62 -0
- nautobot/project-static/docs/configuration/authentication/remote.html +62 -0
- nautobot/project-static/docs/configuration/authentication/sso.html +62 -0
- nautobot/project-static/docs/configuration/index.html +62 -0
- nautobot/project-static/docs/configuration/optional-settings.html +67 -5
- nautobot/project-static/docs/configuration/required-settings.html +62 -0
- nautobot/project-static/docs/core-functionality/circuits.html +62 -0
- nautobot/project-static/docs/core-functionality/device-types.html +62 -0
- nautobot/project-static/docs/core-functionality/devices.html +62 -0
- nautobot/project-static/docs/core-functionality/ipam.html +62 -0
- nautobot/project-static/docs/core-functionality/power.html +62 -0
- nautobot/project-static/docs/core-functionality/secrets.html +62 -0
- nautobot/project-static/docs/core-functionality/services.html +62 -0
- nautobot/project-static/docs/core-functionality/sites-and-racks.html +62 -0
- nautobot/project-static/docs/core-functionality/tenancy.html +62 -0
- nautobot/project-static/docs/core-functionality/virtualization.html +62 -0
- nautobot/project-static/docs/core-functionality/vlans.html +62 -0
- nautobot/project-static/docs/development/application-registry.html +62 -0
- nautobot/project-static/docs/development/best-practices.html +62 -0
- nautobot/project-static/docs/development/docker-compose-advanced-use-cases.html +62 -0
- nautobot/project-static/docs/development/extending-models.html +62 -0
- nautobot/project-static/docs/development/generic-views.html +62 -0
- nautobot/project-static/docs/development/getting-started.html +63 -1
- nautobot/project-static/docs/development/homepage.html +62 -0
- nautobot/project-static/docs/development/index.html +62 -0
- nautobot/project-static/docs/development/navigation-menu.html +62 -0
- nautobot/project-static/docs/development/release-checklist.html +62 -0
- nautobot/project-static/docs/development/style-guide.html +62 -0
- nautobot/project-static/docs/development/templates.html +62 -0
- nautobot/project-static/docs/development/testing.html +62 -0
- nautobot/project-static/docs/development/user-preferences.html +62 -0
- nautobot/project-static/docs/docker/index.html +62 -0
- nautobot/project-static/docs/index.html +62 -0
- nautobot/project-static/docs/installation/centos.html +62 -0
- nautobot/project-static/docs/installation/external-authentication.html +62 -0
- nautobot/project-static/docs/installation/http-server.html +62 -0
- nautobot/project-static/docs/installation/index.html +62 -0
- nautobot/project-static/docs/installation/migrating-from-netbox.html +62 -0
- nautobot/project-static/docs/installation/migrating-from-postgresql.html +62 -0
- nautobot/project-static/docs/installation/nautobot.html +62 -0
- nautobot/project-static/docs/installation/selinux-troubleshooting.html +62 -0
- nautobot/project-static/docs/installation/services.html +62 -0
- nautobot/project-static/docs/installation/ubuntu.html +62 -0
- nautobot/project-static/docs/installation/upgrading.html +62 -0
- nautobot/project-static/docs/models/circuits/circuit.html +62 -0
- nautobot/project-static/docs/models/circuits/circuittermination.html +62 -0
- nautobot/project-static/docs/models/circuits/circuittype.html +62 -0
- nautobot/project-static/docs/models/circuits/provider.html +62 -0
- nautobot/project-static/docs/models/circuits/providernetwork.html +62 -0
- nautobot/project-static/docs/models/dcim/cable.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleport.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleserverport.html +62 -0
- nautobot/project-static/docs/models/dcim/consoleserverporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/device.html +62 -0
- nautobot/project-static/docs/models/dcim/devicebay.html +62 -0
- nautobot/project-static/docs/models/dcim/devicebaytemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/deviceredundancygroup.html +62 -0
- nautobot/project-static/docs/models/dcim/devicerole.html +62 -0
- nautobot/project-static/docs/models/dcim/devicetype.html +62 -0
- nautobot/project-static/docs/models/dcim/frontport.html +62 -0
- nautobot/project-static/docs/models/dcim/frontporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/interface.html +62 -0
- nautobot/project-static/docs/models/dcim/interfaceredundancygroup.html +62 -0
- nautobot/project-static/docs/models/dcim/interfacetemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/inventoryitem.html +62 -0
- nautobot/project-static/docs/models/dcim/location.html +62 -0
- nautobot/project-static/docs/models/dcim/locationtype.html +62 -0
- nautobot/project-static/docs/models/dcim/manufacturer.html +62 -0
- nautobot/project-static/docs/models/dcim/platform.html +62 -0
- nautobot/project-static/docs/models/dcim/powerfeed.html +62 -0
- nautobot/project-static/docs/models/dcim/poweroutlet.html +62 -0
- nautobot/project-static/docs/models/dcim/poweroutlettemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/powerpanel.html +62 -0
- nautobot/project-static/docs/models/dcim/powerport.html +62 -0
- nautobot/project-static/docs/models/dcim/powerporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/rack.html +62 -0
- nautobot/project-static/docs/models/dcim/rackgroup.html +62 -0
- nautobot/project-static/docs/models/dcim/rackreservation.html +62 -0
- nautobot/project-static/docs/models/dcim/rackrole.html +62 -0
- nautobot/project-static/docs/models/dcim/rearport.html +62 -0
- nautobot/project-static/docs/models/dcim/rearporttemplate.html +62 -0
- nautobot/project-static/docs/models/dcim/region.html +62 -0
- nautobot/project-static/docs/models/dcim/site.html +62 -0
- nautobot/project-static/docs/models/dcim/virtualchassis.html +62 -0
- nautobot/project-static/docs/models/extras/computedfield.html +63 -1
- nautobot/project-static/docs/models/extras/configcontext.html +62 -0
- nautobot/project-static/docs/models/extras/configcontextschema.html +62 -0
- nautobot/project-static/docs/models/extras/customfield.html +62 -0
- nautobot/project-static/docs/models/extras/customlink.html +63 -1
- nautobot/project-static/docs/models/extras/dynamicgroup.html +62 -0
- nautobot/project-static/docs/models/extras/exporttemplate.html +62 -0
- nautobot/project-static/docs/models/extras/gitrepository.html +62 -0
- nautobot/project-static/docs/models/extras/graphqlquery.html +62 -0
- nautobot/project-static/docs/models/extras/imageattachment.html +62 -0
- nautobot/project-static/docs/models/extras/job.html +62 -0
- nautobot/project-static/docs/models/extras/jobbutton.html +63 -1
- nautobot/project-static/docs/models/extras/jobhook.html +62 -0
- nautobot/project-static/docs/models/extras/joblogentry.html +62 -0
- nautobot/project-static/docs/models/extras/jobresult.html +62 -0
- nautobot/project-static/docs/models/extras/note.html +62 -0
- nautobot/project-static/docs/models/extras/relationship.html +62 -0
- nautobot/project-static/docs/models/extras/secret.html +62 -0
- nautobot/project-static/docs/models/extras/secretsgroup.html +62 -0
- nautobot/project-static/docs/models/extras/status.html +62 -0
- nautobot/project-static/docs/models/extras/tag.html +62 -0
- nautobot/project-static/docs/models/extras/webhook.html +62 -0
- nautobot/project-static/docs/models/ipam/aggregate.html +62 -0
- nautobot/project-static/docs/models/ipam/ipaddress.html +62 -0
- nautobot/project-static/docs/models/ipam/prefix.html +62 -0
- nautobot/project-static/docs/models/ipam/rir.html +62 -0
- nautobot/project-static/docs/models/ipam/role.html +62 -0
- nautobot/project-static/docs/models/ipam/routetarget.html +62 -0
- nautobot/project-static/docs/models/ipam/service.html +62 -0
- nautobot/project-static/docs/models/ipam/vlan.html +62 -0
- nautobot/project-static/docs/models/ipam/vlangroup.html +62 -0
- nautobot/project-static/docs/models/ipam/vrf.html +62 -0
- nautobot/project-static/docs/models/tenancy/tenant.html +62 -0
- nautobot/project-static/docs/models/tenancy/tenantgroup.html +62 -0
- nautobot/project-static/docs/models/users/objectpermission.html +62 -0
- nautobot/project-static/docs/models/users/token.html +62 -0
- nautobot/project-static/docs/models/virtualization/cluster.html +62 -0
- nautobot/project-static/docs/models/virtualization/clustergroup.html +62 -0
- nautobot/project-static/docs/models/virtualization/clustertype.html +62 -0
- nautobot/project-static/docs/models/virtualization/virtualmachine.html +62 -0
- nautobot/project-static/docs/models/virtualization/vminterface.html +62 -0
- nautobot/project-static/docs/plugins/development.html +63 -1
- nautobot/project-static/docs/plugins/index.html +62 -0
- nautobot/project-static/docs/plugins/porting-from-netbox.html +62 -0
- nautobot/project-static/docs/release-notes/index.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.0.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.1.html +64 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +63 -1
- nautobot/project-static/docs/release-notes/version-1.3.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.4.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.5.html +62 -0
- nautobot/project-static/docs/release-notes/version-1.6.html +354 -188
- nautobot/project-static/docs/rest-api/authentication.html +62 -0
- nautobot/project-static/docs/rest-api/filtering.html +62 -0
- nautobot/project-static/docs/rest-api/overview.html +62 -0
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +197 -187
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guides/custom-fields.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/creating-devices.html +63 -1
- nautobot/project-static/docs/user-guides/getting-started/index.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/interfaces.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/ipam.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/platforms.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/regions.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/search-bar.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/tenants.html +62 -0
- nautobot/project-static/docs/user-guides/getting-started/vlans-and-vlan-groups.html +63 -1
- nautobot/project-static/docs/user-guides/git-data-source.html +62 -0
- nautobot/project-static/docs/user-guides/graphql.html +62 -0
- nautobot/project-static/docs/user-guides/relationships.html +62 -0
- nautobot/project-static/docs/user-guides/s3-django-storage.html +62 -0
- nautobot/tenancy/forms.py +10 -0
- nautobot/tenancy/views.py +1 -0
- nautobot/users/models.py +4 -0
- nautobot/utilities/testing/views.py +17 -1
- nautobot/utilities/tests/test_jinja_filters.py +26 -2
- nautobot/utilities/utils.py +14 -0
- nautobot/virtualization/forms.py +12 -0
- nautobot/virtualization/views.py +2 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/METADATA +1 -1
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/RECORD +235 -233
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/LICENSE.txt +0 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/NOTICE +0 -0
- {nautobot-1.6.31.dist-info → nautobot-1.6.32.dist-info}/WHEEL +0 -0
- {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>
|
|
@@ -4911,13 +4973,13 @@
|
|
|
4911
4973
|
<p>Please see the MySQL setup guides for <a href="../installation/ubuntu.html#mysql-setup">Ubuntu</a> and <a href="../installation/centos.html#mysql-setup">CentOS</a> to get started.</p>
|
|
4912
4974
|
<h4 id="plugin-defined-jinja2-filters">Plugin Defined Jinja2 Filters<a class="headerlink" href="#plugin-defined-jinja2-filters" title="Permanent link">¶</a></h4>
|
|
4913
4975
|
<p>Plugins can now define custom Jinja2 filters to be used when rendering templates defined within computed fields or custom links. To register your own filters, you may add a <code>jinja_filters.py</code> to your plugin and any filters defined there will be automatically registered and globally usable.</p>
|
|
4914
|
-
<p>Please see the <a href="../plugins/development.html#
|
|
4976
|
+
<p>Please see the <a href="../plugins/development.html#adding-jinja2-filters">plugin development documentation on including Jinja2 filters</a> to get started.</p>
|
|
4915
4977
|
<h4 id="read-only-jobs-200">Read Only Jobs (<a href="https://github.com/nautobot/nautobot/issues/200">#200</a>)<a class="headerlink" href="#read-only-jobs-200" title="Permanent link">¶</a></h4>
|
|
4916
4978
|
<p>Jobs may be optionally marked as read only by setting the <code>read_only = True</code> meta attribute. This prevents the job from making any changes to nautobot data and suppresses certain log messages. Read only jobs can be a great way to safely develop new jobs, and for working with reporting use cases. Please see the <a href="../additional-features/jobs.html">Jobs documentation</a> for more details.</p>
|
|
4917
4979
|
<h4 id="saved-graphql-queries-3">Saved GraphQL Queries (<a href="https://github.com/nautobot/nautobot/issues/3">#3</a>)<a class="headerlink" href="#saved-graphql-queries-3" title="Permanent link">¶</a></h4>
|
|
4918
4980
|
<p><a href="../additional-features/graphql.html#saved-queries">Saved GraphQL queries</a> offers a new model where reusable queries can be stored in Nautobot. New views for managing saved queries are available; additionally, the GraphiQL interface has been augmented to allow populating the interface from a saved query, editing and saving new queries.</p>
|
|
4919
4981
|
<p>Saved queries can easily be imported into the GraphiQL interface by using the new navigation tab located on the right side of the navbar. Inside the new tab are also buttons for editing and saving queries directly into Nautobot's databases.</p>
|
|
4920
|
-
<p>Additionally, two new <a href="../plugins/development.html#using-graphql-orm-
|
|
4982
|
+
<p>Additionally, two new <a href="../plugins/development.html#using-graphql-orm-utilities">GraphQL utility functions</a> have been added to allow easy access to the GraphQL system from source code. Both functions can be imported from <code>nautobot.core.graphql</code>:</p>
|
|
4921
4983
|
<ol>
|
|
4922
4984
|
<li><code>execute_query()</code>: Runs string as a query against GraphQL.</li>
|
|
4923
4985
|
<li><code>execute_saved_query()</code>: Execute a saved query from Nautobot database.</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>
|
|
@@ -5346,7 +5408,7 @@
|
|
|
5346
5408
|
<h4 id="networking-template-filters-1082">Networking Template Filters (<a href="https://github.com/nautobot/nautobot/issues/1082">#1082</a>)<a class="headerlink" href="#networking-template-filters-1082" title="Permanent link">¶</a></h4>
|
|
5347
5409
|
<p>Template rendering with Django and/or Jinja2 now supports by default all filters provided by the <a href="https://netutils.readthedocs.io/en/latest/index.html"><code>netutils</code></a> library. These filters can be used in page templates, computed fields, custom links, export templates, etc. For details, please refer to the <a href="../additional-features/template-filters.html">filters</a> documentation.</p>
|
|
5348
5410
|
<h4 id="organizational-branding-859">Organizational Branding (<a href="https://github.com/nautobot/nautobot/issues/859">#859</a>)<a class="headerlink" href="#organizational-branding-859" title="Permanent link">¶</a></h4>
|
|
5349
|
-
<p>Organizations may provide custom branding assets to change the logo, icons, and footer URLs to help Nautobot fit within their environments and user communities. Please see the <a href="../configuration/optional-settings.html#
|
|
5411
|
+
<p>Organizations may provide custom branding assets to change the logo, icons, and footer URLs to help Nautobot fit within their environments and user communities. Please see the <a href="../configuration/optional-settings.html#branding_filepaths">configuration documenation</a> for details on how to specify the location and usage of custom branding assets.</p>
|
|
5350
5412
|
<h4 id="plugin-banners-534">Plugin Banners (<a href="https://github.com/nautobot/nautobot/issues/534">#534</a>)<a class="headerlink" href="#plugin-banners-534" title="Permanent link">¶</a></h4>
|
|
5351
5413
|
<p>Each plugin is now able to optionally inject a custom banner into any of the Nautobot core views.</p>
|
|
5352
5414
|
<p>Please refer to the <a href="../plugins/development.html">plugin development documentation</a> for more details about this functionality.</p>
|
|
@@ -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>
|