X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b8f6dbd403507edd14f04f3151c285e232607360..7a85ce0c12cf4d75561c35e2ff28e718a390d622:/app/views/oauth_clients/show.html.erb
diff --git a/app/views/oauth_clients/show.html.erb b/app/views/oauth_clients/show.html.erb
index 5ec45aef5..c7b10f137 100644
--- a/app/views/oauth_clients/show.html.erb
+++ b/app/views/oauth_clients/show.html.erb
@@ -1,20 +1,33 @@
-
OAuth details for <%=@client_application.name %>
-
- Consumer Key: <%=@client_application.key %>
-
-
- Consumer Secret: <%=@client_application.secret %>
-
-
- Request Token URL http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.request_token_path %>
-
-
- Access Token URL http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.access_token_path %>
-
-
- Authorize URL http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.authorize_path %>
-
+<% content_for :heading do %>
+ <%= t(".title", :app_name => @client_application.name) %>
+<% end %>
-
- We support hmac-sha1 (recommended) as well as plain text in ssl mode.
-
\ No newline at end of file
+<%= render :partial => "settings_menu" %>
+
+
+ - <%= t ".key" %>
+ - <%= @client_application.key %>
+
- <%= t ".secret" %>
+ - <%= @client_application.secret %>
+ - <%= t ".url" %>
+ - http<%= "s" if request.ssl? %>://<%= request.host_with_port %><%= @client_application.oauth_server.request_token_path %>
+ - <%= t ".access_url" %>
+ - http<%= "s" if request.ssl? %>://<%= request.host_with_port %><%= @client_application.oauth_server.access_token_path %>
+ - <%= t ".authorize_url" %>
+ - http<%= "s" if request.ssl? %>://<%= request.host_with_port %><%= @client_application.oauth_server.authorize_path %>
+
+
+
+
<%= t ".requests" %>
+
+ <% @client_application.permissions.each do |perm| %>
+ - <%= t("activerecord.attributes.client_application.#{perm}") %>
+ <% end %>
+
+
<%= t ".support_notice" %>
+
+
+
+ <%= link_to t(".edit"), edit_oauth_client_path(@client_application.user.display_name, @client_application), :method => :get, :class => "btn btn-outline-primary" %>
+ <%= link_to t(".delete"), oauth_client_path(@client_application.user.display_name, @client_application), :method => :delete, :data => { :confirm => t(".confirm") }, :class => "btn btn-outline-danger" %>
+