diff --git a/rhodecode/templates/admin/auth/plugin_settings.html b/rhodecode/templates/admin/auth/plugin_settings.html --- a/rhodecode/templates/admin/auth/plugin_settings.html +++ b/rhodecode/templates/admin/auth/plugin_settings.html @@ -49,6 +49,7 @@
${h.secure_form(request.resource_path(resource, route_name='auth_home'))}
+ %for node in plugin.get_settings_schema(): <% label_css_class = ("label-checkbox" if (node.widget == "bool") else "") %>
@@ -75,9 +76,17 @@
%endfor + + ## Allow derived templates to add something below the form + ## input fields + %if hasattr(next, 'below_form_fields'): + ${next.below_form_fields()} + %endif +
${h.submit('save',_('Save'),class_="btn")}
+
${h.end_form()}