From 954d80b153774effc191283dd31b812b29f2b9f4 Mon Sep 17 00:00:00 2001 From: Michal Bryc Date: Wed, 13 Mar 2019 22:03:35 -0700 Subject: [PATCH] add pagerteam integration view --- templates/integrations/add_pagerteam.html | 77 +++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 templates/integrations/add_pagerteam.html diff --git a/templates/integrations/add_pagerteam.html b/templates/integrations/add_pagerteam.html new file mode 100644 index 00000000..e6b0fb70 --- /dev/null +++ b/templates/integrations/add_pagerteam.html @@ -0,0 +1,77 @@ +{% extends "base.html" %} +{% load humanize static hc_extras %} + +{% block title %}Add Pager Team - {% site_name %}{% endblock %} + + +{% block content %} +
+
+

Pager Team

+ +

You can integrate Pager Team + with {% site_name %} to alert your on-call rotation whenever a check goes down.

+ +

Setup Guide

+ +
+
+ 1 +

+ Log into your Pager Team account, select the rotation you wish to add this integration to. Click the Copy Webhook button. +

+
+
+ Click create integration button +
+
+ +
+
+ 2 +

+ Paste the Webhook URL below. Save the integration, and you are done! +

+
+
+ Copy the Webhook URL +
+
+ +

Integration Settings

+ +
+ {% csrf_token %} +
+ +
+ + + {% if form.value.errors %} +
+ {{ form.value.errors|join:"" }} +
+ {% endif %} +
+
+
+
+ +
+
+
+
+
+{% endblock %}