25 lines
1.3 KiB
Plaintext
25 lines
1.3 KiB
Plaintext
<%= render partial: "domain/posts/title_stat", locals: { label: "Views", value: post.num_views, icon_class: "fa-eye" } %>
|
|
<%= render partial: "domain/posts/title_stat", locals: { label: "Comments", value: post.num_comments, icon_class: "fa-comment" } %>
|
|
<%= render partial: "domain/posts/title_stat", locals: { label: "Status", value: post.status_for_view, icon_class: "fa-calendar-days" } %>
|
|
<% if policy(post).view_tried_from_fur_archiver? %>
|
|
<% if post.fuzzysearch_checked_at? %>
|
|
<% hle = post.fuzzysearch_entry %>
|
|
<span>
|
|
<i class="fa-solid fa-search mr-1"></i>
|
|
<%= link_to "FuzzySearch", log_entry_path(hle), title: post.fuzzysearch_checked_at&.strftime("%Y-%m-%d %H:%M:%S"), class: "text-blue-600" %>
|
|
</span>
|
|
<% end %>
|
|
<% if (hle = post.fur_archiver_post_file&.log_entry) %>
|
|
<span>
|
|
<i class="fa-solid fa-download mr-1"></i>
|
|
<%= link_to "FurArchiver", log_entry_path(hle), title: hle.requested_at&.strftime("%Y-%m-%d %H:%M:%S"), class: "text-blue-600" %>
|
|
</span>
|
|
<% end %>
|
|
<% if (hle = post.tor_post_file&.log_entry) %>
|
|
<span>
|
|
<i class="fa-solid fa-mask mr-1"></i>
|
|
<%= link_to "Tor", log_entry_path(hle), title: hle.requested_at&.strftime("%Y-%m-%d %H:%M:%S"), class: "text-blue-600" %>
|
|
</span>
|
|
<% end %>
|
|
<% end %>
|