<%=raw p.getName() %>
<%= p.getStatus() %>
<%= ( null != p.getMomentBirthday() ) ? p.getMomentBirthday().format( 'DD.MM.YYYY' ) : '---' %>
<% let cp = p.getChildProfiles(); %>
<% if ( !cp || 0 === cp.length ) { %>
- keine -
<% } else { %>
<% for ( let cpi = 0; cpi < cp.length; cpi++ ) { %>
<% if ( false === cp[ cpi ].deleted ) { %>
<%= cp[ cpi ].name %>
<% } %>
<% } %>
<% } %>