Sha256: 15d29b94c60d8444464f3602e76c181ed6eb300077cd772ed6679de878c70b84
Contents?: true
Size: 1.31 KB
Versions: 7
Compression:
Stored size: 1.31 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> <%= rodauth.oauth_management_pagination_links(oauth_applications_ds) %> <% end %>
Version data entries
7 entries across 7 versions & 1 rubygems