{% extends 'mitreattack/display_mitre_references_by_type.html' %} {% load markdown from mitrecore.markdown %} {% load model_url first_sentence from mitreattack_tags %} {% block references_table %} {% for detection_strategy in references %} {% with analytics=detection_strategy.analytics.all %} {% for analytic in analytics %} {% if forloop.first %} {% endif %} {% endfor %} {% endwith %} {% endfor %}
ID Name Analytic ID Analytic Description
{{ detection_strategy.mitre_id }} {{ detection_strategy.name }} {{ analytic.mitre_id }} {{ analytic.description | first_sentence | markdown | safe }}
{% endblock %}