Sha256: bb44d555473ff2dabdd3958b6435da6239bfdc201fa3fa1359965f7b930568b4

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

<% oauth_applications_ds = rodauth.scope.instance_variable_get(:@oauth_applications) %>
<% apps_count = oauth_applications_ds.count %>
<div class="btn-group" role="group" aria-label="Buttons">
  <%= link_to rodauth.new_oauth_application_page_title, "#{rodauth.oauth_applications_path}/new", class: "btn btn-secondary" %>
</div>
<% if apps_count.zero? %>
  <p>No oauth applications yet!</p>
<% else %>
  <table class="table">
    <thead>
      <tr>
        <th scope="col"><%= rodauth.oauth_application_client_id_label %> (<%= apps_count %>)</th>
        <th scope="col"><%= rodauth.oauth_application_name_label %></th>
        <th scope="col"><%= rodauth.oauth_application_homepage_url_label %></th>
        <th scope="col"></th>
      </tr>
    </thead>
    <tbody>
      <% oauth_applications_ds.each do |application| %>
        <tr>
          <td><%= application[rodauth.oauth_applications_client_id_column] %></td>
          <td><%= application[rodauth.oauth_applications_name_column] %></td>
          <td><%= application[rodauth.oauth_applications_homepage_url_column] %></td>
          <td><%= link_to "Show", rodauth.oauth_application_path(application[rodauth.oauth_applications_id_column]) %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rodauth-oauth-0.8.0 lib/generators/rodauth/oauth/templates/app/views/rodauth/oauth_applications.html.erb