<%= nav_breadcrumb( [translate(:staff_services), staff_root_path], [Person.model_name.human(count: 0), staff_people_path], @person.full_name, ) %> <%= 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_enum :person_comment_origin, 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 %>