📜  django 消息 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:12.788000             🧑  作者: Mango

代码示例5
{% extends 'base.html' %}

{% block content %}
  

Sign up

{% csrf_token %} {% for field in form %}

{{ field.label_tag }}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}

{{ error }}

{% endfor %}

{% endfor %}
{% endblock %}