X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/037585db3933a2954b43bd4b30ea5e30ade00be2..HEAD:/app/views/oauth/authorize.html.erb diff --git a/app/views/oauth/authorize.html.erb b/app/views/oauth/authorize.html.erb index 565d13808..b8fe11f75 100644 --- a/app/views/oauth/authorize.html.erb +++ b/app/views/oauth/authorize.html.erb @@ -1,19 +1,18 @@ <% content_for :heading do %> -

<%= t "oauth.oauthorize.title" %>

+

<%= t ".title" %>

<% end %> -

<%= raw t("oauth.oauthorize.request_access", :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(@user.display_name, :controller => :user, :action => :view, :display_name => @user.display_name)) %>

+

<%= t(".request_access_html", :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(current_user.display_name, current_user)) %>

-<%= form_tag authorize_url do %> - <%= hidden_field_tag "oauth_token", @token.token %> - <%- if params[:oauth_callback] -%> - <%= hidden_field_tag "oauth_callback", params[:oauth_callback] %> - <%- end -%> -

<%= t 'oauth.oauthorize.allow_to' %>

- -

<%= submit_tag t("oauth.oauthorize.grant_access") %>

+<%= bootstrap_form_tag do |f| %> + <%= f.hidden_field :oauth_token, :value => @token.token %> + <% if params[:oauth_callback] -%> + <%= f.hidden_field :oauth_callback, :value => params[:oauth_callback] %> + <% end -%> + <%= f.form_group :permissions, :label => { :text => t(".allow_to") } do %> + <% @token.client_application.permissions.each do |perm| -%> + <%= f.check_box perm, :value => "yes", :checked => @token.read_attribute(perm), :label => t(".#{perm}") %> + <% end -%> + <% end -%> + <%= f.primary t(".grant_access") %> <% end %>