Files
grecia/app/views/communities/_participant.html.erb
Javi Martín b51aa31e6a Use HTML beautifier to indent ERB files
We had inconsistent indentation in many places. Now we're fixing them
and adding a linter to our CI so we don't accidentally introduce
inconsistent indentations again.
2025-03-07 16:31:08 +01:00

23 lines
519 B
Plaintext

<div class="comment-body">
<div class="comment-info">
<%= render Shared::AvatarComponent.new(participant, size: 32, class: "author-photo") %>
<div class="comment-info">
<span class="user-name">
<%= link_to participant.name, user_path(participant) %>
</span>
<% if author?(@community, participant) %>
&nbsp;&bull;&nbsp;
<span class="label round is-author">
<%= t("comments.comment.author") %>
</span>
<% end %>
</div>
</div>
</div>