{% extends "base.html" %} {% block title %} Add a patient {% endblock %} {% block content %}

Add a patient

{% if result %} {% for patient in result %} {% endfor %}
Add 姓名 病歷號 性別 生日 地址 電話 身份證號
Add {{ patient.name }} {{ patient.medical_records }} {{ patient.gender }} {{ patient.birthday }} {{ patient.address }} {{ patient.phone }} {{ patient.id_cards }}

{% endif %}
{% csrf_token %} {{ form.as_table }}

{% endblock %}