2015-04-26 12:48:37 +05:30
|
|
|
%header.page-header
|
|
|
|
%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
|
2015-11-26 14:37:03 +05:30
|
|
|
%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
|