Sha256: c4fb5db42d3107bd7867622549306bca600a6642960850e0c74b8227176674e7

Contents?: true

Size: 875 Bytes

Versions: 1

Compression:

Stored size: 875 Bytes

Contents

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

  <p><%= link_to 'New Application', new_oauth_application_path %></p>

  <table class="zebra-striped">
    <thead>
      <tr>
        <th>Name</th>
        <th>Callback url</th>
        <th></th>
        <th></th>
      </tr>
    </thead>
    <tbody>
      <% @applications.each do |application| %>
        <tr id="application_<%= application.id %>">
          <td><%= link_to application.name, [:oauth, application] %></td>
          <td><%= application.redirect_uri %></td>
          <td><%= link_to 'Edit', edit_oauth_application_path(application) %></td>
          <td><%= link_to 'Destroy', [:oauth, application], :data => { :confirm => 'Are you sure?' }, :method => :delete %></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/applications/index.html.erb