% strikes.forEach(strike=>{%>
User:
<% if (strike.strokedAvatar !== 'NOAVATAR') { %>
<% } %>
<%= strike.strokedName %>
was struck
by:
<% if (strike.strikerAvatar !== 'NOAVATAR') { %>
<% } %>
<%= strike.strikerName %>
With the reason: <%= strike.reason %>
Lasting until: <%=new Date(strike.expireAt).toDateString()%>
<%if(strike.validated){%>
Validated
<% } %>
<% if(!strike.validated){ %>
<% } %>
<% });%>
<%if(strikes.length==0){%>
THERE ARE NO STRIKES
<% } %>