continue_insertion_form.twig 807 B

12345678910111213141516171819
  1. <form id="continueForm" method="post" action="tbl_replace.php" name="continueForm">
  2. {{ Url_getHiddenInputs(db, table) }}
  3. <input type="hidden" name="goto" value="{{ goto }}">
  4. <input type="hidden" name="err_url" value="{{ err_url }}">
  5. <input type="hidden" name="sql_query" value="{{ sql_query }}">
  6. {% if has_where_clause %}
  7. {% for key_id, where_clause in where_clause_array %}
  8. <input type="hidden" name="where_clause[{{ key_id }}]" value="
  9. {{- where_clause|trim }}">
  10. {% endfor %}
  11. {% endif %}
  12. {% set insert_rows %}
  13. <input type="number" name="insert_rows" id="insert_rows" value="
  14. {{- insert_rows_default }}" min="1">
  15. {% endset %}
  16. {{ 'Continue insertion with %s rows'|trans|format(insert_rows)|raw }}
  17. </form>