{% extends "::base.html.twig" %} {% form_theme form inline_form_theme %} {% block title 'Output Indicator Details' %} {% block content %} {{ form(form) }} {% set id = oi.getId() %}
Output Indicator Details
Output - {{ oi.getOutput().getOutput() }}
Indicator - {{ oi.getIndicator().getName() }}, Target - {{ oi.getTarget() }}, Status - {{ oi.getStatusLabel() }} {% if oi.getBaseline() is not null %}, Baseline - {{ oi.getBaseline() }} {% endif %}
{% for ms in oi.getMilestones() %} {% set mid = ms.getId() %} {% else %} {% endfor %}
Milestones
DeadlineTarget Action
{{ ms.getDeadline()|date(date_format) }} {{ ms.getTarget() }} {{ include('AlsuiteProjectBundle:Milestone:del.html.twig', {'id': mid, 'action': 'Delete', 'object': 'Milestone', 'modal': 'mile', 'route': path('milestone_del', {'milestone': mid})}) }}
There are no milestones under this output indicator.
{% endblock %} {% block javascripts %} {{ form_javascript(form) }} {% endblock %}