<%- include('./partials/header', {title: "Owned File"}) %> <%- include('./partials/navbar') %>
<% if (error_msg) { %>
    <% error_msg.forEach(msg => { %>
  • <%= msg %>
  • <% }) %>
<% } %> <% if (success_msg) { %>
<%= success_msg %>
<% } %>

Owned File

<% ownedFiles.forEach(el => { %> <% }) %>
ID Name Created At Action
<%= el.id %> <%= el.name %> <%= el.createdDate %>
<%- include('./partials/footer') %>