Sha256: 5bf0465096619024152b56a14360419ed224fd6292c9c060fd21db877bc76feb

Contents?: true

Size: 653 Bytes

Versions: 4

Compression:

Stored size: 653 Bytes

Contents

<div class="opro">
  <%- if @client_apps.blank? -%>
    <h2>You have no applications.</h2>
  <%- else -%>
    <h2>Your Applications</h2>
    <% @client_apps.each do |client_app| %>
      <table>
        <tr><td>Name:   </td><td> <%= client_app.name       %></td></tr>
        <tr><td>Client Id:     </td><td> <%= client_app.app_id     %></td></tr>
        <tr><td>Client Secret: </td><td> <%= client_app.app_secret %></td></tr>
      </table>
      <%= link_to "edit", edit_oauth_client_app_path(client_app) %>
      <hr />
    <%- end -%>
  <%- end -%>
  <div>
    <%= link_to 'Register a new application', new_oauth_client_app_path %>
  </div>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
opro-0.5.0 app/views/opro/oauth/client_app/index.html.erb
opro-0.4.3 app/views/opro/oauth/client_app/index.html.erb
opro-0.4.2 app/views/opro/oauth/client_app/index.html.erb
opro-0.4.1 app/views/opro/oauth/client_app/index.html.erb