]> git.openstreetmap.org Git - rails.git/blob - app/views/user_blocks/new.html.erb
99f9252d1f65821743c22f9fb53b2dad8cdcc632
[rails.git] / app / views / user_blocks / new.html.erb
1 <h1><%= t('user_block.new.title', :name => @display_name) %></h1>
2
3 <% form_for(@user_block) do |f| %>
4   <%= f.error_messages %>
5
6   <p>
7     <%= check_box_tag 'tried_contacting', 'yes', (params[:tried_contacting] == "yes") %>
8     <%= label_tag 'tried_contacting', t('user_block.new.tried_contacting') %>
9   </p>
10   <p>
11     <%= check_box_tag 'tried_waiting', 'yes', (params[:tried_waiting] == "yes") %>
12     <%= label_tag 'tried_waiting', t('user_block.new.tried_waiting') %>
13   </p>
14   <p>
15     <%= f.label :reason, t('user_block.new.reason', :name => @display_name) %><br />
16     <%= f.text_area :reason %>
17   </p>
18   <p>
19     <%= label_tag 'user_block_period', t('user_block.new.period') %><br />
20     <%= select_tag('user_block_period', options_for_select(UserBlock::PERIODS.collect { |h| [t('user_block.period', :count => h), h.to_s] }, params[:user_block_period] )) %>
21   </p>
22   <p>
23     <%= f.check_box :needs_view %>
24     <%= f.label :needs_view, t('user_block.new.needs_view') %>
25   </p>
26   <p>
27     <%= hidden_field_tag 'display_name', @display_name %>
28     <%= f.submit t('user_block.new.submit') %>
29   </p>
30 <% end %>
31
32 <%= link_to 'Back', user_blocks_path %>