This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-08-22 18:33:57 +02:00
|
|
|
- content_for :page_title do
|
|
|
|
= t('doorkeeper.applications.index.title')
|
|
|
|
|
2017-09-09 02:26:58 +02:00
|
|
|
.table-wrapper
|
|
|
|
%table.table
|
|
|
|
%thead
|
2017-08-22 18:33:57 +02:00
|
|
|
%tr
|
2017-09-09 02:26:58 +02:00
|
|
|
%th= t('doorkeeper.applications.index.application')
|
|
|
|
%th= t('doorkeeper.applications.index.scopes')
|
|
|
|
%th
|
|
|
|
%tbody
|
|
|
|
- @applications.each do |application|
|
|
|
|
%tr
|
|
|
|
%td= link_to application.name, settings_application_path(application)
|
|
|
|
%th= application.scopes
|
|
|
|
%td
|
|
|
|
= table_link_to 'times', t('doorkeeper.applications.index.delete'), settings_application_path(application), method: :delete, data: { confirm: t('doorkeeper.applications.confirmations.destroy') }
|
2017-08-23 00:59:35 +02:00
|
|
|
|
2017-08-22 18:33:57 +02:00
|
|
|
= paginate @applications
|
2017-08-23 00:59:35 +02:00
|
|
|
= link_to t('doorkeeper.applications.index.new'), new_settings_application_path, class: 'button'
|