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>
12 <%= form_for(@user_block) do |f| %>
13 <%= f.error_messages %>
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 %>
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])) %>
24 <%= f.check_box :needs_view %>
25 <%= f.label :needs_view, t('.needs_view') %>
28 <%= f.submit t('.submit') %>