Sha256: 74d30d9a1d16fd690343bc251147d52491a3aa88afeb64b4fa84c684d4dad29f
Contents?: true
Size: 1002 Bytes
Versions: 4
Compression:
Stored size: 1002 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><%= t('.confidential') %></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><%= application.confidential? ? t('doorkeeper.applications.index.confidentiality.yes') : t('doorkeeper.applications.index.confidentiality.no') %></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
4 entries across 4 versions & 1 rubygems