src/templates/RegionProvinciaCantonParroquia/index_jefes.html.twig line 1

Open in your IDE?
  1. {% extends "@crud\\crud\\index_inner_modal.html.twig" %}
  2. {#% block button_new_no_elements_href %}
  3.     href="{{ path('crud_plain_new', {'routeClassName': routeClassName } ) }}"
  4. {% endblock button_new_no_elements_href %#}
  5. {#% block button_new_elements %}
  6.     {% set texto = routeClassName~'.singular' %}     
  7.     {% set onClick = "javascript:creaNuevo('"~routeClassName~"', '"~  texto | trans({}, 'crud') ~"',"~ widthModalForm ~","~ heightModalForm ~"); return false;" %}
  8.     .append("<div id='{{routeClassName}}_botonNuevoDiv' class='forChanges'><a id='{{routeClassName}}_botonNuevoBoton' onclick='{{ onClick }}' href='{{ path('especialista_new', {'routeClassName': routeClassName } ) }}'><button class='btn btn-white btn-inverse btn-bold btn-round' title='{% trans from 'crud' %}botones.nuevo{% endtrans %}'><i class='fas fa-plus green'></i><span class='hidden-xs'>{% trans from 'crud' %}botones.nuevo{% endtrans %}</span></button></a></div>")
  9. {% endblock button_new_elements %#}
  10.       
  11. {#% block edit_action %} 
  12.     {% set href=path('crud_plain_edit', { 'routeClassName': routeClassName, 'id': entity.id }) %}
  13.     {% set texto=routeClassName~'.singular' %}
  14.     <a href="" itemid="{{ entity.id }}" onclick="javascript:editModal('{{ routeClassName }}','{{ href }}', '{{ texto | trans({}, 'crud') }}',{{ widthModalForm }}, {{ heightModalForm }}); return false;">
  15.         <i class="{{ buttons['edit'] }}" title="{% trans from 'crud' %}index.acciones.edit_alt{% endtrans %}"></i>
  16.     </a>
  17. {% endblock edit_action %#}    
  18. {#% block delete_action %}   
  19.     {% set href=path('crud_plain_delete', { 'id': entity.id, 'routeClassName': routeClassName }) %}
  20.     <a class="del_modal_{{ routeClassName }}" href="{{ href }}" itemid="{{ entity.id }}">
  21.         <i class="{{ buttons['delete'] }}" title="{% trans from 'crud' %}index.acciones.delete_alt{% endtrans %}"></i>
  22.     </a>
  23. {% endblock delete_action %#}  
  24. {% block secondary_heading %}
  25. {% endblock %}
  26. {% block filter %}
  27. {% endblock filter %}
  28. {% block on_modal_success %}
  29.     if (data.reload) {
  30.         document.location.href="";
  31.     } else {
  32.         var url="{% autoescape %}{{ path('crud_index', {'routeClassName': routeClassName, 'filterData': filter, 'idParent' : parent, 'view': index_view} ) }}{% endautoescape %}";
  33.         reloadContenedor('{{ routeClassName }}',url);
  34.     }
  35. {% endblock on_modal_success %}