gitlab-org--gitlab-foss/app/views/doorkeeper/authorized_applications/index.html.haml
Tao Wang 926ba6e5fa
i18n: externalize strings from 'app/views/doorkeeper'
Signed-off-by: Tao Wang <twang2218@gmail.com>
2018-07-13 11:48:37 +10:00

17 lines
478 B
Text

%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