{% extends "base.html" %} {% block content %}

完善个人信息

{% if not changeWSXX and isWSXX%}
你的个人信息

以下显示你当前的个人信息,你只有完善了信息才可以报名支教项目。信息将经过严格的保密。

{% csrf_token %} {% for field in information %}
{{field.label}}
{{field}}
{% endfor %}
电子邮箱
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% endif %} {% if isWSXX and changeWSXX %}
修改个人信息

在这里修改你的个人信息,请谨慎操作

{% csrf_token %} {% for field in information2 %}
{{field.label}}
{{field}}
{% endfor %}
{% endif %} {% if not isWSXX %}
完善个人信息

以下显示你的个人信息,你只有完善了信息才可以报名相关项目

{% csrf_token %} {% for field in information3 %}
{{field.label}}
{{field}}
{% endfor %}
{% endif %}
说明
请确保你的信息真实无误,否则影响到后续报名工作,后果自负。 电子邮箱的修改在个人中心当中。
{% endblock %}