philomena/lib/philomena_web/templates/profile/alias/index.html.heex

36 lines
837 B
Text
Raw Normal View History

2024-06-02 05:50:36 +02:00
<h2>
Potential Aliases
</h2>
<p>
Remember that aliases, especially fingerprints, aren't infallible by a
<em>
long
</em>
margin. Use this data only in supplement to other evidence when considering bans.
</p>
<br />
<br />
<table class="table">
<thead>
<tr>
<td>
User
</td>
<td>
Method
</td>
<td>
Creation Date
</td>
<td>
Ban Status
</td>
</tr>
</thead>
<tbody>
<%= render(PhilomenaWeb.Profile.AliasView, "_aliases.html", aliases: @both_matches, type: "IP + FP", conn: @conn) %>
<%= render(PhilomenaWeb.Profile.AliasView, "_aliases.html", aliases: @ip_matches, type: "IP", conn: @conn) %>
<%= render(PhilomenaWeb.Profile.AliasView, "_aliases.html", aliases: @fp_matches, type: "FP", conn: @conn) %>
</tbody>
</table>