view kallithea/templates/admin/settings/settings_email.html @ 6277:4304595d246c

style: in preparation for Bootstrap, refactor to use Bootstrap compatible form class names Based on work by Dominik Ruf. Mostly: sed -i \ -e 's,<table>,<table class="table">,g' \ -e 's,<div class="fields">,<div class="form-horizontal">,g' \ -e 's,<div class="field">,<div class="form-group">,g' \ -e 's,<label for="\([^"]*\)">,<label class="control-label" for="\1">,g' \ `hg mani` cat kallithea/public/css/style.css | \ sed -e '/\.fields\>/{p;s/\.fields/.form-horizontal/g}' | \ sed -e '/\.fields\>/s/ {$/,/g' | \ sed -e '/\.field\>/{p;s/\.field\>/.form-group/g}' | \ sed -e '/\.field\>/s/ {$/,/g' | \ sed -e '/\.fields\>.*\.form-group\>/d' | \ sed -e '/\.form-horizontal\>.*\.field\>/d ' | \ cat - > kallithea/public/css/style.css.tmp mv kallithea/public/css/style.css.tmp kallithea/public/css/style.css
author Mads Kiilerich <madski@unity3d.com>
date Mon, 24 Oct 2016 21:45:09 +0200
parents b7654d1675da
children d27572fa323c
line wrap: on
line source

${h.form(url('admin_settings_email'), method='post')}
    <div class="form">

        <div class="form-horizontal">
            <div class="form-group">
                <div class="label">
                    <label class="control-label" for="test_email">${_('Send test email to')}:</label>
                </div>
                <div class="input">
                    ${h.text('test_email',size=30)}
                </div>
            </div>

            <div class="buttons">
            ${h.submit('send',_('Send'),class_="btn btn-default")}
            </div>
        </div>
    </div>
${h.end_form()}