👤 <%= profile.username %>
Joined <%= new Date(profile.created_at).toLocaleDateString() %>
<%= profile.totalPoints %>
Total Points
<%= profile.scanCount %>
Finds
<%= rank ? '#' + rank : '---' %>
Rank<% if (totalPlayers) { %> / <%= totalPlayers %><% } %>
<% if (huntBreakdown.length > 0) { %>
| Hunt |
Finds |
Points |
<% huntBreakdown.forEach(h => { %>
| <%= h.hunt_name %> |
<%= h.scans %> |
+<%= h.points %> |
<% }) %>
<% } %>
<% if (recentScans.length > 0) { %>
<% } else { %>
<% if (typeof isOwnProfile !== 'undefined' && isOwnProfile) { %>
No scans yet. Get out there and find some loot!
<% } else { %>
This player hasn't found any loot yet.
<% } %>
<% } %>
<% if (typeof isOwnProfile !== 'undefined' && isOwnProfile) { %>
<% } %>
<%- include('../partials/footer') %>