{% extends "sentry/projects/base.html" %} {% load url from future %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "New Project" %} | {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }}
  • {% trans "New Project" %}
  • {% endblock %} {% block main %}

    {% blocktrans %}Projects allow you to scope events to a specific application in your organization. For example, you might have seperate projects for production vs development instances, or separate projects for your web app and mobile app.{% endblocktrans %}


    {% csrf_token %} {{ project_form|as_crispy_errors }} {% for field in project_form %} {% include "sentry/partial/_form_field.html" %} {% endfor %} {% if select_team_form %}
    {{ select_team_form|as_crispy_errors }} {% for field in select_team_form %} {% include "sentry/partial/_form_field.html" %} {% endfor %} {% if new_team_form %}

    You can also create a new team.

    {% endif %}
    {% endif %} {% if new_team_form %}
    {% for field in new_team_form %} {% include "sentry/partial/_form_field.html" %} {% endfor %} {% if select_team_form %}

    You can also select an existing team.

    {% endif %}
    {% endif %}
    {% endblock %}