29 lines
1,010 B
Text
29 lines
1,010 B
Text
<% @title = t '.title', :name => h(@user.display_name) %>
|
|
<% content_for :heading do %>
|
|
<h1><%= raw t('.heading',
|
|
:name => link_to(
|
|
h(@user.display_name),
|
|
user_path(@user))) %></h1>
|
|
<% end %>
|
|
<%= form_for(@user_block) do |f| %>
|
|
<%= f.error_messages %>
|
|
|
|
<p>
|
|
<%= f.label :reason, t('.reason', :name => @user.display_name) %><br />
|
|
<%= richtext_area :user_block, :reason, :cols => 80, :rows => 20 %>
|
|
</p>
|
|
<p>
|
|
<%= label_tag 'user_block_period', t('.period') %><br />
|
|
<%= 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] )) %>
|
|
</p>
|
|
<p>
|
|
<%= f.check_box :needs_view %>
|
|
<%= f.label :needs_view, t('.needs_view') %>
|
|
</p>
|
|
<p>
|
|
<%= hidden_field_tag 'display_name', @user.display_name %>
|
|
<%= f.submit t('.submit') %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<%= link_to t('.back'), user_blocks_path %>
|