33 lines
1 KiB
Text
33 lines
1 KiB
Text
<% @title = t(".title",
|
|
:block_on => h(@user_block.user.display_name),
|
|
:block_by => h(@user_block.creator.display_name)) %>
|
|
|
|
<% content_for :heading do %>
|
|
<h1><%= raw t(".heading",
|
|
:block_on => link_to(h(@user_block.user.display_name),
|
|
user_path(@user_block.user)),
|
|
:block_by => link_to(h(@user_block.creator.display_name),
|
|
user_path(@user_block.creator))) %></h1>
|
|
<% end %>
|
|
|
|
<% if @user_block.ends_at > Time.now %>
|
|
<p><b>
|
|
<%= t(".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(".confirm") %>
|
|
</p>
|
|
<p>
|
|
<%= submit_tag t(".revoke") %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<% else %>
|
|
<p>
|
|
<%= t(".past", :time => time_ago_in_words(@user_block.ends_at, :scope => :'datetime.distance_in_words_ago')) %>
|
|
</p>
|
|
<% end %>
|