{% extends 'ndr_core/admin_views/base.html' %} {% load ndr_utils %} {% block content %}

Configure Searches

Create Search Configuration Create Search Field Create Result Field Create Tab Field
Help
Configured Searches
Search Fields
    {% for field in search_fields %}
  • {{ field.get_field_type_display }} {{ field.field_label }} {{ field.field_name }}
    {% if search_field_usage|get_item:field.pk %} Used by: {% for search_config in search_field_usage|get_item:field.pk %} {{ search_config.conf_label }}{% if not forloop.last %}, {% endif %} {% endfor %} {% else %} Not used by any search configuration {% endif %}

  • {% endfor %}
Result Fields
    {% for field in result_fields %}
  • {{ field }}
    {% if result_field_usage|get_item:field.pk %} Used by: {% for search_config in result_field_usage|get_item:field.pk %} {{ search_config.conf_label }}{% if not forloop.last %}, {% endif %} {% endfor %} {% else %} Not used by any search configuration {% endif %}

    {% with usage=result_field_usage|get_item:field.pk %} {% if usage %} {% else %} {% endif %} {% endwith %}

  • {% endfor %}
{% endblock %} {% block page_js %} {% endblock %}