mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
14 lines
500 B
HTML
14 lines
500 B
HTML
{% load button from filters %}
|
|
<div class="row">
|
|
<div class="col">
|
|
<form class="form-inline justify-content-end">
|
|
{% csrf_token %}
|
|
<div class="input-group">
|
|
<input type="search" name="q" placeholder="Search" value="{{ request.GET.q }}"
|
|
class="form-control" id="id_search_text"/>
|
|
<span class="input-group-append">{% button 'search' id="id_search" %}</span>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|