mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
12 lines
520 B
HTML
12 lines
520 B
HTML
{% load i18n %}
|
|
|
|
<form class="d-flex" action="{% url 'search' %}" method='post'>
|
|
{% csrf_token %}
|
|
<div class='input-group'>
|
|
<input type="text" name='search' class="form-control" aria-label='{% trans "Search" %}' id="search-bar" placeholder="{% trans 'Search' %}"{% if query_text %} value="{{ query }}"{% endif %}>
|
|
<button type="submit" id='search-submit' class="btn btn-secondary" title='{% trans "Search" %}'>
|
|
<span class='fas fa-search'></span>
|
|
</button>
|
|
</div>
|
|
</form>
|