<%- include('partials/header') %>

Your Dashboard

Upload New Notes
<% if (files.length === 0) { %>

No files uploaded yet

Upload your first set of notes to get started with AI-powered revision.

Upload Notes
<% } else { %>
<% files.forEach(function(file, index) { %>
<%= file.originalName %>
<%= Math.round(file.size / 1024) %> KB
<% if (file.status === 'processing') { %> Processing <% } else if (file.status === 'processed') { %> Processed <% } else if (file.status === 'failed') { %> Failed <% } else { %> Uploaded <% } %>
Uploaded: <%= new Date(file.uploadDate).toLocaleDateString() %> <% if (file.processingResult) { %>
Chunks: <%= file.processingResult.successfulChunks %>/<%= file.processingResult.totalChunks %> <% } %>
<% if (file.status === 'processed') { %> Revise with AI <% } else if (file.status === 'processing') { %> <% } else if (file.status === 'failed') { %> <% } else { %> <% } %>
<% }); %>
<% } %>
<%- include('partials/footer') %>