<% tasks.forEach(function(t) { %>
<%= t.title %>
<% if (t.description) { %><%= t.description %><% } %>
<%= t.client_name %> — <%= t.engagement_title %>
<%= t.priority %>
<% if (t.due_date) { %>
<%= new Date(t.due_date).toLocaleDateString('nl-NL') %>
<% } %>
<% }) %>