]> git.openstreetmap.org Git - rails.git/blob - app/views/user_blocks/_block.html.erb
Change block end column to display strictly ends_at
[rails.git] / app / views / user_blocks / _block.html.erb
1 <tr>
2   <% if @show_user_name %>
3   <td><%= link_to block.user.display_name, block.user, :class => "username d-inline-block text-truncate text-wrap", :dir => "auto" %></td>
4   <% end %>
5   <% if @show_creator_name %>
6   <td><%= link_to block.creator.display_name, block.creator, :class => "username d-inline-block text-truncate text-wrap", :dir => "auto" %></td>
7   <% end %>
8   <td><%= h truncate(block.reason) %></td>
9   <td><%= block_short_time_in_past(block.created_at) %></td>
10   <% if block.ends_at > Time.now.utc %>
11   <td><%= block_short_time_in_future(block.ends_at) %></td>
12   <% else %>
13   <td><%= block_short_time_in_past(block.ends_at) %></td>
14   <% end %>
15   <td><%= h block_short_status(block) %></td>
16   <td><%= link_to t(".show"), block %></td>
17   <td><% if can?(:edit, block) %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %></td>
18 </tr>