%- include('partials/header', { title: 'Shares', user }) %> Create share <% if (error) { %> <%= error %> <% } %> Create Share names are 1-31 chars and must avoid reserved names like private or IPC$. My shares <% if (!myShares.length) { %> You do not own any shares yet. <% } %> <% myShares.forEach((share) => { %> <%= share.name %> Owner <% }) %> Shares you can access <% if (!shares.length) { %> No shares are available to you yet. <% } %> <% shares.forEach((share) => { %> <%= share.name %> <% if (share.owner_upn === user.upn) { %> Owner <% } %> <% }) %> <%- include('partials/footer') %>
You do not own any shares yet.
No shares are available to you yet.