25 lines
717 B
Text
25 lines
717 B
Text
<h1><%= t('user_block.revoke.heading',
|
|
:block_on => @user_block.user.display_name,
|
|
:block_by => @user_block.creator.display_name) %></h1>
|
|
|
|
<% if @user_block.ends_at > Time.now %>
|
|
<p><b>
|
|
<%= t('user_block.revoke.time_future', :time => distance_of_time_in_words_to_now(@user_block.ends_at)) %>
|
|
</b></p>
|
|
|
|
<% form_for :revoke, :url => { :action => "revoke" } do |f| %>
|
|
<%= f.error_messages %>
|
|
<p>
|
|
<%= check_box_tag 'confirm', 'yes' %>
|
|
<%= label_tag 'confirm', t('user_block.revoke.confirm') %>
|
|
</p>
|
|
<p>
|
|
<%= submit_tag t('user_block.revoke.revoke') %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<% else %>
|
|
<p>
|
|
<%= t('user_block.revoke.past', :time => distance_of_time_in_words_to_now(@user_block.ends_at)) %>
|
|
</p>
|
|
<% end %>
|