Pass the full request URI (including GET params) to the datatables controller

Search options are passed as GET params and were therefore ignored before. This fixes issue #165.
This commit is contained in:
Jan Böhmer 2022-08-13 23:07:05 +02:00
parent 0a4fdb6665
commit e6408a4dff
2 changed files with 3 additions and 3 deletions

View file

@ -64,6 +64,6 @@
</div>
</div>
<input type="search" class="form-control me-sm-2 my-2" placeholder="{% trans %}search.placeholder{% endtrans %}" name="keyword">
<input type="search" class="form-control me-sm-2 my-2" placeholder="{% trans %}search.placeholder{% endtrans %}" name="keyword" required>
<button type="submit" class="form btn btn-outline-secondary my-2">{% trans %}search.submit{% endtrans %}</button>
</form>