From 452a7af9495b7a0d610106406dd251bc9a749b4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 16 Oct 2014 11:27:54 +0200 Subject: [PATCH] forms: mark forms requiring an authentication with a class (#5700) --- wcs/forms/root.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wcs/forms/root.py b/wcs/forms/root.py index 8db191d..a7ca7b6 100644 --- a/wcs/forms/root.py +++ b/wcs/forms/root.py @@ -954,9 +954,9 @@ class RootDirectory(AccessControlled, Directory): url_prefix, formdef.url_name, _('(listing)')) r += htmltext('') for formdef in advertised_forms: - r += htmltext('
  • ') + r += htmltext('
  • ') r += htmltext('%s') % (url_prefix, formdef.url_name, formdef.name) - r += htmltext(' (%s)
  • ') % _('authentication required') + r += htmltext(' (%s)') % _('authentication required') r += htmltext('') r += htmltext('') return r.getvalue() -- 2.1.1