summaryrefslogtreecommitdiff
path: root/app/views/doorkeeper/authorized_applications/index.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/doorkeeper/authorized_applications/index.html.haml')
-rw-r--r--app/views/doorkeeper/authorized_applications/index.html.haml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/doorkeeper/authorized_applications/index.html.haml b/app/views/doorkeeper/authorized_applications/index.html.haml
new file mode 100644
index 00000000000..814cdc987ef
--- /dev/null
+++ b/app/views/doorkeeper/authorized_applications/index.html.haml
@@ -0,0 +1,16 @@
+%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 \ No newline at end of file