Sha256: 66c8eeb2b26ced14d88179e5ea0d82da8c320da236498b8bc6d7e2f5c5152aac
Contents?: true
Size: 683 Bytes
Versions: 3
Compression:
Stored size: 683 Bytes
Contents
<div class="span16"> <header class="page-header"> <h2>Your authorized applications</h2> </header> <table class="zebra-striped"> <thead> <tr> <th>Application</th> <th>Created At</th> <th></th> <th></th> </tr> </thead> <tbody> <% @applications.each do |application| %> <tr> <td><%= application.name %></td> <td><%= application.created_at %></td> <td><%= link_to 'Revoke', oauth_authorized_application_path(application), :data => { :confirm => 'Are you sure?' }, :method => :delete, :class => 'btn danger' %></td> </tr> <% end %> </tbody> </table> </div>
Version data entries
3 entries across 3 versions & 1 rubygems