1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Only use module.name for human-facing display

This commit is contained in:
Jeremy Stretch
2019-10-30 09:13:26 -04:00
parent fd3f718a0a
commit 0f65cf23a5
3 changed files with 10 additions and 5 deletions

View File

@ -375,7 +375,7 @@ class ScriptListView(PermissionRequiredMixin, View):
def get(self, request):
return render(request, 'extras/script_list.html', {
'scripts': get_scripts(),
'scripts': get_scripts(use_names=True),
})