{% extends "sentry/layout.html" %} {% load i18n %} {% block title %}{% trans "New Project" %} | {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }}
  • /
  • {% trans "New Project" %}
  • {% endblock %} {% block main %}

    {% trans "Use this page to create a new project within Sentry. Once done, you'll be able to add members (whether they're system or actual users), as well as configure your client to send messages to this project." %}


    {% csrf_token %}
    {% trans "Project Details" %} {% for field in form %}
    {{ field.label_tag }}
    {{ field }}
    {% if field.help_text %} {{ field.help_text }} {% endif %}
    {% endfor %}
    {% endblock %}