summaryrefslogtreecommitdiff
path: root/app/views/keys/index.html.haml
blob: 279b125f53c68e7680500f38f543dedfec85017d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%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(); });