{% extends "manage/base.html" %} {% block page_title %}{{ super() }} - Super Search Fields{% endblock %} {% block admin_title %}{{ super() }} - Super Search Fields{% endblock %} {% block site_css %} {{ super() }} {% compress css %} {% endcompress %} {% endblock %} {% block mainbody %}
Create a new field

Here are all the known fields in our indexed documents. This list is used by the Super Search application to determine which field can be queried by the user and what data can be returned. It is also used to generate the elasticsearch mapping that will be used to index the crash reports we receive.

See the list of missing fields.

{% for field in fields %} {% endfor %}
Name Namespace Name in database Description Query type Data type Permissions needed Form field choices Is exposed Is returned Has full version Storage mapping
{{ field.name }} {{ field.namespace }} {{ field.in_database_name }} {{ field.description }} {{ field.query_type }} {{ field.data_validation_type }} {% if field.permissions_needed %}{{ field.permissions_needed | join(', ') }}{% endif %} {% if field.form_field_choices %}{{ field.form_field_choices | join(', ') }}{% endif %} {% if field.storage_mapping %}{{ field.storage_mapping | json_dumps }}{% endif %} modify delete
{% endblock %} {% block site_js %} {{ super() }} {% endblock %}