{% extends "::base.html.twig" %} {% form_theme form inline_form_theme %} {% block title "List Of WorkPlan Targets" %} {% block content %} {{ include(workplan_links, {'show_search': false}, with_context = false) }} {% set bill = constant('\\Alsuite\\ProjectBundle\\Entity\\Tactic::BILL') %} {% set purchase = constant('\\Alsuite\\ProjectBundle\\Entity\\Tactic::PURCHASE') %}
List Of WorkPlan Targets
{% for target in pagination %} {% set id = target.getId() %} {% if tgt is not null %} {% set selid = tgt.getId() %} {% else %} {% set selid = 0 %} {% endif %} {{ target.getDetail() }}

{% else %} There are no targets under this workplan.
Create a Target {% endfor %}
{{ knp_pagination_render(pagination) }}
Target Details
{% if tgt is not null %} {% set id = tgt.getId() %} {{ tgt.getDetail() }}
Edit Delete {{ include('AlsuiteProjectBundle:Target:targetDetails.html.twig', {'target': tgt}, with_context = false) }} {{ include('AlsuiteProjectBundle:Target:del.html.twig', {'id': id, 'action': 'Delete', 'object': 'Target', 'route': path('target_del', {'id': id})}, with_context = false) }}
{{ render(controller('AlsuiteProjectBundle:Target:getIndicators', {'id': tgt.getId()})) }}
{% else %} Please click on a target in the left panel to view its details here. {% endif %}
{% endblock %} {% block javascripts %} {% endblock %}