Sha256: 92a6affde03a6c6cf1f239abc3e04c8337f2ed899c4031e3827fdabcaeef8632

Contents?: true

Size: 711 Bytes

Versions: 1

Compression:

Stored size: 711 Bytes

Contents

<div class="span16">
  <header class="page-header">
    <h2>Your authorized applications</h2>
  </header>

  <table class="zebra-striped">
    <thead>
      <tr>
        <th>Application</th>
        <th>Authorized at</th>
        <th></th>
        <th></th>
      </tr>
    </thead>
    <tbody>
      <% @applications.each do |application| %>
        <tr>
          <td><%= application.name %></td>
          <td><%= application.created_at %></td>
          <td><%= link_to 'Revoke', oauth_authorized_application_path(application), :data => { :confirm => 'Are you sure?' }, :method => :delete, :class => 'btn danger' %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
couchkeeper-0.6.7 app/views/doorkeeper/authorized_applications/index.html.erb