{% extends project_base_template|default:'mitrecore/base.html' %} {% load static from static %} {% load django_filtering_ui from django_filtering_ui %} {% load mitreattack_tags %} {% load ordered_table_header from mitrecore.ordering %} {% load field_value from mitrecore.model %} {% load markdown from mitrecore.markdown %} {% block stylesheets %} {{ block.super }} {% endblock %} {% block javascripts %} {{ block.super }} {% with entrypoint='listing' %} {% django_filtering_ui %} {% endwith %} {% endblock %} {% block content %}
{% block content_title %} {% if title %}

{{ title }}

{% else %}

Index

{% endif %} {% endblock %} {% if object_list or is_filtered or show_empty_results %} {% block content_table_actions %}
{% endblock %} {% block content_table %} {% if actions_for_selected %} {% endif %} {% block column_headers %} {% for field in view.get_model_fields %} {% if field.name == 'mitre_id' %} {% ordered_table_header 'Mitre ID' field.name %} {% elif field.name == 'short_description' %} {% ordered_table_header 'Description' field.name %} {% else %} {% ordered_table_header field.verbose_name|capfirst field.name %} {% endif %} {% endfor %} {% endblock %} {% if not view.table_no_actions %} {% endif %} {% for object in object_list %} {% if actions_for_selected %} {# {% disallowed_actions_for_instance object as disallowed_actions %} #} {# #} {% endif %} {% block columns %} {% for field in view.get_model_fields %} {% if field.name == 'short_description' %} {% field_value field.name as description %} {% else %} {% endif %} {% endfor %} {% endblock %} {% if not view.table_no_actions %} {% endif %} {% endfor %}
Actions
{{ description | markdown | safe }}{% field_value field.name %}
    {% block actions %}
  • View
  • {% endblock %}
{% block pagination %}{% include "mitrecore/pagination/pagination.html" %}{% endblock %} {% endblock %} {% endif %} {% if not object_list %} {% block empty_message %}

Run the data ingester to populate the data.

{% endblock %} {% endif %} {% block after_content_table %} {% endblock %} {% endblock %}