docbow/docbow_project/templates/admin/search_form.html

11 lines
556 B
HTML

{% load i18n grp_tags %}
{% if cl.search_fields %}
<!-- Search Form -->
<form id="grp-changelist-search" action="" method="get">
<input type="text" name="{{ search_var }}" id="grp-changelist-search" class="grp-search-field" value="{{ cl.query }}" />
<button type="submit" value="" class="grp-search-button"></button>
{% for pair in cl.params.items %}
{% ifnotequal pair.0 search_var %}<input type="hidden" name="{{ pair.0 }}" value="{{ pair.1 }}"/>{% endifnotequal %}
{% endfor %}
</form>
{% endif %}