Sha256: 570315654fd9f0b6f9792e9a12985936ad520c715fb0007825e03e205cdfa127
Contents?: true
Size: 686 Bytes
Versions: 16
Compression:
Stored size: 686 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', oauth_authorized_application_path(application), :data => { :confirm => 'Are you sure?' }, :method => :delete, :class => 'btn danger' %></td> </tr> <% end %> </tbody> </table> </div>
Version data entries
16 entries across 16 versions & 1 rubygems