|
| 1 | +{{#extend 'styles'}} |
| 2 | + <style> |
| 3 | + .example-modal .modal { |
| 4 | + position: relative; |
| 5 | + top: auto; |
| 6 | + bottom: auto; |
| 7 | + right: auto; |
| 8 | + left: auto; |
| 9 | + display: block; |
| 10 | + z-index: 1; |
| 11 | + } |
| 12 | +
|
| 13 | + .example-modal .modal { |
| 14 | + background: transparent !important; |
| 15 | + } |
| 16 | + </style> |
| 17 | +{{/extend}} |
| 18 | +<!-- Content Header (Page header) --> |
| 19 | +<section class="content-header"> |
| 20 | + <h1> |
| 21 | + Delete Coupon Member |
| 22 | + </h1> |
| 23 | + <ol class="breadcrumb"> |
| 24 | + <li><a href="{{{url 'home'}}}"><i class="fa fa-dashboard"></i> Home</a></li> |
| 25 | + <li><a href="{{{url 'couponMember'}}}">List</a></li> |
| 26 | + <li class="active">Delete Coupon Member</li> |
| 27 | + </ol> |
| 28 | +</section> |
| 29 | + |
| 30 | +<!-- Main content --> |
| 31 | +<form action="{{{url 'couponMember.destroy'}}}" method="post"> |
| 32 | + <input type="hidden" class="form-control" name="id" value="{{obj.CouponMemberID}}"/> |
| 33 | + <section class="content"> |
| 34 | + <div class="example-modal"> |
| 35 | + <div class="modal modal-danger"> |
| 36 | + <div class="modal-dialog"> |
| 37 | + <div class="modal-content"> |
| 38 | + <div class="modal-header"> |
| 39 | + <button type="button" class="close" data-dismiss="modal" aria-label="Close"> |
| 40 | + <span aria-hidden="true">×</span></button> |
| 41 | + <h4 class="modal-title">Model Delete</h4> |
| 42 | + </div> |
| 43 | + <div class="modal-body"> |
| 44 | + <p>{{obj.CouponMemberID}} will delete.</p> |
| 45 | + </div> |
| 46 | + <div class="modal-footer"> |
| 47 | + <button type="button" class="btn btn-outline pull-left" data-dismiss="modal" onclick="location.href = '{{{url "couponMember"}}}'">Close</button> |
| 48 | + <button type="submit" class="btn btn-outline">Delete</button> |
| 49 | + </div> |
| 50 | + </div> |
| 51 | + <!-- /.modal-content --> |
| 52 | + </div> |
| 53 | + <!-- /.modal-dialog --> |
| 54 | + </div> |
| 55 | + <!-- /.modal --> |
| 56 | + </div> |
| 57 | + <!-- /.example-modal --> |
| 58 | + </section> |
| 59 | +<!-- /.content --> |
| 60 | +</form> |
0 commit comments