{% extends "base.html" %} {% load navigation_tags %} {% load get_config_setting %} {% block content %} {{ block.super }}

Engagement Presets

{% if presets %} {% for preset in presets %} {% endfor %}
Name Test Type Network
{{ preset.title }} {% if preset.test_type.all.count > 1 %} {% for test in preset.test_type.all %} {{test.name}}{%if not forloop.last%},{%endif%} {% endfor %} {% else %} {{ preset.test_type.all.0.name }} {% endif %} {% if preset.network_locations.all.count > 1 %} {% for net in preset.network_locations.all %} {{ net.location }}{%if not forloop.last%},{%endif%} {% endfor %} {% else %} {{ preset.network_locations.all.0.location }} {% endif %}
{% else %}

No engagement presets configured.

{% endif %}
{% endblock %}