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.

96 lines
2.9 KiB

9 years ago
  1. {% extends "base.html" %}
  2. {% load humanize static hc_extras %}
  3. {% block title %}Notification Channels - {% site_name %}{% endblock %}
  4. {% block content %}
  5. <div class="row">
  6. <div class="col-sm-12">
  7. <h1>HipChat</h1>
  8. <div class="jumbotron">
  9. <p>If your team uses <a href="https://www.hipchat.com/">HipChat</a>,
  10. you can set up {% site_name %} to post status updates directly to an
  11. appropriate HipChat room.</p>
  12. <div class="text-center">
  13. {% csrf_token %}
  14. <a href="{{ install_url }}" class="btn btn-lg btn-default">
  15. <img class="ai-icon" src="{% static 'img/integrations/hipchat.png' %}" alt="HipChat" />
  16. Connect HipChat
  17. </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">1</span>
  24. <p>
  25. After
  26. clicking on "Connect HipChat", you will be
  27. asked to log into HipChat.
  28. </p>
  29. </div>
  30. <div class="col-sm-6">
  31. <img
  32. class="ai-guide-screenshot"
  33. alt="Screenshot"
  34. src="{% static 'img/integrations/setup_hipchat_1.png' %}">
  35. </div>
  36. </div>
  37. <div class="row ai-step">
  38. <div class="col-sm-6">
  39. <span class="step-no">2</span>
  40. <p>
  41. Next, HipChat will let you select the chat room
  42. for receiving {% site_name %} notifications.
  43. </p>
  44. </div>
  45. <div class="col-sm-6">
  46. <img
  47. class="ai-guide-screenshot"
  48. alt="Screenshot"
  49. src="{% static 'img/integrations/setup_hipchat_2.png' %}">
  50. </div>
  51. </div>
  52. <div class="row ai-step">
  53. <div class="col-sm-6">
  54. <span class="step-no">3</span>
  55. <p>
  56. Next, HipChat will show you the permissions
  57. requested by {% site_name %}. There's only one permission
  58. needed: "Send Notification".
  59. </p>
  60. </div>
  61. <div class="col-sm-6">
  62. <img
  63. class="ai-guide-screenshot"
  64. alt="Screenshot"
  65. src="{% static 'img/integrations/setup_hipchat_3.png' %}">
  66. </div>
  67. </div>
  68. <div class="row ai-step">
  69. <div class="col-sm-6">
  70. <span class="step-no">4</span>
  71. <p>
  72. That is all! You will now be redirected back to
  73. "Integrations" page on {% site_name %} and see
  74. the new integration!
  75. </p>
  76. </div>
  77. <div class="col-sm-6">
  78. <img
  79. class="ai-guide-screenshot"
  80. alt="Screenshot"
  81. src="{% static 'img/integrations/setup_hipchat_4.png' %}">
  82. </div>
  83. </div>
  84. </div>
  85. </div>
  86. {% endblock %}