github.com/darrenli6/fabric-sdk-example@v0.0.0-20220109053535-94b13b56df8c/bddtests/templates/html/step.html (about)

     1  <!--
     2  #
     3  # Copyright IBM Corp. All Rights Reserved.
     4  #
     5  # SPDX-License-Identifier: Apache-2.0
     6  #
     7  -->
     8  <div id="{{ step_id }}">
     9      <h2>{{ step_id }}</h2>
    10      <hr/>
    11      <h3>{{ step.keyword }} {{ step.name }}</h3>
    12      {% if step.table %}
    13      <table>
    14          <tr>
    15              {% for heading in step.table.headings %}
    16              <th>{{ heading }}</th>
    17              {% endfor %}
    18          </tr>
    19          {% for row in step.table.rows %}
    20          <tr>
    21              {% for cell in row %}
    22              <td>{{ cell }}</td>
    23              {% endfor %}
    24          </tr>
    25          {% endfor %}
    26      </table>
    27      {% endif %}
    28  </div>