friends/friends/lib/friends_web/templates/friend/index.html.heex

14 lines
305 B
Plaintext

<h1>All Friends</h1>
<ul class="text-xl">
<%= for f <- @all_friends do %>
<li>
<.link href={"/friend/#{f.slug}"}><%= f.name %></.link>
<%= if f.id == @current_user.profile.id do %>
(you)
<% end %>
</li>
<% end %>
</ul>