fieldset_bottom.twig 410 B

1234567891011121314
  1. {% set colspan = 2 %}
  2. {% if is_setup %}
  3. {% set colspan = colspan + 1 %}
  4. {% endif %}
  5. {% if show_buttons %}
  6. <tr>
  7. <td colspan="{{ colspan }}" class="lastrow">
  8. <input type="submit" name="submit_save" value="{% trans 'Apply' %}" class="green" />
  9. <input type="button" name="submit_reset" value="{% trans 'Reset' %}" />
  10. </td>
  11. </tr>
  12. {% endif %}
  13. </table>
  14. </fieldset>