15 lines
373 B
Text
15 lines
373 B
Text
%div#new-key-holder
|
|
= link_to "Add new", new_key_path, :remote => true, :class => "lbutton vm"
|
|
|
|
%table.round-borders#keys-table
|
|
%tr
|
|
%th title
|
|
%th key
|
|
%th Actions
|
|
- @keys.each do |key|
|
|
= render(:partial => 'show', :locals => {:key => key})
|
|
|
|
:javascript
|
|
$('.delete-key').live('ajax:success', function() {
|
|
$(this).closest('tr').fadeOut(); });
|
|
|