Commit 9e2d65b797de4979c8058701a13144d8aec8ed12

Authored by Gustavo Bernardo
1 parent 2bc31034

Delete link template updated correctly [Issue #121]

Showing 1 changed file with 20 additions and 0 deletions   Show diff stats
links/templates/links/delete_link.html
... ... @@ -0,0 +1,20 @@
  1 +<!-- MODAL REMOVE LINK -->
  2 +<div class="modal" id="removeLink">
  3 + <div class="modal-dialog">
  4 + <div class="modal-content">
  5 + <div class="modal-header">
  6 + <button type="button" class="close" data-dismiss="modal" aria-hidden="true">X</button>
  7 + <h4 class="modal-title"></h4>
  8 + </div>
  9 + <div class="modal-body">
  10 + <p>Do you really want to delete this link?</p>
  11 + </div>
  12 + <div class="modal-footer">
  13 +
  14 + <a href="#" target="_self"><button type="button" class="btn btn-primary" data-dismiss="modal" aria-hidden="true">Confirm</button></a>
  15 +
  16 + </div>
  17 + </div>
  18 + </div>
  19 +</div>
  20 +<!-- END -->
... ...