- <p>
- <%= check_box_tag 'tried_contacting', 'yes', (params[:tried_contacting] == "yes") %>
- <%= label_tag 'tried_contacting', t('user_block.new.tried_contacting') %>
- </p>
- <p>
- <%= check_box_tag 'tried_waiting', 'yes', (params[:tried_waiting] == "yes") %>
- <%= label_tag 'tried_waiting', t('user_block.new.tried_waiting') %>
- </p>
- <p>
- <%= f.label :reason, t('user_block.new.reason', :name => @display_name) %><br />
- <%= f.text_area :reason %>
- </p>
- <p>
- <%= label_tag 'user_block_period', t('user_block.new.period') %><br />
- <%= 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] )) %>
- </p>
- <p>