Allow to select which method should be used to in "Create from URL feature"

This commit is contained in:
Jan Böhmer 2026-05-02 23:23:20 +02:00
parent a2b9ee764d
commit aac5b8e0be
7 changed files with 198 additions and 15 deletions

View file

@ -16,6 +16,21 @@
{{ form_start(form) }}
{{ form_row(form.url) }}
{{ form_row(form.method) }}
<div class="row mb-2">
<div class="{{ col_input }} {{ offset_label }}">
<a data-bs-toggle="collapse" href="#infoSearchAdvancedPanel">{% trans %}info_providers.search.advanced_options{% endtrans %}</a>
</div>
</div>
<div class="collapse" id="infoSearchAdvancedPanel">
<div class="card card-body mb-2">
{{ form_row(form.no_cache) }}
</div>
</div>
{{ form_row(form.submit) }}
{{ form_end(form) }}
{% endblock %}