gitlab-org--gitlab-foss/app/views/doorkeeper/authorized_applications/index.html.haml

18 lines
478 B
Plaintext
Raw Normal View History

2018-04-12 20:50:57 +00:00
%header
%h1= _("Your authorized applications")
%main{ :role => "main" }
2015-10-19 09:19:45 +00:00
.table-holder
%table.table.table-striped
%thead
2014-12-19 14:15:29 +00:00
%tr
%th= _('Application')
%th= _('Created At')
2015-10-19 09:19:45 +00:00
%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