{% extends "@crud\\crudtree\\index.html.twig" %}
{% block javascripts %}
{{ parent() }}
<script src="{{ asset('ace/js/jquery.table2excel.js') }}"></script>
{% endblock javascripts %}
{% block jquery_functions %}
{{ parent() }}
function exportarExcel(){
$("#treetable").table2excel({
filename: "reporteParametrizacionLugar.xls"
});
};
{% endblock jquery_functions %}
{% block arbol %}
{% include 'UnidadMilitar\\arbol.html.twig' %}
{% endblock %}