{% extends "base.html" %} {% load static %} {% block title %} {% if form.instance.id %}Edit Problem: {{ form.instance.problem_name }}{% else %}New Problem{% endif %} {% endblock %} {% block css %} {% endblock %} {% block content %}

{% if form.instance.id %} Edit Problem Update problem information {% else %} New Problem Create a new patient problem {% endif %}

{% if form.instance.id %} Edit Problem: {{ form.instance.problem_name }} {% else %} Problem Information {% endif %}

{% csrf_token %} {% if form.errors %}
Error! Please correct the errors below. {% if form.non_field_errors %}
    {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endif %}
Basic Information
{{ form.patient }}
{% if form.patient.errors %}
{{ form.patient.errors }}
{% endif %}
{{ form.problem_name }}
{% if form.problem_name.errors %}
{{ form.problem_name.errors }}
{% endif %}
{{ form.problem_type }}
{% if form.problem_type.errors %}
{{ form.problem_type.errors }}
{% endif %}
{{ form.related_encounter }}
{% if form.related_encounter.errors %}
{{ form.related_encounter.errors }}
{% endif %}
Coding Information
{{ form.problem_code }}
{% if form.problem_code.errors %}
{{ form.problem_code.errors }}
{% endif %}
{{ form.coding_system }}
{% if form.coding_system.errors %}
{{ form.coding_system.errors }}
{% endif %}
Clinical Information
{{ form.severity }}
{% if form.severity.errors %}
{{ form.severity.errors }}
{% endif %}
{{ form.priority }}
{% if form.priority.errors %}
{{ form.priority.errors }}
{% endif %}
{{ form.status }}
{% if form.status.errors %}
{{ form.status.errors }}
{% endif %}
{{ form.onset_date }}
{% if form.onset_date.errors %}
{{ form.onset_date.errors }}
{% endif %}
{{ form.onset_description }}
{% if form.onset_description.errors %}
{{ form.onset_description.errors }}
{% endif %}
{{ form.body_site }}
{% if form.body_site.errors %}
{{ form.body_site.errors }}
{% endif %}
{{ form.laterality }}
{% if form.laterality.errors %}
{{ form.laterality.errors }}
{% endif %}
Provider Information
{{ form.diagnosing_provider }}
{% if form.diagnosing_provider.errors %}
{{ form.diagnosing_provider.errors }}
{% endif %}
{{ form.managing_provider }}
{% if form.managing_provider.errors %}
{{ form.managing_provider.errors }}
{% endif %}
Notes & Documentation
{{ form.clinical_notes }} {% if form.clinical_notes.errors %}
{{ form.clinical_notes.errors }}
{% endif %}
{{ form.patient_concerns }} {% if form.patient_concerns.errors %}
{{ form.patient_concerns.errors }}
{% endif %}
Goals & Outcomes
{{ form.treatment_goals }} {% if form.treatment_goals.errors %}
{{ form.treatment_goals.errors }}
{% endif %}
{{ form.outcome_measures }} {% if form.outcome_measures.errors %}
{{ form.outcome_measures.errors }}
{% endif %}
Verification
{{ form.verified }}
{% if form.verified.errors %}
{{ form.verified.errors }}
{% endif %}
Cancel
Quick Tips
  • Fields marked with * are required.
  • Use ICD-10 codes when available for standardized documentation.
  • Set appropriate priority to ensure proper attention to critical problems.
  • Include specific body site and laterality for physical conditions.
Problem Types
Diagnosis
Confirmed medical condition
Finding
Clinical observation without definitive diagnosis
Symptom
Patient-reported subjective experience
Complaint
Patient concern or issue
Condition
Health state requiring attention
Status Information
Active
Current problem requiring attention
Resolved
Problem no longer present
Remission
Problem temporarily subsided
Recurrence
Problem has returned after resolution
Inactive
Problem still exists but not currently active
{% endblock %} {% block js %} {% endblock %}