Files @ e77f5cd50f1f
Branch filter:

Location: kallithea/kallithea/templates/admin/settings/settings_search.html

Mads Kiilerich
style: change some div to span to make it inline and look better without custom styling - especially around gravatars
${h.form(url('admin_settings_search'), method='post')}
    <div class="form">

        <div class="form-horizontal">
            <div class="form-group">
                <label class="control-label">${_('Index build option')}:</label>
                <div>
                    <div class="checkbox">
                        <label>
                            ${h.checkbox('full_index',True)}
                            ${_('Build from scratch')}
                        </label>
                    </div>
                    <span class="help-block">${_('This option completely reindexeses all of the repositories for proper fulltext search capabilities.')}</span>
                </div>
            </div>

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