]> git.openstreetmap.org Git - rails.git/blob - app/views/user_blocks/edit.html.erb
Merge remote-tracking branch 'upstream/pull/1839'
[rails.git] / app / views / user_blocks / edit.html.erb
1 <% @title = t '.title', :name => h(@user_block.user.display_name) %>
2 <% content_for :heading do %>
3   <h1><%= raw t('.title',
4                 :name => link_to(h(@user_block.user.display_name),
5                                  user_path(@user_block.user))) %></h1>
6   <ul class='secondary-actions clearfix'>
7     <li><%= link_to t('.show'), @user_block %></li>
8     <li><%= link_to t('.back'), user_blocks_path %></li>
9   </ul>
10 <% end %>
11
12 <%= form_for(@user_block) do |f| %>
13   <%= f.error_messages %>
14
15   <p>
16     <%= f.label :reason, t('.reason', :name => h(@user_block.user.display_name)) %><br />
17     <%= richtext_area :user_block, :reason, :cols => 80, :rows => 20, :format => @user_block.reason_format %>
18   </p>
19   <p>
20     <%= label_tag 'user_block_period', t('.period') %><br />
21     <%= select_tag('user_block_period', options_for_select(UserBlock::PERIODS.collect { |h| [t('user_blocks.period', :count => h), h.to_s] }, params[:user_block_period])) %>
22   </p>
23   <p>
24     <%= f.check_box :needs_view %>
25     <%= f.label :needs_view, t('.needs_view') %>
26   </p>
27   <p>
28     <%= f.submit t('.submit') %>
29   </p>
30 <% end %>