<%- include('partials/head') %> <% const activePage = 'history'; %> <%- include('partials/sidebar') %>

Search History

<% if (!searches || searches.length === 0) { %>

No searches yet

Your search history will appear here

Start Searching
<% } else { %>
<% searches.forEach(s => { %>

<%= s.query %>

<%= s.resultsCount %> results ยท <%= new Date(s.timestamp).toLocaleString() %>

View
<% }) %>
<% } %>