Sha256: 3491fda6817c70e030e60caad8ecb281189126dc33f34a1fac5d42145a1ea053
Contents?: true
Size: 667 Bytes
Versions: 7
Compression:
Stored size: 667 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>Authorized 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', authorized_application_path(application), :confirm => 'Are you sure?', :method => :delete, :class => 'btn danger' %></td> </tr> <% end %> </tbody> </table> </div>
Version data entries
7 entries across 6 versions & 1 rubygems