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.

28 lines
1.3 KiB

  1. <div id="remove-check-modal" class="modal">
  2. <div class="modal-dialog">
  3. <form
  4. id="remove-check-form"
  5. {% if check %}action="{% url 'hc-remove-check' check.code %}"{% endif %}
  6. method="post">
  7. {% csrf_token %}
  8. <div class="modal-content">
  9. <div class="modal-header">
  10. <button type="button" class="close" data-dismiss="modal">&times;</button>
  11. <h4 class="remove-check-title">Remove Check <span class="remove-check-name">{{ check.name_then_code }}</span></h4>
  12. </div>
  13. <div class="modal-body">
  14. <p>You are about to remove check
  15. <strong class="remove-check-name">{{ check.name_then_code }}</strong>.
  16. </p>
  17. <p>Once it's gone there is no "undo" and you cannot get
  18. the old ping URL back.</p>
  19. <p>Are you sure?</p>
  20. </div>
  21. <div class="modal-footer">
  22. <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
  23. <button type="submit" class="btn btn-danger">Remove</button>
  24. </div>
  25. </div>
  26. </form>
  27. </div>
  28. </div>