summaryrefslogtreecommitdiff
path: root/app/views/deploy_keys/index.html.haml
blob: d3feadb8742c771ac67c454f266369abf24b7eff (plain)
1
2
3
4
5
6
7
8
9
10
11
= render "repositories/head"

%div#keys-table{ :class => "update-data ui-box ui-box-small ui-box-big" }
  .data
    - @keys.each do |key|
      = render(:partial => 'show', :locals => {:key => key})

:javascript
  $('.delete-key').live('ajax:success', function() {
    $(this).closest('.update-item').fadeOut(); });