Browse Source

HipChat setup instructions

pull/7/head
Pēteris Caune 9 years ago
parent
commit
69001abea9
6 changed files with 52 additions and 7 deletions
  1. BIN
      static/img/integrations/setup_hipchat_1.png
  2. BIN
      static/img/integrations/setup_hipchat_2.png
  3. BIN
      static/img/integrations/setup_hipchat_3.png
  4. +1
    -1
      templates/front/channels.html
  5. +50
    -2
      templates/integrations/add_hipchat.html
  6. +1
    -4
      templates/integrations/add_slack.html

BIN
static/img/integrations/setup_hipchat_1.png View File

Before After
Width: 593  |  Height: 257  |  Size: 25 KiB

BIN
static/img/integrations/setup_hipchat_2.png View File

Before After
Width: 560  |  Height: 512  |  Size: 35 KiB

BIN
static/img/integrations/setup_hipchat_3.png View File

Before After
Width: 789  |  Height: 502  |  Size: 54 KiB

+ 1
- 1
templates/front/channels.html View File

@ -1,7 +1,7 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load compress humanize staticfiles hc_extras %} {% load compress humanize staticfiles hc_extras %}
{% block title %}Notification Channels - healthchecks.io{% endblock %}
{% block title %}Integrations - healthchecks.io{% endblock %}
{% block content %} {% block content %}


+ 50
- 2
templates/integrations/add_hipchat.html View File

@ -9,7 +9,55 @@
<div class="col-sm-12"> <div class="col-sm-12">
<h1>HipChat</h1> <h1>HipChat</h1>
<p>Group and private chat, file sharing, and integrations.</p>
<p>If your team uses <a href="https://www.hipchat.com/">HipChat</a>,
you can set up healthchecks.io to post status updates directly to an
appropriate HipChat room.</p>
<h2>Setup Guide</h2>
<div class="row ai-step">
<div class="col-sm-6">
<span class="step-no">1</span>
Log into your HipChat account and
pick an appropriate room. From the options menu
select <strong>Integrations...</strong>
</div>
<div class="col-sm-6">
<img
class="ai-guide-screenshot"
src="{% static 'img/integrations/setup_hipchat_1.png' %}">
</div>
</div>
<div class="row ai-step">
<div class="col-sm-6">
<span class="step-no">2</span>
<p>
From the list of available integrations, select
<strong>Build Your Own</strong>. It's at the very top.
</p>
<p>
Give it a descriptive name
and click <strong>Create</strong>.
</p>
</div>
<div class="col-sm-6">
<img
class="ai-guide-screenshot"
src="{% static 'img/integrations/setup_hipchat_2.png' %}">
</div> </div>
<div class="row ai-step">
<div class="col-sm-6">
<span class="step-no">3</span>
<p>Copy the displayed <strong>URL</strong> and paste it down below.</p>
<p>Save the integration, and it's done!</p>
</div>
<div class="col-sm-6">
<img
class="ai-guide-screenshot"
src="{% static 'img/integrations/setup_hipchat_3.png' %}">
</div>
</div>
<h2>Integration Settings</h2> <h2>Integration Settings</h2>
@ -18,7 +66,7 @@
<input type="hidden" name="kind" value="hipchat" /> <input type="hidden" name="kind" value="hipchat" />
<div class="form-group"> <div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Callback URL</label> <label for="inputEmail3" class="col-sm-2 control-label">Callback URL</label>
<div class="col-sm-3">
<div class="col-sm-10">
<input type="text" class="form-control" name="value" placeholder=""> <input type="text" class="form-control" name="value" placeholder="">
</div> </div>
</div> </div>


+ 1
- 4
templates/integrations/add_slack.html View File

@ -49,9 +49,6 @@
</div> </div>
</div> </div>
<h2>Integration Settings</h2> <h2>Integration Settings</h2>
<form method="post" class="form-horizontal" action="{% url 'hc-add-channel' %}"> <form method="post" class="form-horizontal" action="{% url 'hc-add-channel' %}">
@ -59,7 +56,7 @@
<input type="hidden" name="kind" value="slack" /> <input type="hidden" name="kind" value="slack" />
<div class="form-group"> <div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Callback URL</label> <label for="inputEmail3" class="col-sm-2 control-label">Callback URL</label>
<div class="col-sm-3">
<div class="col-sm-10">
<input type="text" class="form-control" name="value" placeholder=""> <input type="text" class="form-control" name="value" placeholder="">
</div> </div>
</div> </div>


Loading…
Cancel
Save