InvenTree/InvenTree/templates/InvenTree/settings/user_search.html

24 lines
741 B
HTML

{% extends "panel.html" %}
{% load i18n %}
{% load inventree_extras %}
{% block label %}user-search{% endblock %}
{% block heading %}
{% trans "Search Settings" %}
{% endblock %}
{% block content %}
<div class='row'>
<table class='table table-striped table-condensed'>
<tbody>
{% include "InvenTree/settings/setting.html" with key="SEARCH_PREVIEW_RESULTS" user_setting=True icon='fa-search' %}
{% include "InvenTree/settings/setting.html" with key="SEARCH_SHOW_STOCK_LEVELS" user_setting=True icon='fa-boxes' %}
{% include "InvenTree/settings/setting.html" with key="SEARCH_HIDE_INACTIVE_PARTS" user_setting=True icon='fa-eye-slash' %}
</tbody>
</table>
</div>
{% endblock %}