src/templates/UnidadMilitar/index.html.twig line 1

Open in your IDE?
  1. {% extends "@crud\\crudtree\\index.html.twig" %}
  2. {% block javascripts %}
  3.     {{ parent() }}
  4.     <script src="{{ asset('ace/js/jquery.table2excel.js') }}"></script>
  5. {% endblock javascripts %}
  6. {% block jquery_functions %}
  7.     {{ parent() }}
  8.     
  9.     function exportarExcel(){
  10.         $("#treetable").table2excel({
  11.             filename: "reporteParametrizacionLugar.xls"
  12.         });
  13.     };
  14. {% endblock jquery_functions %}
  15. {% block arbol %}
  16.    {% include 'UnidadMilitar\\arbol.html.twig' %}
  17. {% endblock %}
  18.