Changeset - f7cc6f446f5c
[Not reviewed]
default
0 3 0
Mads Kiilerich - 9 years ago 2016-11-23 01:37:12
madski@unity3d.com
style: fix some missed field refactorings
3 files changed with 6 insertions and 8 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/repo_groups/repo_group_add.html
Show inline comments
 
@@ -49,7 +49,7 @@
 
                </div>
 
            </div>
 

	
 
            <div id="copy_perms" class="field">
 
            <div id="copy_perms" class="form-group">
 
                <label class="control-label" for="group_copy_permissions">${_('Copy parent group permissions')}:</label>
 
                <div class="checkboxes">
 
                    ${h.checkbox('group_copy_permissions',value="True")}
kallithea/templates/admin/repos/repo_add_base.html
Show inline comments
 
@@ -10,7 +10,7 @@ ${h.form(url('repos'))}
 
                ${h.text('repo_name',class_="small")}
 
            </div>
 
         </div>
 
        <div id="remote_clone" class="field">
 
        <div id="remote_clone" class="form-group">
 
            <label class="control-label" for="clone_uri">${_('Clone remote repository')}:</label>
 
            <div class="input">
 
                ${h.text('clone_uri',class_="small")}
 
@@ -33,7 +33,7 @@ ${h.form(url('repos'))}
 
                <span class="help-block">${_('Optionally select a group to put this repository into.')}</span>
 
            </div>
 
        </div>
 
        <div id="copy_perms" class="field">
 
        <div id="copy_perms" class="form-group">
 
            <label class="control-label" for="repo_copy_permissions">${_('Copy parent group permissions')}:</label>
 
            <div class="checkboxes">
 
                ${h.checkbox('repo_copy_permissions',value="True")}
kallithea/templates/admin/settings/settings_hooks.html
Show inline comments
 
@@ -20,7 +20,7 @@ ${h.form(url('admin_settings_hooks'), me
 
    <div class="form-horizontal">
 

	
 
        %for hook in c.custom_hooks:
 
            <div class="field"  id="${'id%s' % hook.ui_id }">
 
            <div class="form-group" id="${'id%s' % hook.ui_id }">
 
                <label class="control-label" for="${hook.ui_key}">${hook.ui_key}</label>
 
                <div class="input" style="margin-left:280px">
 
                    ${h.hidden('hook_ui_key',hook.ui_key)}
 
@@ -36,11 +36,9 @@ ${h.form(url('admin_settings_hooks'), me
 
        %endfor
 

	
 
        <div class="form-group">
 
            <div class="input" style="margin-left:-135px;position: absolute;">
 
                <div class="input">
 
            <label>
 
                    ${h.text('new_hook_ui_key',size=20)}
 
                </div>
 
            </div>
 
            </label>
 
            <div class="input" style="margin-left:280px">
 
                ${h.text('new_hook_ui_value',size=60)}
 
            </div>
0 comments (0 inline, 0 general)