@Naeem Shaikh solution works.
Though include
also gives you more intuitive way of including a partial template and also passing context variables to that as found in documention section of ejs.
<% users.forEach(function(user){ %>
<%- include('user/show', {user: user}); %>
<% }); %>