Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « authorized_applications « doorkeeper « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 814cdc987ef7c466f4dbccab541d16be2845947b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%header.page-header
  %h1 Your authorized applications
%main{:role => "main"}
  %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