<%= t(".heading.page_title") %>

<%= error_messages_for :abuse_report %>

<%= t("a11y.navigation") %>

<%= render "home/tos_navigation" %>

<%= t(".page_content_landmark") %>

<%= t(".purview.about_html", tos_link: link_to(t(".purview.tos"), tos_path), tos_faq_link: link_to(t(".purview.tos_faq"), tos_faq_path(anchor: "how_to_report"))) %>

<%= t(".purview.contact_support_html", fnok_link: link_to(t(".purview.fnok"), archive_faq_path("fannish-next-of-kin")), support_link: link_to(t(".purview.support"), new_feedback_report_path)) %>

<%= t(".purview.dmca_takedown_html", dmca_abbreviation: tag.abbr(t(".purview.dmca.abbreviated"), title: t(".purview.dmca.full")), legal_link: link_to(t(".purview.legal"), dmca_path)) %>

<%= t(".reportable.intro_html", pac_link: link_to(t(".reportable.pac"), "https://www.transformativeworks.org/committees/policy-abuse-committee/")) %>

<%= t(".include.intro") %>

<%= t(".do_not_spam.paragraph_html", split_bold: tag.strong(t(".do_not_spam.split")), delay_link: link_to(t(".do_not_spam.delay"), tos_faq_path(anchor: "complaint_resolution"))) %>

<%= t(".languages.intro_html", list_html: to_sentence(@abuse_languages.map { |language| tag.span(language.name, lang: language.short) })) %> <%= t(".languages.delay") %>

<%= form_for @abuse_report, class: "post" do |f| %>
<%= t(".form.legend.abuse") %>
<%= f.label :username, t(".form.name.label") %>
<%= f.text_field :username %>
<%= f.label :email, t(".form.email.label") %>
<%= f.text_field :email, "aria-describedby" => "email-field-description" %>

<%= t(".form.email.description") %>

<%= f.label :language, t(".form.language.label") %>
<%= f.select(:language, language_options_for_select(@abuse_languages, "name"), { selected: @abuse_report.language || Language.default.name }) %>
<%= f.label :url, t(".form.link.label") %>
<%= f.text_field :url, size: 60, "aria-describedby" => "url-field-description" %> <%= live_validation_for_field("abuse_report_url", failureMessage: t(".form.link.error")) %>

<%= t(".form.link.description") %>

<%= f.label :summary, t(".form.summary.label") %>
<%= f.text_field :summary, class: "observe_textlength", "aria-describedby" => "summary-field-description" %>

<%= t(".form.summary.description") %>

<%= generate_countdown_html("abuse_report_summary", ArchiveConfig.FEEDBACK_SUMMARY_MAX_DISPLAYED) %> <%= live_validation_for_field("abuse_report_summary", failureMessage: t(".form.summary.error")) %>
<%= f.label :comment, t(".form.comment.label") %>

<%= t(".form.comment.description_html", content_policy_link: link_to(t(".form.comment.content_policy"), content_path), tos_link: link_to(t(".form.comment.tos"), tos_path), include_link: link_to(t(".form.comment.include"), anchor: "reporthow")) %>

<%= f.text_area :comment, "aria-describedby" => "comment-field-description" %> <%= live_validation_for_field("abuse_report_comment", failureMessage: t(".form.comment.error")) %>
<%= t(".form.landmark.send") %>
<%= f.submit t(".form.submit.active") %>
<% end %>