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.

24 lines
1.2 KiB

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