Sha256: 5c4e864404e68b2bd73407ea50c47dc16d74da470088a3346c4facc0af0625c3
Contents?: true
Size: 748 Bytes
Versions: 5
Compression:
Stored size: 748 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_path(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
5 entries across 5 versions & 1 rubygems