{% extends "sentry/emails/activity/generic.html" %} {% load sentry_avatars %} {% load sentry_helpers %} {% block action %} {% endblock %} {% block activity %}

Version {{ version_parsed }} was deployed to {{ environment }}

{{ deploy.date_finished }}   {{ commit_count }} commit{{ commit_count|pluralize }}, {{ author_count }} author{{ author_count|pluralize }}, and {{ file_count }} file{{ file_count|pluralize }} changed across {{ project_count }} project{{ project_count|pluralize }}


Projects Affected
{% for project, release_link, resolved_issue_count in projects %} {% endfor %}
{{ project.slug }}

{% if resolved_issue_count %} {{ resolved_issue_count }} Issue{{ resolved_issue_count|pluralize }} expected to be resolved {% endif %}

View Release

{% if repos %}
Commits
{% for repo in repos %} {% for commit, user in repo.commits %} {% endfor %} {% endfor %}
{{ repo.name }}
{% if user %} {% if user.get_avatar_type == 'upload' %} {% elif user.get_avatar_type == 'letter_avatar' %} {% email_avatar user.get_display_name user.get_label 36 False %} {% else %} {% email_avatar user.get_display_name user.get_label 36 %} {% endif %} {% elif commit.author %} {% email_avatar commit.author.name commit.author.get_label 36 %} {% else %}
?
{% endif %}

{% if commit.message %} {{ commit.title }} {% else %} No message provided {% endif %}

{% if commit.author %} {{ commit.author.name }} {% else %} No author provided {% endif %} · {{ commit.date_added }}
{{ commit.short_id }}
{% else %}

Deploy emails are better with commit data

Connecting one or more repositories to Sentry will enable us to show a list of commits associated with this deploy.

Connect a repository

{% endif %} {% endblock %}