From a5c7676be67d3abeeef71dc2ac7937d2734e4723 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 4 Oct 2021 19:25:42 +0200 Subject: [PATCH] set nav-tab name --- InvenTree/plugins/samples/integration/sample.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/InvenTree/plugins/samples/integration/sample.py b/InvenTree/plugins/samples/integration/sample.py index d947874e0b..119bd19d3a 100644 --- a/InvenTree/plugins/samples/integration/sample.py +++ b/InvenTree/plugins/samples/integration/sample.py @@ -15,6 +15,8 @@ class SampleIntegrationPlugin(SettingsMixin, UrlsMixin, NavigationMixin, Integra PLUGIN_SLUG = "sample" PLUGIN_TITLE = "Sample Plugin" + NAVIGATION_TAB_NAME = "Sample Nav" + def view_test(self, request): """very basic view""" return HttpResponse(f'Hi there {request.user.username} this works')