<%- 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 { %> <% } %>
<% } %>
Account
API <% if (session.userType === UserType.Admin) { %> Domains <% } %> Media
Stats
<% if (mediaCount === 0) { %>

No stats to show.

<% } else { %>

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") %>