X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b8f6dbd403507edd14f04f3151c285e232607360..16fef14b61f4cf5222484b7c315ed05c661cbcef:/app/views/oauth_clients/index.html.erb diff --git a/app/views/oauth_clients/index.html.erb b/app/views/oauth_clients/index.html.erb index 8f9e0a0b1..64a316718 100644 --- a/app/views/oauth_clients/index.html.erb +++ b/app/views/oauth_clients/index.html.erb @@ -1,39 +1,36 @@ -
<%= flash[:notice] %>
-

OAuth Client Applications

+<% content_for :heading do %> +

<%= t '.title' %>

+<% end %> + <% unless @tokens.empty? %> -

The following tokens have been issued to applications in your name

+

<%= t '.my_tokens' %>

+

<%= t '.list_tokens' %>

- + + <% @tokens.each do |token|%> - <% content_tag_for :tr, token do %> + <%= content_tag_for :tr, token do %> <% end %> - <% end %> + <% end %>
ApplicationIssued 
<%= t '.application' %><%= t '.issued_at' %> 
<%= link_to token.client_application.name, token.client_application.url %> <%= token.authorized_at %> - <% form_tag :controller => 'oauth', :action => 'revoke' do %> + <%= form_tag :controller => 'oauth', :action => 'revoke' do %> <%= hidden_field_tag 'token', token.token %> - <%= submit_tag "Revoke!" %> + <%= submit_tag t('.revoke') %> <% end %>
<% end %> -

Application Developers

+

<%= t '.my_apps' %>

<% if @client_applications.empty? %> -

- Do you have an application you would like to register for use with us using the OAuth standard? -

-

- You must register your web application before it can make OAuth requests to this service -

+

<%= raw(t('.no_apps', :oauth => "OAuth")) %>

<% else %> -

- You have the following client applications registered: -

- <% @client_applications.each do |client|%> - <% div_for client do %> - <%= link_to client.name, :action => :show, :id => client.id %> - <% end %> - <% end %> +

<%= t '.registered_apps' %>

+<% @client_applications.each do |client|%> + <%= div_for client do %> + <%= link_to client.name, :action => :show, :id => client.id %> + <% end %> +<% end %> <% end %> -

<%= link_to "Register your application", :action => :new %>

+

<%= link_to t('.register_new'), :action => :new %>