2018-11-08 19:23:39 +05:30
|
|
|
%header
|
2018-11-18 11:00:15 +05:30
|
|
|
%h1= _("Your authorized applications")
|
2017-08-17 22:00:37 +05:30
|
|
|
%main{ :role => "main" }
|
2015-11-26 14:37:03 +05:30
|
|
|
.table-holder
|
|
|
|
%table.table.table-striped
|
|
|
|
%thead
|
2015-04-26 12:48:37 +05:30
|
|
|
%tr
|
2018-11-18 11:00:15 +05:30
|
|
|
%th= _('Application')
|
|
|
|
%th= _('Created At')
|
2015-11-26 14:37:03 +05:30
|
|
|
%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
|