mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-01 11:56:43 +01:00
9 lines
264 B
Text
9 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 %>
|