Sha256: 90cd745507ea374e51b0fd36bec329eac8c8f8713b2558c08fe27b3c89aa5b73
Contents?: true
Size: 1.2 KB
Versions: 50
Compression:
Stored size: 1.2 KB
Contents
<div class="border-bottom mb-4"> <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><%= t('.actions') %></th> <th></th> </tr> </thead> <tbody> <% @applications.each do |application| %> <tr id="application_<%= application.id %>"> <td class="align-middle"> <%= link_to application.name, oauth_application_path(application) %> </td> <td class="align-middle"> <%= simple_format(application.redirect_uri) %> </td> <td class="align-middle"> <%= application.confidential? ? t('doorkeeper.applications.index.confidentiality.yes') : t('doorkeeper.applications.index.confidentiality.no') %> </td> <td class="align-middle"> <%= link_to t('doorkeeper.applications.buttons.edit'), edit_oauth_application_path(application), class: 'btn btn-link' %> </td> <td class="align-middle"> <%= render 'delete_form', application: application %> </td> </tr> <% end %> </tbody> </table>
Version data entries
50 entries across 50 versions & 1 rubygems