<%- include("../base/header", { title: "Account Dashboard", session }) %>
Recent Uploads
<% for (const upload of recentUploads) { %>
<% if (upload.MediaType.startsWith("image/")) { %> ://<%= domains[upload.DomainId].Domain %>/<%= upload.MediaTag %>" height="30" width="50"> <% } else { %> <% } %>
<% } %>
Stats

Total Media: <%= FormattingUtility.NumberHumanReadable(mediaCount) %>

Media By Type:

    <% for (const mediaCount of mediaCounts) { %>
  1. <%= mediaCount.Type %>: <%= FormattingUtility.NumberHumanReadable(mediaCount.Count) %>
  2. <% } %>

Total size of Media: <%= FormattingUtility.NumberAsFileSize(mediaSize) %>

<%- include("../base/footer") %>