{% extends "nsclc/base.html" %} {% block title %} Patient|Oncogene mutation profiling {% endblock %} {% block head %} {% endblock %} {% block content %}

Patient

{% ifequal object.Physician.dept 'surg' %}
病患姓名 病歷號碼 出生年月日 性別 診斷日期 組織學型態 初次腦轉移日期 醫師
{{ object.Patient.name }} {{ object.Patient.medical_records }} {{ object.Patient.birthday }} {{ object.Patient.gender }} {{ object.DxDate }} {{ object.Histology }} {{ object.BMDate }} {% else %} {% endifequal %} {{ object.Physician.name }}

{% for field in object.fields %} {% endfor %}
{{field.verbose_name}} {{field.value}}
{% for field in object.many_to_many %} {% endfor %}
{{field.verbose_name}} {% for v in field.value %} {{v}}
{% endfor %}

{% for treatment in object.Patient.treatment_set.all %}
Treament ID 病床號 ICD9診斷 其他診斷 Tracking Mode Date Accounting
{{ treatment.id }} {{ treatment.bed }} {{ treatment.icd9 }} {{ treatment.other_diagnosis }} {{ treatment.get_tracking_mode_display }} {{ treatment.date_started }} ~ {{ treatment.date_completed }} {{ treatment.get_accounting_display }}
{% for lesion in treatment.lesion_set.all %} {% endfor %}
Lesion ID Target Location Anatomic Sublocation Pathology Target Volume (mm3) Dimensions (mm) Dose(cGy) RECIST最佳反應 電腦刀治療病灶惡化(RECIST) 電腦刀治療病灶惡化日期 MRI影像判讀偽惡化
{{ lesion.id }} {{ lesion.sub_location.target_location }} {{ lesion.sub_location }} {{ lesion.pathology }} {{ lesion.volume }} {{ lesion.dimensions }} {{ lesion.dose }}/{{ lesion.fractions }} {{ lesion.ntarget_set.all.0.TargetResponse }} {{ lesion.ntarget_set.all.0.TargetControl }} {{ lesion.ntarget_set.all.0.TargetControlDate }} {{ lesion.ntarget_set.all.0.Pseudoprogression }} {% if lesion.ntarget_set.all.count %} {% else %} {% endif %}

{% endfor %} {% endblock %}