src/Crud/templates/crud/formulario_edit.html.twig line 1

Open in your IDE?
  1. {% extends "@crud\\crud\\formulario.html.twig" %}
  2. {% block form_action %}
  3.     {{ form_start(form, {'attr': { 'class': 'form form_'~routeClassName, 'id': 'crud_form_'~routeClassName}, 'method': 'POST', 'action': path('crud_plain_update', {'rol': rol, 'id': entity.id, 'routeClassName': routeClassName})}) }}
  4. {% endblock %}
  5. {% block botones_form %}
  6.     {{ parent() }}
  7.             
  8.     <div class="row">
  9.         {% if deleteInIndex %} 
  10.             {% set col=4 %}
  11.         {% else %}    
  12.             {% set col=6 %}
  13.         {% endif %}    
  14.         <div class="col-xs-{{ col }}">
  15.                 <center>
  16.                     {% block action_retorno %}
  17.                         <a id="btn_retorno_{{ routeClassName }}" class="btn btn-white btn-inverse btn-bold btn-round" href="{{ path('crud_plain_back_to_list', {'rol': rol, 'routeClassName': routeClassName, 'id': entity.id,'from': 'edit'}) }}">
  18.                             {% trans from 'crud' %}botones.regresar{% endtrans %}
  19.                         </a>
  20.                     {% endblock %} 
  21.                 </center>
  22.             </div>    
  23.         <div class="col-xs-{{ col }}">
  24.                 <center>
  25.                     <input id="btn_save_{{ routeClassName }}" class="btn btn-white btn-inverse btn-bold btn-round" type="submit" value="{% trans from 'crud' %}botones.grabar{% endtrans %}" name="{{btnSave}}">
  26.                 </center>
  27.             </div>    
  28.         {% if deleteInIndex %}
  29.             <div class="col-xs-{{ col }}">
  30.                 <center>
  31.                     {% block action_delete %}
  32.                         <a id="btn_delete_{{ routeClassName }}" class="btn btn-white btn-inverse btn-bold btn-round del_item" href="{{ path('crud_plain_delete', { 'rol': rol, 'id' : entity.id, 'routeClassName': routeClassName }) }}">{% trans from 'crud' %}botones.eliminar{% endtrans %}</a>    
  33.                     {% endblock %}
  34.                 </center>
  35.             </div> 
  36.         {% endif %}    
  37.     </div>
  38. {% endblock %}