{% extends 'base.html.twig' %} {% block title %}{{ 'Show action'|trans }}{% endblock %} {% block body %}
  • {{ 'actions.title'|trans }}: {{ action.getTitle() }}
  • {{ 'actions.description'|trans }}: {{ action.getdescription() }}
  • {{ 'actions.plan'|trans }}: {{ action.getFkPlan().getTitle() }}
  • {{ 'actions.level'|trans }}: {{ action.getFkLevel().getName() }}
  • {{ 'actions.partner_contracts'|trans }}: {{ action.getPartnerContractsString() }}
  • {{ 'actions.mandatory'|trans }}: {{ (action.getMandatory())?'Yes'|trans:'No'|trans }}
  • {{ 'actions.notification_from'|trans }}: {{ action.getNotificationFrom().format('Y-m-d') }}
  • {{ 'actions.departments'|trans }}: {{(action.getFkDepartment())?action.getFkDepartment().getName():"" }}
  • {{ 'actions.timing'|trans }}: {{ action.getTimingString() }}
{% for document in action.documents%} {% endfor %}
{{ 'show_action.document_name'|trans }} {{ 'show_action.document_file'|trans }}
{{document.name}}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}