{% extends "issues/base.html" %} {% load static %} {% block tab_content %}

Issue Grouping:

{% comment %} This template/tab may seem like very little info for a full tab, and that's probably correct. However: * We need _something_ that's tied to the issue rather than the event, because that's where the .grouping_set().all() lives. (yes manual merging isn't implemented in the UI yet, but we follow the datamodel here) * Better grouping is probably inevitable in the future, at which point this place will be the place {% endcomment %}
The following automatically determined groupers are part of this issue:{# I think a better text can be devised #}
    {% for grouper in issue.grouping_set.all %}
  1. {{ grouper.grouping_key }}
  2. {% endfor %}
{% endblock %}