]> git.openstreetmap.org Git - rails.git/blob - app/views/user_blocks/edit.html.erb
Remove deprecated assert_blank and assert_present from tests
[rails.git] / app / views / user_blocks / edit.html.erb
1 <% @title = t 'user_block.edit.title', :name => h(@user_block.user.display_name) %>
2 <% content_for :heading do %>
3   <h1><%= raw t('user_block.edit.title',
4                 :name => link_to(
5                                  h(@user_block.user.display_name),
6                                  {:controller => 'user', :action => 'view', :display_name => @user_block.user.display_name})) %></h1>
7   <ul class='secondary-actions clearfix'>
8     <li><%= link_to t('user_block.edit.show'), @user_block %></li>
9     <li><%= link_to t('user_block.edit.back'), user_blocks_path %></li>
10   </ul>
11 <% end %>
12
13 <%= form_for(@user_block) do |f| %>
14   <%= f.error_messages %>
15
16   <p>
17     <%= f.label :reason, t('user_block.edit.reason', :name => h(@user_block.user.display_name)) %><br />
18     <%= richtext_area :user_block, :reason, :cols => 80, :rows => 20, :format => @user_block.reason_format %>
19   </p>
20   <p>
21     <%= label_tag 'user_block_period', t('user_block.edit.period') %><br />
22     <%= 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])) %>
23   </p>
24   <p>
25     <%= f.check_box :needs_view %>
26     <%= f.label :needs_view, t('user_block.edit.needs_view') %>
27   </p>
28   <p>
29     <%= f.submit t('user_block.edit.submit') %>
30   </p>
31 <% end %>