{% extends "sentry/bases/modal.html" %} {% load crispy_forms_tags %} {% load sentry_assets %} {% load i18n %} {% block css %} {% endblock %} {% block wrapperclass %} narrow auth {% endblock %} {% block modal_header_signout %} {% endblock %} {% block title %} {% trans "Opsgenie Setup" %} | {{ block.super }} {% endblock %} {% block main %} {% if form %}

{% trans "Step 2: Connect Sentry with Opsgenie" %}

{% trans "Add your Opsgenie credentials to Sentry." %}

{% csrf_token %} {{ form|as_crispy_errors }} {% for field in form %} {{ field|as_crispy_field }} {% endfor %}
{% trans "Back to instructions" %}
{% else %}

{% trans "Step 1: Get a Management API Key" %}

{% trans "To configure Opsgenie with Sentry, you will need an Opsgenie API key. You will need to be an account owner or admin for this step." %}

  1. {% trans "Navigate to Settings page of your Opsgenie app, then select 'API Key Management' under 'App Settings'." %}
  2. {% trans "Select 'Add new API key'." %}
  3. {% trans "In the resulting form, enter the following information:" %}
  4. {% trans "Copy the generated key. You'll need this for the next phase of setup." %}
  5. {% trans "Click 'Add API key'." %}

{% trans "You must complete the above steps in Opsgenie to connect Opsgenie with Sentry." %}

{% trans "Next" %}
{% endif %} {% endblock %}