{% extends "base.html" %} {% load static %} {% load customtags %} {% block head %} {% include 'head_content.html' with title="LyProX ยท Patient detail" %} {% endblock head %} {% block content %} Patient {{ patient.pk }} Edit Delete {% if patient.dataset.institution.logo %} {% else %} {% endif %} histological diagnosis {{ patient.diagnose_date }} age {{ patient.age }} sex {{ patient.sex }} stage {{ patient.get_stage_prefix_display }} {{ patient.get_t_stage_display }} {{ patient.get_n_stage_display }} {{ patient.get_m_stage_display }} {{ patient.tnm_edition }}th alcohol abuse {{ patient.alcohol_abuse }} nicotine abuse {{ patient.nicotine_abuse }} HPV status {{ patient.hpv_status }} Neck dissection {{ patient.neck_dissection }} {% for tumor in patient.get_tumors %} {% include 'patients/tumor_detail.html' %} {% endfor %} {% if action == "create_tumor" or action == "update_tumor" %} {% include 'patients/tumor_form.html' %} {% elif action == "delete_tumor" %} {% include 'patients/tumor_delete.html' %} {% else %} Add tumor {% endif %} lymph node level involvement diagnose date modality side I (a / b) II (a / b) III IV V (a / b) VII {% for diagnose in patient.get_diagnoses %} {% include 'patients/diagnose_detail.html' %} {% endfor %} {% if action == "create_diagnose" or action == "update_diagnose" %} {% include 'patients/diagnose_form.html' %} {% elif action == "delete_diagnose" %} {% include 'patients/diagnose_delete.html' %} {% endif %} Add diagnose {% endblock content %}
Patient {{ patient.pk }}