{% extends 'layout.html.twig' %} {% block stylesheets %} {{parent()}} {% endblock %} {% block body %} {{ parent() }}
{% if missionCategory|length > 0 %}
{% for mc in missionCategory %} {% endfor %}
ID {% trans %}NAME{% endtrans %} {% trans %}DESCRIPTION{% endtrans %} {% trans %}ACTIONS{% endtrans %}
{{mc.id}} {{mc.name}} {{mc.description}}
{{ include ('Clientes/forms/form.html.twig',{form: deleteform_ajax,message:'Estás seguro?',id:"form-delete",with_submit:false}) }} {% else %}

{% trans %}There are not missions created{% endtrans %}

{% endif %} {% trans %}Add mission category{% endtrans %} {{ include ('Mission/Form/addMissionCategoryForm.html.twig',{form: addform_ajax,message:'Estás seguro?',id:"form-add",with_submit:false}) }}
{% endblock %}