… | |
… | |
61 | |
61 | |
62 | <c:if test="${!empty part.steps}" > |
62 | <c:if test="${!empty part.steps}" > |
63 | <table class='steps' summary='First column= step number, second column= action icon, third column= action description'> |
63 | <table class='steps' summary='First column= step number, second column= action icon, third column= action description'> |
64 | <c:forEach var="step" items="${part.steps}" varStatus="rowCounter"> |
64 | <c:forEach var="step" items="${part.steps}" varStatus="rowCounter"> |
65 | <tr> |
65 | <tr> |
66 | <td>${rowCounter.count}</td> |
66 | <td class="rowcount">${rowCounter.count}</td> |
67 | <td>${step.stepName}</td> |
67 | <td>${step.stepName}</td> |
68 | <td><span class='${step.category}'> </span></td> |
68 | <td><span class='${step.category}'> </span></td> |
69 | <td><hst:html hippohtml="${step.explanation}"/></td> |
69 | <td><hst:html hippohtml="${step.explanation}"/></td> |
70 | </tr> |
70 | </tr> |
71 | </c:forEach> |
71 | </c:forEach> |