Don't track IP addresses for post appeals, post flags, tag aliases, tag implications, or user feedbacks. These things are already tightly limited. We don't need IPs from them to detect sockpuppets.
18 lines
490 B
Plaintext
18 lines
490 B
Plaintext
<ul class="post-flag-reasons list-bulleted">
|
|
<% flags.each do |flag| %>
|
|
<li class="post-flag-reason">
|
|
<span class="prose"><%= format_text(flag.reason, inline: true) %></span>
|
|
|
|
<% if CurrentUser.can_view_flagger_on_post?(flag) %>
|
|
- <%= link_to_user(flag.creator) %>
|
|
<% end %>
|
|
|
|
- <%= time_ago_in_words_tagged(flag.created_at) %>
|
|
|
|
<% if flag.is_resolved? %>
|
|
<span class="resolved">RESOLVED</span>
|
|
<% end %>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|