philomena/lib/philomena_web/templates/ban/_bans.html.heex
2024-06-01 23:50:36 -04:00

54 lines
988 B
Text

<table class="table">
<thead>
<tr>
<th>
Ban Enacted
</th>
<th>
Ban Expires
</th>
<th class="hide-mobile">
Duration
</th>
<th>
Active?
</th>
<th>
Reason
</th>
<th>
Ban ID
</th>
</tr>
</thead>
<tbody>
<%= for b <- @bans do %>
<tr>
<td>
<%= pretty_time(b.created_at) %>
</td>
<td>
<%= pretty_time(b.valid_until) %>
</td>
<td class="hide-mobile">
<%= distance_of_time_in_words(b.created_at, b.valid_until) %>
</td>
<%= if active?(b) do %>
<td class="success">
Yes
</td>
<% else %>
<td class="danger">
No
</td>
<% end %>
<td>
<%= b.reason %>
</td>
<td>
<%= b.generated_ban_id %>
</td>
</tr>
<% end %>
</tbody>
</table>