]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/oauth_clients/show.html.erb
Whitespace fixes for oauth_clients erb files
[rails.git] / app / views / oauth_clients / show.html.erb
index 200fbc7beeaa54a8c56b32e1972ec8ee7c7db3ab..55fffd4823eba1e288723386b822d6be55bb5442 100644 (file)
@@ -3,19 +3,19 @@
 <% end %>
 <div class='prose'>
   <p>
-    <strong><%= t '.key' %></strong> <%=@client_application.key %>
+    <strong><%= t '.key' %></strong> <%= @client_application.key %>
   </p>
   <p>
-    <strong><%= t '.secret' %></strong> <%=@client_application.secret %>
+    <strong><%= t '.secret' %></strong> <%= @client_application.secret %>
   </p>
   <p>
-    <strong><%= t '.url' %></strong> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.request_token_path %>
+    <strong><%= t '.url' %></strong> http<%= 's' if request.ssl? %>://<%= request.host_with_port %><%= @client_application.oauth_server.request_token_path %>
   </p>
   <p>
-    <strong><%= t '.access_url' %></strong> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.access_token_path %>
+    <strong><%= t '.access_url' %></strong> http<%= 's' if request.ssl? %>://<%= request.host_with_port %><%= @client_application.oauth_server.access_token_path %>
   </p>
   <p>
-    <strong><%= t '.authorize_url' %></strong> http<%='s' if request.ssl? %>://<%= request.host_with_port %><%=@client_application.oauth_server.authorize_path %>
+    <strong><%= t '.authorize_url' %></strong> http<%= 's' if request.ssl? %>://<%= request.host_with_port %><%= @client_application.oauth_server.authorize_path %>
   </p>
 
   <p><%= t '.requests' %></p>
@@ -28,6 +28,6 @@
   <p><%= t '.support_notice' %></p>
 </div>
 <div class="buttons">
-  <%= button_to t('.edit'), edit_oauth_client_path(@client_application.user.display_name, @client_application), :method => :get, :class=> "oauth-edit" %>
-  <%= button_to t('.delete'), oauth_client_path(@client_application.user.display_name, @client_application), :method => :delete, :data => { :confirm => t('.confirm') }, :class=> "oauth-delete deemphasize" %>
+  <%= button_to t('.edit'), edit_oauth_client_path(@client_application.user.display_name, @client_application), :method => :get, :class => "oauth-edit" %>
+  <%= button_to t('.delete'), oauth_client_path(@client_application.user.display_name, @client_application), :method => :delete, :data => { :confirm => t('.confirm') }, :class => "oauth-delete deemphasize" %>
 </div>