{% extends "sentry/layout.html" %} {% load i18n %} {% block title %}{% trans "Team Invite" %} | {{ block.super }}{% endblock %} {% block page_header_block %}{% endblock %} {% block bodyclass %}{% endblock %} {% block main %}

{% blocktrans with team_name=team.name %}{{ team_owner }} is using Sentry to aggregate errors for the {{ team_name }} team.{% endblocktrans %}

{% blocktrans with project_count=project_list|length %}You have been invited to join this team, which manages {{ project_count }} project(s):{% endblocktrans %}

    {% for project in project_list|slice:"5" %}
  • {{ project.name }}
  • {% endfor %}
{% csrf_token %}

{% endblock %}