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.

29 lines
864 B

  1. {% extends "base.html" %}
  2. {% load humanize static hc_extras %}
  3. {% block title %}Add Pushbullet - {% site_name %}{% endblock %}
  4. {% block content %}
  5. <div class="row">
  6. <div class="col-sm-12">
  7. <h1>Pushbullet</h1>
  8. <div class="jumbotron">
  9. <p>
  10. With this integration, {% site_name %} will send
  11. a <a href="http://pushbullet.com/">Pushbullet</a>
  12. notification when a check
  13. goes <strong>up</strong> or <strong>down</strong>.
  14. </p>
  15. <form method="post" class="text-center">
  16. {% csrf_token %}
  17. <a href="{{ authorize_url }}" class="btn btn-lg btn-default">
  18. <img class="ai-icon" src="{% static 'img/integrations/pushbullet.png' %}" alt="Pushbullet" />
  19. Connect Pushbullet
  20. </a>
  21. </form>
  22. </div>
  23. </div>
  24. </div>
  25. {% endblock %}