Sha256: d86eec614e5e1a629bb27e11313c9a5b529073c8534582d7bd4837148b16ea04
Contents?: true
Size: 802 Bytes
Versions: 28
Compression:
Stored size: 802 Bytes
Contents
<div class="page-header"> <h1><%= t('.title') %></h1> </div> <p><%= link_to t('.new'), new_oauth_application_path, class: 'btn btn-success' %></p> <table class="table table-striped"> <thead> <tr> <th><%= t('.name') %></th> <th><%= t('.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 t('doorkeeper.applications.buttons.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
28 entries across 28 versions & 2 rubygems