mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
16 lines
505 B
Plaintext
16 lines
505 B
Plaintext
<% if user %>
|
|
<% if !user.thredded_anonymous? %>
|
|
<% user_path = user_path(user) %>
|
|
<% if user_path.blank? %>
|
|
<span class='thredded--username'><%= user.thredded_display_name %></span>
|
|
<% else %>
|
|
<a href="<%= user_path %>"><%= user.thredded_display_name %></a>
|
|
<%= render partial: 'thredded/users/badge', locals: { user: user } %>
|
|
<% end %>
|
|
<% else %>
|
|
<%= user.thredded_display_name %>
|
|
<% end %>
|
|
<% else %>
|
|
<em><%= t 'thredded.null_user_name' %></em>
|
|
<% end %>
|