You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
817 B
20 lines
817 B
2 years ago
|
<form id="continueForm" method="post" action="{{ url('/table/replace') }}" name="continueForm">
|
||
|
{{ get_hidden_inputs(db, table) }}
|
||
|
<input type="hidden" name="goto" value="{{ goto }}">
|
||
|
<input type="hidden" name="err_url" value="{{ err_url }}">
|
||
|
<input type="hidden" name="sql_query" value="{{ sql_query }}">
|
||
|
|
||
|
{% if has_where_clause %}
|
||
|
{% for key_id, where_clause in where_clause_array %}
|
||
|
<input type="hidden" name="where_clause[{{ key_id }}]" value="
|
||
|
{{- where_clause|trim }}">
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% set insert_rows %}
|
||
|
<input type="number" name="insert_rows" id="insert_rows" value="
|
||
|
{{- insert_rows_default }}" min="1">
|
||
|
{% endset %}
|
||
|
{{ 'Continue insertion with %s rows'|trans|format(insert_rows)|raw }}
|
||
|
</form>
|