{% extends "base.html" %} {% load static i18n widget_tweaks %} {% block title %}{{ form_title }} - Invest{% endblock %} {% block content %}
返回仪表盘

{{ form_title }}

价格留空时,成本将按交易日的市场收盘价估算。

{% csrf_token %} {% for field in form %}
{{ field|add_class:"w-full border border-stone-200 rounded-lg px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-200" }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}

{{ field.errors.0 }}

{% endif %}
{% endfor %}
取消
{% endblock %}