<%= for u <- @aliases do %> <%= link(u.name, to: ~p"/profiles/#{u}") %> <%= @type %> <%= cond do %> <% younger_than_7_days?(u) -> %> <%= pretty_time(u.created_at) %> <% younger_than_14_days?(u) -> %> <%= pretty_time(u.created_at) %> <% true -> %> <%= pretty_time(u.created_at) %> <% end %> <%= cond do %> <% not is_nil(u.deleted_at) -> %> Account Disabled <% currently_banned?(u) -> %> Currently Banned <% previously_banned?(u) -> %> Previously banned <% true -> %> Never banned <% end %> <% end %>