Skip to content

Instantly share code, notes, and snippets.

@andySF
Created June 6, 2012 17:13
Show Gist options
  • Save andySF/2883358 to your computer and use it in GitHub Desktop.
Save andySF/2883358 to your computer and use it in GitHub Desktop.
<div class="modal hide" id="deleteMachine" >
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<h3>Machine Deletion</h3>
</div>
<div class="modal-body">
Are you sure that you want to delete this machine? <%= @current_machine_id%>
</div>
<div class="modal-footer">
<a href="#" class="btn" data-dismiss="modal">Close</a>
<%= link_to("Confirm Deletion",{:action=>'delete', :id=>@current_machine_id},:class=>'btn btn-primary') %>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment