{% extends 'bootstrap_base.html' %} {% from 'bootstrap5/form.html' import render_field %} {% block header %}

Task {{task_index | safe}} / {{task_total | safe}}

You are asked to propose a step-wise plan to execute in the next stage. Please notice that, all the major steps. like 1. 2., will be transformed to one action in the execution stage. The intermediate steps are providing details of the execution (e.g., bank card). All potential actions can be viewed with the button under task description. Please double check your plan with all potential actions before moving forward.

{% endblock %} {% block content %}

Task Description:

{{ tp_query | safe}}

Plan:

{% if tp_plan|length == 0 %}

None

{% elif tp_plan|length > 0 %}
{% endif %} {% macro _hz_form_wrap(horizontal_columns, form_type, add_group=False, required=False) %} {% if form_type == "horizontal" %} {% if add_group %}
{% endif %}
{% endif %} {{ caller() }} {% endmacro %} {% macro render_radio_field(field, form_type="basic", horizontal_columns=('lg', 2, 10), button_map={}, button_style='', button_size='') %} {% if field.flags.required and not required in kwargs %} {% set kwargs = dict(required=True, **kwargs) %} {% endif %} {% set extra_classes = ' ' + field.render_kw.class if field.render_kw.class else '' %}
{{ field.label(class="form-control-label")|safe }}
{#% call _hz_form_wrap(horizontal_columns, form_type, True, required=required) %#} {% for item in field -%}
{{ item(class_="form-check-input")|safe }} {{ item.label(class="form-check-label", for=item.id)|safe }}
{% endfor %} {#% endcall %#} {%- if field.errors %} {%- for error in field.errors %}
{{ error }}
{%- endfor %} {%- elif field.description -%} {{ field.description|safe }} {%- endif %}
{% endmacro %}
{{form.hidden_tag()}}
{% endblock %}