mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-12-01 07:18:00 +01:00
8 lines
264 B
Text
8 lines
264 B
Text
<%= if !!@object.user do %>
|
|
<strong>
|
|
<%= link(@object.user.name, to: ~p"/profiles/#{@object.user}") %>
|
|
</strong>
|
|
<%= if assigns[:awards] do %>
|
|
<%= render(PhilomenaWeb.ProfileView, "_awards.html", awards: @object.user.awards) %>
|
|
<% end %>
|
|
<% end %>
|