Merge branch '3448-keep-put-timestamps'
[arvados.git] / services / api / app / views / api_client_authorizations / index.html.erb
1 <table style="width:100%">
2   <tr class="contain-align-left">
3     <th>
4       API client
5     </th><th>
6       Token
7     </th><th>
8       Created at
9     </th><th>
10       Used at
11     </th><th>
12       Expires
13     </th>
14   </tr>
15
16   <% @objects.each do |o| %>
17
18   <tr>
19     <td>
20       <%= o.api_client.name || o.api_client.url_prefix || o.api_client.uuid %>
21     </td><td>
22       <%= o.api_token %>
23     </td><td>
24       <%= o.created_at %>
25     </td><td>
26       <%= o.last_used_at %>
27       /
28       <%= o.last_used_by_ip_address %>
29     </td><td>
30       <%= o.expires_at %>
31     </td>
32   </tr>
33
34   <% end %>
35
36 </table>