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

{% blocktrans with org_name=organization.name %}{{ org_name }} is using Sentry to aggregate errors.{% endblocktrans %}

{% if existing_member %}

Your account ({{ request.user.username }}) is already a member of this organization.

Did you want to switch accounts?

{% endif %} {% if project_count %}

{% blocktrans %}You have been invited to join this organization, which manages {{ project_count }} project(s), including:{% endblocktrans %}

    {% for project in project_list|slice:"5" %}
  • {{ project.slug }}
  • {% endfor %}
{% else %}

{% blocktrans %}You have been invited to join this organization.{% endblocktrans %}

{% endif %} {% if needs_authentication %}

{% trans "To continue, you must either login to your existing account, or create a new one." %}

{% trans "Create a new account" %}
{% else %}
{% csrf_token %}

{% endif %}
{% endblock %}