view kallithea/templates/admin/settings/settings_search.html @ 4212:24c0d584ba86 kallithea-2.2.5-rebrand

General renaming to Kallithea
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:06:01 -0400
parents d1addaf7a91e
children dacdea9fda2a
line wrap: on
line source

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

        <div class="fields">
            <div class="field">
                <div class="label label-checkbox">
                    <label>${_('Index build option')}:</label>
                </div>
                <div class="checkboxes">
                    <div class="checkbox">
                        ${h.checkbox('full_index',True)}
                        <label for="full_index">${_('Build from scratch')}</label>

                    </div>
                    <span class="help-block">${_('This option completely reindex all the files within Kallithea for proper fulltext search capabilities.')}</span>

                </div>
            </div>

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