{% 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 %}