Sha256: 9283e466e31de384024407ff6b59748946efea0a1c722ea04f991b4371c81597
Contents?: true
Size: 734 Bytes
Versions: 7
Compression:
Stored size: 734 Bytes
Contents
<div class="page-header"> <h1>Your applications</h1> </div> <p><%= link_to 'New Application', new_oauth_application_path, class: 'btn btn-success' %></p> <table class="table table-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), class: 'btn btn-link' %></td> <td><%= render 'delete_form', application: application %></td> </tr> <% end %> </tbody> </table>
Version data entries
7 entries across 7 versions & 1 rubygems