Type |
{{ tactic.getTypeLabel() }}
{% if tactic.vendor is not null %}
{{ tactic.vendor.name }}
{% endif %}
|
To Be Executed |
{{ tactic.getStartsOn()|date(date_format) }}
{% if tactic.getEndsOn() is not null %}
to {{ tactic.getEndsOn()|date(date_format) }}
{% endif %}
|
{% if blabel is defined %}{{ blabel }}{% else %}Total Budget{% endif %} |
{{ currency }} {{ tactic.getBudget()|number_format(2, '.', ',') }} |
Created By | {{ tactic.getCreator().getFullname() }} |
Description |
{% if tactic.detail is not null %}
{{ tactic.detail }}
{% elseif tactic.background is not null %}
Background
{{ tactic.background|raw }}
Purpose of Activity
{{ tactic.purpose|raw }}
Methodology
{{ tactic.methodology|raw }}
{% endif %}
|
Created On |
{% if app.user is not null %}
{{ tactic.getCreatedOn()|date(datetime_format, app.user.timezone) }}
{% else %}
{{ tactic.getCreatedOn()|date(datetime_format) }}
{% endif %}
|
Last Modified By |
{% if tactic.getModifier() is not null %}{{ tactic.getModifier().getFullname() }}{% endif %} |
Status | {{ tactic.getStatusLabel() }} |
Last Modified On |
{% if tactic.getModifiedOn() is not null %}
{% if app.user is not null %}
{{ tactic.getModifiedOn()|date(datetime_format, app.user.timezone) }}
{% else %}
{{ tactic.getModifiedOn()|date(datetime_format) }}
{% endif %}
{% endif %}
|
AP Approval |
{{ tactic.getInstanceApprovalStatus(AP) }}
{% for approval in tactic.getApprovals() %}
{{ approval.getLevel().getName() }}; {{ approval.getStatusLabel() }};
{% if approval.getDoneBy() is not null %}
{{ approval.getDoneBy().getFullname() }}
{% endif %}
{% endfor %}
|
{% if tactic.activityPlanIsApproved() %}
REQN Approval |
{{ tactic.getInstanceApprovalStatus(REQN) }}
{% for approval in tactic.getApprovals(REQN) %}
{{ approval.getLevel().getName() }}; {{ approval.getStatusLabel() }};
{% if approval.getDoneBy() is not null %}
{{ approval.getDoneBy().getFullname() }}
{% endif %}
{% endfor %}
|
{% endif %}
{% if tactic.activityPlanIsApproved() %}
FR Required |
{% if tactic.fieldReportIsRequired() %}Yes{% else %}No{% endif %} |
{% if tactic.fieldReportIsRequired() %}
FR Approval |
{% if tactic.isDone() %}
{{ tactic.getInstanceApprovalStatus(FR) }}
{% for approval in tactic.getApprovals(FR) %}
{{ approval.getLevel().getName() }}; {{ approval.getStatusLabel() }};
{% if approval.getDoneBy() is not null %}
{{ approval.getDoneBy().getFullname() }}
{% endif %}
{% endfor %}
{% else %}
The tactic is not yet 'Marked As Done'.
{% endif %}
|
{% endif %}
{% endif %}
{% if tactic.requisitionIsApproved() %}
Funds Released |
{% if tactic.fundsHaveBeenReleased() %}Yes{% else %}No{% endif %} |
Accounted For |
{% if tactic.isAccountedFor() %}Yes{% else %}No{% endif %} |
{% endif %}