openstreetmap-website/app/views/oauth/authorize.html.erb

18 lines
816 B
Text

<% content_for :heading do %>
<h1><%= t ".title" %></h1>
<% end %>
<p><%= t(".request_access_html", :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(current_user.display_name, user_path(current_user))) %></p>
<%= 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 %>