github.com/darrenli6/fabric-sdk-example@v0.0.0-20220109053535-94b13b56df8c/bddtests/templates/html/scenario.html (about) 1 <!-- 2 # 3 # Copyright IBM Corp. All Rights Reserved. 4 # 5 # SPDX-License-Identifier: Apache-2.0 6 # 7 --> 8 <div> 9 10 <h1>{{ scenario.name }}</h1> 11 <hr/> 12 <ul id="navigation"> 13 {% for step in steps %} 14 {% set liClass = step.status %} 15 {% if step.name|length < 80 %} 16 <li class="{{ liClass }}"><a href="#Step {{ loop.index }}">Step {{ loop.index }}: {{ step.keyword }} {{ step.name }}</a></li> 17 {% else %} 18 <li class="{{ liClass }}"><a href="#Step {{ loop.index }}">Step {{ loop.index }}: {{ step.keyword }} {{ step.name[0:80] }}</a></li> 19 {% endif %} 20 {% endfor %} 21 </ul> 22 </div>