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.

39 lines
1.1 KiB

  1. {% extends "base.html" %}
  2. {% load compress humanize static hc_extras %}
  3. {% block title %}Trello Integration for {{ site_name }}{% endblock %}
  4. {% block content %}
  5. <div class="row">
  6. <div class="col-sm-12">
  7. <h1>Trello</h1>
  8. <div class="jumbotron">
  9. <p>
  10. With this integration, {{ site_name }} will create a
  11. <a href="https://trello.com/">Trello</a> card each
  12. time a check goes down.
  13. </p>
  14. <div class="text-center">
  15. {% csrf_token %}
  16. <a href="{{ authorize_url }}" class="btn btn-lg btn-default">
  17. <img class="ai-icon" src="{% static 'img/integrations/trello.png' %}" alt="Trello" />
  18. Connect Trello
  19. </a>
  20. </div>
  21. </div>
  22. <div id="integration-settings"></div>
  23. </div>
  24. </div>
  25. {% endblock %}
  26. {% block scripts %}
  27. {% compress js %}
  28. <script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
  29. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  30. <script src="{% static 'js/add_trello.js' %}"></script>
  31. {% endcompress %}
  32. {% endblock %}