summaryrefslogtreecommitdiff
path: root/app/views/doorkeeper/authorized_applications/index.html.haml
blob: 30c9d02b72ec0977b0750f09bd27aee1668cb854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%header
  %h1 Your authorized applications
%main{ :role => "main" }
  .table-holder
    %table.table.table-striped
      %thead
        %tr
          %th Application
          %th Created At
          %th
          %th
      %tbody
        - @applications.each do |application|
          %tr
            %td= application.name
            %td= application.created_at.strftime('%Y-%m-%d %H:%M:%S')
            %td= render 'delete_form', application: application