% if (data.instructions) { %>
<%= data.instructions %>
<% } %>
<% if (data.steps) { %>
<% _.each(data.steps, function(step) { %>
Step <%- step.id %>:
<% if (step.preText) { %>
<%= step.preText %>
<% } %>
<% if (step.dropdown) { %>
<% } %>
<% if (step.postText) { %>
<%= step.postText %>
<% } %>
<% if (step.extra) { %>
<%= step.extra %>
<% } %>
<% }) %>
<% } %>
<% if (data.questions) { %>
<% _.each(data.questions, function(question) { %>
<% if (question.preText) { %>
<%= question.preText %>
<% } %>
<% if (question.dropdown) { %>
<% } %>
<% if (question.postText) { %>
<%= question.postText %>
<% } %>
<% if (question.extra) { %>
<%= question.extra %>
<% } %>
<% }) %>
<% } %>
<% if (data.widget) { %>
<% if (data.widget.preText) { %>
<%= data.widget.preText %>
<% } %>
<% if (data.widget.postText) { %>
<%= data.widget.postText %>
<% } %>
<% } %>
<% if (data.checkable) { %>
<% } %>