{% extends "request_pay.html" %} {% block right_col %} {# TRANS: The label for a text box for setting the base payout amount. #}
{% trans %}Set Base Payout{% endtrans %}
{{ payout_form.csrf_token() }} {{ payout_form.id_() }} {{ payout_form.value.label(class="sr-only") }}
{% if srp_request.status != ActionType.evaluating %} {{ payout_form.value(class="form-control evaluating-only", placeholder=payout_form.value.label.text, disabled='') }} {% else %} {{ payout_form.value(class="form-control evaluating-only", placeholder=payout_form.value.label.text) }} {% endif %} {% if srp_request.status != ActionType.evaluating %} {# TRANS: A button that sets that when clicked will set the base payout of a request. #} {% else %} {% endif %}
{{ super() }} {% endblock right_col %} {% block list_modifiers %}
{{ macros.render_input(modifier_form.csrf_token) }} {{ macros.render_input(modifier_form.id_) }} {{ macros.render_input(modifier_form.type_) }}
{% if srp_request.status != ActionType.evaluating %} {{ modifier_form.value(class="form-control evaluating-only", disabled='') }} {% else %} {{ modifier_form.value(class="form-control evaluating-only") }} {% endif %}
{% if srp_request.status != ActionType.evaluating %}
{{ modifier_form.note.label }} {% if srp_request.status != ActionType.evaluating %} {{ modifier_form.note(class="form-control evaluating-only", disabled='') }} {% else %} {{ modifier_form.note(class="form-control evaluating-only") }} {% endif %}
{{ super() }} {% endblock list_modifiers %} {% block modifier_header %} {% if not modifier.voided and srp_request.status == ActionType.evaluating %}
{{ void_form.csrf_token }} {{ void_form.id_ }}
{% endif %} {{ super () }} {% endblock modifier_header %}