Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fieldset_bottom.twig « form_display « config « templates - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c8d57000637f1409c2bf95b0ccb09a9c6a0fccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% set colspan = 2 %}
{% if is_setup %}
    {% set colspan = colspan + 1 %}
{% endif %}
{% if show_buttons %}
    <tr>
        <td colspan="{{ colspan }}" class="lastrow">
            <input class="btn btn-primary green" type="submit" name="submit_save" value="{% trans 'Apply' %}">
            <input class="btn btn-secondary" type="button" name="submit_reset" value="{% trans 'Reset' %}">
        </td>
    </tr>
{% endif %}
</table>
</fieldset>