{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Convert to QI Project" %} - PX360{% endblock %} {% block content %}
{% trans "Back to Action" %}

{% trans "Convert PX Action to QI Project" %}

{% trans "Transform this action into a formal Quality Improvement project" %}

{% trans "Project Details" %}

{% csrf_token %}
{{ form.template }} {% if form.template.errors %}

{{ form.template.errors.0 }}

{% endif %}

{% trans "Select a template to pre-fill project details, or leave blank for empty project" %}

{{ form.project_name }} {% if form.project_name.errors %}

{{ form.project_name.errors.0 }}

{% endif %}
{{ form.project_lead }} {% if form.project_lead.errors %}

{{ form.project_lead.errors.0 }}

{% endif %}
{{ form.target_completion_date }} {% if form.target_completion_date.errors %}

{{ form.target_completion_date.errors.0 }}

{% endif %}
{% trans "Cancel" %}

{% trans "PX Action Details" %}

{% trans "Title" %}

{{ action.title }}

{% trans "Hospital" %}

{{ action.hospital.name }}

{% if action.department %}

{% trans "Department" %}

{{ action.department.name }}

{% endif %}

{% trans "Priority" %}

{{ action.get_priority_display }}

{% trans "Status" %}

{{ action.get_status_display }}
{% if action.description %}

{% trans "Description" %}

{{ action.description|truncatewords:30 }}

{% endif %}

{% trans "What happens next?" %}

{% trans "Converting this action to a QI Project will create a structured project with tasks, team members, and outcome tracking." %}

{% endblock %}