16 lines
427 B
Text
16 lines
427 B
Text
|
%header.page-header
|
||
|
%h1 Your authorized applications
|
||
|
%main{:role => "main"}
|
||
|
%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
|