Sha256: d523521bbd4ed787c76ed4e44e330d3f8452c3e60a3e2f0b468b3c979ffab48c
Contents?: true
Size: 582 Bytes
Versions: 12
Compression:
Stored size: 582 Bytes
Contents
<header class="page-header"> <h1>Your authorized applications</h1> </header> <main role="main"> <table class="table table-striped"> <thead> <tr> <th>Application</th> <th>Created At</th> <th></th> <th></th> </tr> </thead> <tbody> <% @applications.each do |application| %> <tr> <td><%= application.name %></td> <td><%= application.created_at.strftime('%Y-%m-%d %H:%M:%S') %></td> <td><%= render 'delete_form', application: application %></td> </tr> <% end %> </tbody> </table> </main>
Version data entries
12 entries across 12 versions & 1 rubygems