<%= contribution.title %>
<%= contribution.description['@html'] %>
<% if(contribution.tasks.length) { %>
Tasks (<%= contribution.tasks.length %>)
<% _.forEach(contribution.tasks, function(task) { %>
-
<% if(task.complete) { %>
<%= task.description %>
<% } else { %>
<%= task.description %>
<% } %>
<% }); %>
<% }; %>
View contribution