Changeset - ff58aa21f9a3
[Not reviewed]
default
0 1 0
Mads Kiilerich (mads) - 5 years ago 2021-01-10 01:05:32
mads@kiilerich.com
Grafted from: 481bb26548db
hooks: fix incorrect visual nesting in the admin UI

A form-group was missing.
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/settings/settings_hooks.html
Show inline comments
 
@@ -14,6 +14,7 @@
 
% if c.visual.allow_custom_hooks_settings:
 
${h.form(url('admin_settings_hooks'), method='post')}
 
<div class="form">
 
      <div class="form-group">
 
        <h4>${_('Custom Hooks')}</h4>
 
        <span class="help-block">${_('Hooks can be used to trigger actions on certain events such as push / pull. They can trigger Python functions or external applications.')}</span>
 
        %for hook in c.custom_hooks:
 
@@ -46,6 +47,7 @@ ${h.form(url('admin_settings_hooks'), me
 
                ${h.submit('save',_('Save'),class_="btn btn-default")}
 
            </div>
 
        </div>
 
      </div>
 
</div>
 
${h.end_form()}
 
% endif
0 comments (0 inline, 0 general)