You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.6 KiB

  1. {% extends "base.html" %}
  2. {% load compress humanize static hc_extras %}
  3. {% block title %}Pushover Integration for {% site_name %}{% endblock %}
  4. {% block content %}
  5. <div class="row">
  6. <div class="col-sm-12">
  7. <h1>Pushover</h1>
  8. <div class="jumbotron">
  9. <p>
  10. {% site_name %} is a <strong>free</strong> and
  11. <a href="https://github.com/healthchecks/healthchecks">open source</a>
  12. service for monitoring your cron jobs, background processes and
  13. scheduled tasks. Before adding Pushover integration, please log into
  14. {% site_name %}:</p>
  15. <div class="text-center">
  16. <a href="{% url 'hc-login' %} %}"
  17. class="btn btn-primary btn-lg">Sign In</a>
  18. </div>
  19. </div>
  20. <h2>Setup Guide</h2>
  21. <div class="row ai-step">
  22. <div class="col-sm-6">
  23. <span class="step-no"></span>
  24. <p>
  25. After logging in, go to "Integrations &rarr; Add Pushover".
  26. Pushover supports different notification priorities from
  27. silent to "Emergency". Select your preferred priorities
  28. and click "Subscribe with Pushover".
  29. </p>
  30. </div>
  31. <div class="col-sm-6">
  32. <img
  33. class="ai-guide-screenshot"
  34. alt="Screenshot"
  35. src="{% static 'img/integrations/setup_pushover_1.png' %}">
  36. </div>
  37. </div>
  38. <div class="row ai-step">
  39. <div class="col-sm-6">
  40. <span class="step-no"></span>
  41. <p>
  42. You will be redirected to
  43. <a href="https://pushover.net">pushover.net</a> and
  44. asked to confirm a subscription. Review the subscription
  45. details and click "Subscribe Me".
  46. </p>
  47. </div>
  48. <div class="col-sm-6">
  49. <img
  50. class="ai-guide-screenshot"
  51. alt="Screenshot"
  52. src="{% static 'img/integrations/setup_pushover_2.png' %}">
  53. </div>
  54. </div>
  55. <div class="row ai-step">
  56. <div class="col-sm-6">
  57. <span class="step-no"></span>
  58. <p>
  59. That is all! You will now be redirected back to
  60. "Integrations" page on {% site_name %} and see
  61. the new integration!
  62. </p>
  63. </div>
  64. <div class="col-sm-6">
  65. <img
  66. class="ai-guide-screenshot"
  67. alt="Screenshot"
  68. src="{% static 'img/integrations/setup_pushover_3.png' %}">
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. {% endblock %}