Changeset - b5d899e51ffe
[Not reviewed]
default
0 1 0
Andrew Shadura - 11 years ago 2015-01-07 16:03:59
andrew@shadura.me
Grafted from: 34f00fdf04af
auth: move the Save button down to the bottom of the page
1 file changed with 5 insertions and 3 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/auth/auth_settings.html
Show inline comments
 
@@ -44,15 +44,12 @@
 
                      </div>
 
                    </li>
 
               %endfor
 
               </ul>
 
           </div>
 
       </div>
 
       <div class="buttons">
 
          ${h.submit('save',_('Save'),class_="btn")}
 
       </div>
 
    </div>
 

	
 
    %for cnt, module in enumerate(c.auth_plugins):
 
        <% pluginName = c.auth_plugins_shortnames[module] %>
 
        <h1>${_('Plugin')}: ${pluginName}</h1>
 
        <div class="fields">
 
@@ -99,12 +96,17 @@
 
                <span class="help-block">${setting["description"]}</span>
 
            </div>
 
            %endif
 
        %endfor
 
        </div>
 
    %endfor
 
        <div class="fields">
 
            <div class="buttons">
 
                ${h.submit('save',_('Save'),class_="btn")}
 
            </div>
 
        </div>
 
    </div>
 
    ${h.end_form()}
 
</div>
 

	
 
<script>
 
    $('.toggle-plugin').click(function(e){
0 comments (0 inline, 0 general)