github.com/adnan-c/fabric_e2e_couchdb@v0.6.1-preview.0.20170228180935-21ce6b23cf91/bddtests/templates/html/scenario.html (about) 1 <div> 2 <h1>{{ scenario.name }}</h1> 3 <hr/> 4 <ul id="navigation"> 5 {% for step in steps %} 6 {% if step.name|length < 80 %} 7 <li><a href="#Step {{ loop.index }}">Step {{ loop.index }}: {{ step.keyword }} {{ step.name }}</a></li> 8 {% else %} 9 <li><a href="#Step {{ loop.index }}">Step {{ loop.index }}: {{ step.keyword }} {{ step.name[0:80] }}</a></li> 10 {% endif %} 11 {% endfor %} 12 </ul> 13 </div>