mirror of
https://github.com/philomena-dev/philomena.git
synced 2025-02-08 07:06:44 +01:00
36 lines
837 B
Text
36 lines
837 B
Text
|
<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>
|