Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

15 righe
410 B

  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>