Change block end column to display strictly ends_at

Could display when block was viewed before. That's going to be unintuitive if sorting by different times is introduced.
This commit is contained in:
Anton Khorev 2023-08-24 05:35:53 +03:00
parent 30da09c5a1
commit 156c526c22
3 changed files with 14 additions and 9 deletions

View file

@ -7,10 +7,10 @@
<% end %>
<td><%= h truncate(block.reason) %></td>
<td><%= block_short_time_in_past(block.created_at) %></td>
<% if block.active? %>
<% if block.ends_at > Time.now.utc %>
<td><%= block_short_time_in_future(block.ends_at) %></td>
<% else %>
<td><%= block_short_time_in_past([block.ends_at, block.updated_at].max) %></td>
<td><%= block_short_time_in_past(block.ends_at) %></td>
<% end %>
<td><%= h block_short_status(block) %></td>
<td><%= link_to t(".show"), block %></td>