From cc6e87c793864b0bfa24d12697de516c33a6f79b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 26 May 2020 20:48:25 +0200 Subject: [PATCH] backoffice: don't include custom view part in inspect URLs (#43351) --- wcs/backoffice/management.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wcs/backoffice/management.py b/wcs/backoffice/management.py index ac70afb29..f8166cab3 100644 --- a/wcs/backoffice/management.py +++ b/wcs/backoffice/management.py @@ -2695,7 +2695,8 @@ class FormBackOfficeStatusPage(FormStatusPage): (get_publisher().get_backoffice_root().is_accessible('forms') or get_publisher().get_backoffice_root().is_accessible('workflows'))): r += htmltext('
') - r += htmltext('

%s

') % _('Data Inspector') + r += htmltext('

' % formdata.get_url(backoffice=True)) + r += htmltext('%s

') % _('Data Inspector') r += htmltext('
') return r.getvalue()