Users
<% it.users.forEach(function(user){ %>
<% /* Note that we can simply put the HTML tags inside the string,
rather than escaping them with < and >
This is because Eta automatically escapes interpolations */ %>
- <%= user.name %> <%= "<" + user.email + ">" %>
<% }) %>