0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-08 14:40:05 +00:00
healthchecks_healthchecks/templates/integrations/add_trello.html
2021-10-01 13:12:20 +03:00

39 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% load compress humanize static hc_extras %}
{% block title %}Trello Integration for {{ site_name }}{% endblock %}
{% block content %}
<div class="row">
<div class="col-sm-12">
<h1>Trello</h1>
<div class="jumbotron">
<p>
With this integration, {{ site_name }} will create a
<a href="https://trello.com/">Trello</a> card each
time a check goes down.
</p>
<div class="text-center">
{% csrf_token %}
<a href="{{ authorize_url }}" class="btn btn-lg btn-default">
<img class="ai-icon" src="{% static 'img/integrations/trello.png' %}" alt="Trello" />
Connect Trello
</a>
</div>
</div>
<div id="integration-settings"></div>
</div>
</div>
{% endblock %}
{% block scripts %}
{% compress js %}
<script src="{% static 'js/jquery-3.6.0.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/add_trello.js' %}"></script>
{% endcompress %}
{% endblock %}