2014-12-19 09:15:29 -05:00
|
|
|
%header.page-header
|
|
|
|
%h1 Your authorized applications
|
|
|
|
%main{:role => "main"}
|
2015-10-19 05:19:45 -04:00
|
|
|
.table-holder
|
|
|
|
%table.table.table-striped
|
|
|
|
%thead
|
2014-12-19 09:15:29 -05:00
|
|
|
%tr
|
2015-10-19 05:19:45 -04:00
|
|
|
%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
|