github.com/leonlxy/hyperledger@v1.0.0-alpha.0.20170427033203-34922035d248/bddtests/templates/html/step.html (about) 1 <div id="{{ step_id }}"> 2 <h2>{{ step_id }}</h2> 3 <hr/> 4 <h3>{{ step.keyword }} {{ step.name }}</h3> 5 {% if step.table %} 6 <table> 7 <tr> 8 {% for heading in step.table.headings %} 9 <th>{{ heading }}</th> 10 {% endfor %} 11 </tr> 12 {% for row in step.table.rows %} 13 <tr> 14 {% for cell in row %} 15 <td>{{ cell }}</td> 16 {% endfor %} 17 </tr> 18 {% endfor %} 19 </table> 20 {% endif %} 21 </div>