about summary refs log tree commit diff
path: root/app/views/doorkeeper/authorized_applications/index.html.haml
blob: f2f238e87fd19e91ede0514016a4043701bd77fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- content_for :page_title do
  Authorized apps

%p
  You can register a new OAuth2 app
  = link_to 'here', oauth_applications_path

%table.table
  %thead
    %tr
      %th= t('doorkeeper.authorized_applications.index.application')
      %th
  - @applications.each do |application|
    %tr
      %td= application.name
      %td= render 'delete_form', application: application