lib/generators/rodauth/oauth/templates/app/views/rodauth/oauth_applications.html.erb in rodauth-oauth-0.7.4 vs lib/generators/rodauth/oauth/templates/app/views/rodauth/oauth_applications.html.erb in rodauth-oauth-0.8.0

- old
+ new

@@ -1,28 +1,28 @@ <% 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 "New Oauth Application", "#{rodauth.oauth_applications_path}/new", class: "btn btn-secondary" %> + <%= 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">Client ID (<%= apps_count %>)</th> - <th scope="col">Name</th> - <th scope="col">Homepage</th> + <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> + <td><%= link_to "Show", rodauth.oauth_application_path(application[rodauth.oauth_applications_id_column]) %></td> </tr> <% end %> </tbody> </table> <% end %>