{% extends 'inventory/base.html' %} {% load crispy_forms_tags %} {% block title %} {% if level %}编辑会员等级{% else %}添加会员等级{% endif %} - {{ block.super }} {% endblock %} {% block content %}

{% if level %} 编辑会员等级: {{ level.name }} {% else %} 添加会员等级 {% endif %}

返回列表
{% csrf_token %}
{{ form.name|as_crispy_field }}
{{ form.discount|as_crispy_field }} 折扣率范围: 0.00-1.00 (0表示无折扣,1表示不打折)
{{ form.points_threshold|as_crispy_field }} 会员积分达到此阈值时将自动升级到此等级
取消
{% endblock %}