<%= render partial: 'staffs/people/nav_tabs', locals: { person: @person, tab: :person_comments } %> <% @person_comments&.each_with_index do |person_comment, index| %> <% unless index.zero? %>
<% end %>

<% if person_comment.origin %> <%= translate person_comment.origin, scope: %i[enums person_comment_origin] %>
<% end %> <%= person_comment.text %> <% if person_comment.attachment.attached? %>
<%= link_to person_comment.attachment.blob.filename.to_s, rails_blob_path(person_comment.attachment.blob, disposition: 'download') %> <% end %>

<%= localize person_comment.created_at, format: :long %> <% if person_comment.account %> • <%= link_to person_comment.account.nickname, person_comment.account %> <% end %>

<% end %>
<%= simple_form_for [:staff, @person, @person_comment] do |f| %> <%= f.error_notification %>
<%= f.input :text %> <%= f.input :attachment, direct_upload: true %>
<%= f.button :submit %>
<% end %>