{% extends 'base.html' %} {% block css %} {% endblock %} {% block content %}

发送祝福

{% csrf_token %}
{{ form.name.label_tag }} {{ form.name }} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.content.label_tag }} {{ form.content }} {% if form.content.errors %}
{{ form.content.errors }}
{% endif %}
推荐祝福语:
{% for blessing in random_blessings %}
{{ blessing.content }}
{% empty %}
暂无推荐祝福语
{% endfor %}
{{ form.image.label_tag }} {{ form.image }} {% if form.image.errors %}
{{ form.image.errors }}
{% endif %}
{% endblock %} {% block js %} {% endblock %}