{% extends 'core_main_app/_render/admin/theme/tools/box.html' %} {% block box_title %}List all template configurations{% endblock %} {% block box_tools %}
{% url 'admin:core_elasticsearch_app_templates_add' as add_url %} {% include 'core_main_app/common/buttons/add.html' with label='Add Template Configuration' %}
{% endblock %} {% block box_body %} {% for es_template in data.es_template_list %} {% cycle 'even' '' as rowcolors silent %} {% empty %} {% endfor %}
Template Name Title Description Actions
{{ es_template.template.display_name }} {{ es_template.title_path }}
    {% for xpath in es_template.description_paths %}
  • {{ xpath }}
  • {% endfor %}
{% block box_actions %} {% url 'admin:core_elasticsearch_app_templates_edit' es_template.id as edit_url %} {% include 'core_main_app/common/buttons/edit.html' %} {% url 'admin:core_elasticsearch_app_templates_delete' es_template.id as delete_url %} {% include 'core_main_app/common/buttons/delete.html' %} {% endblock %}
There are currently no template configured.
{% endblock %} {% block box_footer %} {% endblock %}