{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Comment Action Plans" %} - PX360{% endblock %} {% block content %}
{% trans "Track action plans derived from patient comments" %}
| {% trans "#" %} | {% trans "Recommendation" %} | {% trans "Frequency" %} | {% trans "Status" %} | {% trans "Timeframe" %} | {% trans "Evidence" %} |
|---|---|---|---|---|---|
| {{ plan.problem_number|default:"—" }} | {{ plan.recommendation|truncatewords:20 }} | {{ plan.frequency }} | {% if plan.status == 'completed' %} {% trans "Completed" %} {% elif plan.status == 'on_process' %} {% trans "On Process" %} {% else %} {% trans "Pending" %} {% endif %} | {{ plan.timeframe|default:"—" }} | {{ plan.evidences|truncatewords:10|default:"—" }} |
{% trans "No action plans found." %}