{% extends "base.html" %} {% block title %}{{ page_title }} - AgomTradePro{% endblock %} {% block content %} {% include "components/json_assistant_assets.html" %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %} {% endfor %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.name == "extra_config_text" %} {% include "components/json_assistant.html" with textarea_id=field.id_for_label enable_builder=True %}
参数填写器
{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
取消 返回列表
{% endblock %}