{% extends "base.html" %} {% block head %} {% endblock %} {% block title %} Follow-up new volume {% endblock %} {% block content %}

Follow-up new volume

Patient ID{{ patient.id }} 姓名{{ patient.name }} 病歷號{{ patient.medical_records }} 性別{{ patient.get_gender_display }} 生日{{ patient.birthday }}
地址{{ patient.address }} 電話{{ patient.phone }} 身份證號{{ patient.id_cards }} Memo{{ patient.memo }} {% if patient.dead %} {{patient.dead}}已死亡 {% endif %}
身高(cm){{ patient.height }} 體重(kg){{ patient.weight }}

{% for treatment in patient.treatment_set.all %} {% for lesion in treatment.lesion_set.all %} {% for followup in lesion.lesionfollow_set.all %} {% endfor %} {% endfor %}
Lesion ID Target Location Anatomic Sublocation Pathology Date Target Volume (mm3) Prescription Dose (cGy) Number of Fractions Prescription Isodose Curve
{{ lesion.id }} {{ lesion.sub_location.target_location }} {{ lesion.sub_location }} {{ lesion.pathology }} {%ifequal lesion.start_date lesion.end_date%}{{lesion.end_date}}{%else%}{{lesion.start_date}} ~ {{lesion.end_date|date:"m-d"}}{%endifequal%} {{ lesion.volume }} {{ lesion.dose }} {{ lesion.fractions }} {{ lesion.iso_dose_curve }}%
Follow ID Date Followup volume (mm3) A (mm) B (mm) C (mm) Memo Delete
{{ followup.id }} {{ followup.Date }} {{ followup.Volume }} {{ followup.A }} {{ followup.B }} {{ followup.C }} {{ followup.Memo }} Delete
{% endfor %}
{% csrf_token %}

{{form.Lesion.label_tag}} {{form.Lesion.errors}}

{{form.Date.label_tag}}{{form.Date.errors}}

{{form.Volume.label_tag}}{{form.Volume}}{{form.Volume.errors}}

{{form.A.label_tag}}{{form.A}}{{form.A.errors}}

{{form.B.label_tag}}{{form.B}}{{form.B.errors}}

{{form.C.label_tag}}{{form.C}}{{form.C.errors}}

{{form.Memo.label_tag}}{{form.Memo}}{{form.Memo.errors}}

{% endblock %}