Sha256: 9b377b3dee2e9343aa8122046d08179d7c5de8c4b1d6cff4d98a3aca9fc0ed6f

Contents?: true

Size: 849 Bytes

Versions: 3

Compression:

Stored size: 849 Bytes

Contents

<style>
input[type=submit] {
  margin-top: 15px;
}
</style>
<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><%= render 'delete_form', application: application %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
doorkeeper-1.0.0 app/views/doorkeeper/applications/index.html.erb
doorkeeper-1.0.0.rc2 app/views/doorkeeper/applications/index.html.erb
doorkeeper-1.0.0.rc1 app/views/doorkeeper/applications/index.html.erb