Sha256: 12d5ec821d3bc9df42a517af2c32a83f7ad36271de977a67c002d48cc6b68b94

Contents?: true

Size: 756 Bytes

Versions: 25

Compression:

Stored size: 756 Bytes

Contents

<header class="page-header">
  <h1><%= t('doorkeeper.authorized_applications.index.title') %></h1>
</header>

<main role="main">
  <table class="table table-striped">
    <thead>
    <tr>
      <th><%= t('doorkeeper.authorized_applications.index.application') %></th>
      <th><%= t('doorkeeper.authorized_applications.index.created_at') %></th>
      <th></th>
      <th></th>
    </tr>
    </thead>
    <tbody>
    <% @applications.each do |application| %>
      <tr>
        <td><%= application.name %></td>
        <td><%= application.created_at.strftime(t('doorkeeper.authorized_applications.index.date_format')) %></td>
        <td><%= render 'delete_form', application: application %></td>
      </tr>
    <% end %>
    </tbody>
  </table>
</main>

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
doorkeeper-2.1.4 app/views/doorkeeper/authorized_applications/index.html.erb
doorkeeper-2.1.3 app/views/doorkeeper/authorized_applications/index.html.erb
doorkeeper-2.1.2 app/views/doorkeeper/authorized_applications/index.html.erb
doorkeeper-2.1.1 app/views/doorkeeper/authorized_applications/index.html.erb
doorkeeper-2.1.0 app/views/doorkeeper/authorized_applications/index.html.erb