{% extends "other_base.html" %} {% block title%}Submit|COVID-19 Detector{% endblock %} {% block content %}

预约挂号申请

就诊医院 {{ doctor.location }}
就诊科室 感染科
就诊医生 {{ doctor.name }}
就诊时间 {{ dateday.date }} {%if time=="1"%}上午{%else%}下午{%endif%}
{{ form.hidden_tag() }}
{{ form.name(class="form-control", placeholder="请输入就诊人姓名", value=current_user.name or "") }} {% for error in form.name.errors %} {{ error }} {% endfor %}
{{ form.id_number(class="form-control", placeholder="请输入证件号",value=current_user.id_number or "") }} {% for error in form.id_number.errors %} {{ error }} {% endfor %}
{{ form.phone(class="form-control", placeholder="请输入手机号",value=current_user.phone or "") }} {% for error in form.phone.errors %} {{ error }} {% endfor %}
{{ form.email(class="form-control", placeholder="请输入邮箱",value=current_user.email or "") }} {% for error in form.email.errors %} {{ error }} {% endfor %}
{{ form.gender(class="form-control") }} {% for error in form.gender.errors %} {{ error }} {% endfor %}
{{ form.age(class="form-control", placeholder="请输入年龄",value=current_user.age or "") }} {% for error in form.age.errors %} {{ error }} {% endfor %}
{{ form.location(class="form-control", placeholder="请输入家庭地址",value=current_user.location or "") }} {% for error in form.location.errors %} {{ error }} {% endfor %}
{% endblock %}