Sha256: 4a049416e5e19ee8ca9fa26cdf628f064c9ab91bec3ae373f9ce13a42459fbd0
Contents?: true
Size: 846 Bytes
Versions: 16
Compression:
Stored size: 846 Bytes
Contents
<div class="span16"> <header class="page-header"> <h2>Your applications</h2> </header> <p><%= link_to 'New Application', new_oauth_application_path %></p> <table class="zebra-striped"> <thead> <tr> <th>Name</th> <th>Callback url</th> <th></th> <th></th> </tr> </thead> <tbody> <% @applications.each do |application| %> <tr id="application_<%= application.id %>"> <td><%= link_to application.name, [:oauth, application] %></td> <td><%= application.redirect_uri %></td> <td><%= link_to 'Edit', edit_oauth_application_path(application) %></td> <td><%= link_to 'Destroy', [:oauth, application], :data => { :confirm => 'Are you sure?' }, :method => :delete %></td> </tr> <% end %> </tbody> </table> </div>
Version data entries
16 entries across 16 versions & 1 rubygems