diff --git a/kallithea/templates/admin/auth/auth_settings.html b/kallithea/templates/admin/auth/auth_settings.html --- a/kallithea/templates/admin/auth/auth_settings.html +++ b/kallithea/templates/admin/auth/auth_settings.html @@ -28,7 +28,7 @@

${_('Authentication Plugins')}

-
+
${h.text("auth_plugins", class_='large')} ${_('Comma-separated list of plugins; Kallithea will try user authentication in plugin order')}
${_('Available built-in plugins')}
@@ -58,7 +58,7 @@ <% displayname = (setting["formname"] if ("formname" in setting) else setting["name"]) %> %if setting["type"] == "password":
-
+
${h.password(fullsetting,class_='small')} ${setting["description"]} @@ -66,7 +66,7 @@
%elif setting["type"] in ["string", "int"]:
-
+
${h.text(fullsetting,class_='small')} ${setting["description"]} @@ -74,7 +74,7 @@
%elif setting["type"] == "bool":
-
+
${h.checkbox(fullsetting,True,class_='small')}
${setting["description"]} @@ -82,7 +82,7 @@
%elif setting["type"] == "select":
-
+
${h.select(fullsetting,setting['values'][0],setting['values'],class_='small')} ${setting["description"]} @@ -90,7 +90,7 @@
%else:
-
+
This field is of type ${setting['type']}, which cannot be displayed. Must be one of [string|int|bool|select].
${setting["description"]}