{% extends 'layouts/base.html' %} {% load i18n %} {% block title %}{% trans "Create Action Plan" %} - PX360{% endblock %} {% block content %}

{% trans "Create Action Plan" %}

{% trans "Create a new improvement action plan manually" %}

{% trans "Back to Actions" %}
{% trans "Action Plan Details" %}
{% csrf_token %}
{{ form.source_type }} {% if form.source_type.errors %}
{{ form.source_type.errors.0 }}
{% endif %} {% trans "Select where this action plan originated from" %}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
{{ form.hospital }} {% if form.hospital.errors %}
{{ form.hospital.errors.0 }}
{% endif %}
{{ form.department }} {% if form.department.errors %}
{{ form.department.errors.0 }}
{% endif %}
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors.0 }}
{% endif %}
{{ form.priority }} {% if form.priority.errors %}
{{ form.priority.errors.0 }}
{% endif %}
{{ form.severity }} {% if form.severity.errors %}
{{ form.severity.errors.0 }}
{% endif %}
{{ form.assigned_to }} {% if form.assigned_to.errors %}
{{ form.assigned_to.errors.0 }}
{% endif %} {% trans "User responsible for implementing this action" %}
{{ form.due_at }} {% if form.due_at.errors %}
{{ form.due_at.errors.0 }}
{% endif %}
{{ form.action_plan }} {% if form.action_plan.errors %}
{{ form.action_plan.errors.0 }}
{% endif %} {% trans "Describe the steps to address this issue" %}
{{ form.requires_approval }}
{% trans "Cancel" %}
{% trans "Action Plan Types" %}
{% trans "Meeting Sources:" %}
  • Patient & Family Rights Committee
  • Executive Committee
  • Department Meetings
  • Ward/Department Rounds
{% trans "Other Sources:" %}
  • Staff Feedback/Comments
  • Patient Observation
  • Quality Audit
  • Management Review
{% trans "Tips" %}
  • {% trans "Select the appropriate source type for accurate tracking" %}
  • {% trans "Assign to a responsible person for accountability" %}
  • {% trans "Set realistic due dates based on priority" %}
  • {% trans "Provide clear action steps for implementation" %}
{% endblock %}