% if (job.notes.length > 0) { %>
Notes: <%- job.notes %>
<% } %>
<% if (job.arguments.length > 0) { %>
Arguments:
<% _.forEach(job.arguments, function(argument) { %>
- (<%- argument.type %>) <%- argument.description %>
<% }); %>
<% } %>
<% if (job.example_arguments.length > 0) { %>
Example arguments to fill in next field:
<%- job.example_arguments %>
<% } %>