{% extends "layouts/base.html" %} {% block title %}Comment Action Plans - PX360{% endblock %} {% block content %}

Steps 3-5 — Comment Action Plans

Track action plans derived from patient comments

Export Action Plans
{% regroup action_plans by department_label as dept_groups %} {% for dept, plans in dept_groups %}
{{ dept }} {{ plans|length }} plans
{% for plan in plans %} {% endfor %}
# Comment Freq Recommendation Responsible Dept Timeframe Status Evidences
{{ plan.problem_number }} {{ plan.comment_text }} {{ plan.frequency }} {{ plan.recommendation }} {{ plan.responsible_department }} {{ plan.timeframe }} {% if plan.status == 'completed' %}Completed {% elif plan.status == 'on_process' %}On Process {% else %}Pending{% endif %} {{ plan.evidences }}
{% empty %}
No action plans found.
{% endfor %}
{% endblock %}