- <p>
- <%= f.label :reason, t('user_block.edit.reason', :name => @user_block.user.display_name) %><br />
- <%= f.text_area :reason %>
- </p>
- <p>
- <%= label_tag 'user_block_period', t('user_block.edit.period') %><br />
- <%= hidden_field_tag 'what is the period', params[:user_block_period] %>
- <%= 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>
- <%= f.check_box :needs_view %>
- <%= f.label :needs_view, t('user_block.edit.needs_view') %>
- </p>
- <p>
- <%= f.submit t('user_block.edit.submit') %>
- </p>
-<% end %>
+ <% if @user_block.active? %>
+ <%= f.form_group do %>
+ <%= label_tag "user_block_period", t(".period"), :class => "form-label" %>
+ <%= select_tag "user_block_period",
+ options_for_select(UserBlock::PERIODS.collect { |h| [block_duration_in_words(h.hours), h.to_s] },
+ UserBlock::PERIODS.min_by { |h| (params[:user_block_period].to_i - h).abs }),
+ :class => "form-select" %>
+ <% end %>
+
+ <%= f.form_group :needs_view do %>
+ <%= f.check_box :needs_view %>
+ <% end %>
+ <% else %>
+ <div class="alert alert-info">
+ <%= t "user_blocks.update.inactive_block_cannot_be_reactivated" %>
+ </div>