{% extends "sentry/emails/base.html" %}
{% load sentry_helpers %}
{% load sentry_assets %}
{% block bodyclass %}weekly-report{% endblock %}
{% block header %}
You're seeing a preview release of our Weekly Reports. Have feedback? Let us know by sending an email to support@getsentry.com.
Events Seen {{ duration.noun|title }}
|
All: {{ report.series.all|small_count }}
Resolved: {{ report.series.resolved|small_count }}
|
{% with report.series.maximum as max %}
{% for timestamp, metrics in report.series.points %}
{% if metrics.resolved or metrics.unresolved %}
|
|
{% else %}
|
|
{% endif %}
|
{% endfor %}
{% endwith %}
{% for timestamp, metrics in report.series.points %}
{{ timestamp|date:duration.date_format }} |
{% endfor %}
|
{% for label, change in report.comparisons %}
{% if change %}
{% if change >= 0 %}

{% else %}

{% endif %}
{{ change|multiply:"100"|absolute_value|floatformat:"-1" }}%
{% if change >= 0 %}more{% else %}fewer{% endif %} events than {{ label }}
{% else %}
There is not enough data to compare to {{ label }}.
{% endif %}
|
{% endfor %}
{% with report.distribution.total as total %}
Issue Breakdown
|
{% for type, count in report.distribution.types %}
{{ type.label }}: {% percent count total "0.1f" %}%
{% endfor %}
|
{% for type, count in report.distribution.types %}
|
{% endfor %}
|
{% endwith %}
New and Reopened Issues {{ duration.noun|title }}
|
Events |
Users |
{% for group, statistics in report.issue_list.issues %}
{% include "sentry/emails/_group.html" %}
Last seen at {{ group.last_seen }}
in {{ group.project.name }}
|
{{ statistics.events|small_count }} |
{{ statistics.users|small_count }} |
{% empty %}
{# TODO: This is probably not the best way to articulate this. #}
There were no issues this period.
|
{% endfor %}
{% if personal.resolved or personal.users %}
Your impact
{{ personal.resolved|small_count:0 }} |
Issue{{ personal.resolved|pluralize }} resolved this week by you. |
|
{{ personal.users|small_count:0 }} |
User{{ personal.users|pluralize }} rejoicing because of it. |
|
{% endif %}
{% comment %}
{% endcomment %}
{% endblock %}