X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a9b84ff4c600b394b0b18dc30f3e14958f99abb3..156c526c22fd9f96ffc8667fafaaf10e206a70e4:/app/views/user_blocks/_block.html.erb
diff --git a/app/views/user_blocks/_block.html.erb b/app/views/user_blocks/_block.html.erb
index 5444bdd5b..cbc2ee23c 100644
--- a/app/views/user_blocks/_block.html.erb
+++ b/app/views/user_blocks/_block.html.erb
@@ -1,23 +1,18 @@
- <% if show_user_name %>
- <%= link_to block.user.display_name, block.user, :class => "username d-inline-block text-truncate text-wrap" %> |
+ <% if @show_user_name %>
+ <%= link_to block.user.display_name, block.user, :class => "username d-inline-block text-truncate text-wrap", :dir => "auto" %> |
<% end %>
- <% if show_creator_name %>
- <%= link_to block.creator.display_name, block.creator, :class => "username d-inline-block text-truncate text-wrap" %> |
+ <% if @show_creator_name %>
+ <%= link_to block.creator.display_name, block.creator, :class => "username d-inline-block text-truncate text-wrap", :dir => "auto" %> |
<% end %>
<%= h truncate(block.reason) %> |
- <%= h block_status(block) %> |
-
- <% if block.revoker_id.nil? %>
- <%= t(".not_revoked") %>
- <% else %>
- <%= link_to block.revoker.display_name, block.revoker %>
- <% end %>
- |
- <%= link_to t(".show"), block %> |
- <% if current_user && (current_user.id == block.creator_id ||
- current_user.id == block.revoker_id) %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %> |
- <% if show_revoke_link %>
- <% if block.active? %><%= link_to t(".revoke"), revoke_user_block_path(block) %><% end %> |
+ <%= block_short_time_in_past(block.created_at) %> |
+ <% if block.ends_at > Time.now.utc %>
+ <%= block_short_time_in_future(block.ends_at) %> |
+ <% else %>
+ <%= block_short_time_in_past(block.ends_at) %> |
<% end %>
+ <%= h block_short_status(block) %> |
+ <%= link_to t(".show"), block %> |
+ <% if can?(:edit, block) %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %> |