28 lines
815 B
HTML
28 lines
815 B
HTML
<div class="panel mt-16">
|
|
<h3>Save Current Search</h3>
|
|
<p class="muted-text">Store current filters and replay them later.</p>
|
|
|
|
<form
|
|
method="post"
|
|
action="{% url 'scouting:saved_search_create' %}"
|
|
class="row-gap"
|
|
hx-post="{% url 'scouting:saved_search_create' %}"
|
|
hx-target="#saved-search-feedback"
|
|
hx-swap="innerHTML"
|
|
>
|
|
{% csrf_token %}
|
|
<input type="text" name="name" placeholder="Search name" required>
|
|
<label class="inline-label">
|
|
<input type="checkbox" name="is_public">
|
|
Public
|
|
</label>
|
|
|
|
{% for key, value in request.GET.items %}
|
|
<input type="hidden" name="{{ key }}" value="{{ value }}">
|
|
{% endfor %}
|
|
|
|
<button class="button" type="submit">Save search</button>
|
|
</form>
|
|
<div id="saved-search-feedback" class="mt-16"></div>
|
|
</div>
|