Skip to content

Commit

Permalink
closes #288
Browse files Browse the repository at this point in the history
  • Loading branch information
anshooarora committed Mar 14, 2021
1 parent 0aac204 commit e5e7455
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
<#include "log.ftl">
<#macro recurse_nodes test>
<#if test.hasChildren()>
<div class="accordion">
<div class="accordion" role="tablist">
<#list test.children as node>
<div class="card">
<div class="card-header">
<div class="card-title">
<div class="node" id="${node.getId()}">${node.name}</div>
<div class="node-status float-right"><span class="badge ${node.status.toLower()}-bg log ">${node.status}</span></div>
<div class="node-time">
<span class='badge badge-default'>${node.timeTaken()?number_to_time?string("mm:ss:SSS")}</span>
</div>
<div class="node-time"><span class='badge badge-default'>${node.timeTaken()?number_to_time?string("mm:ss:SSS")}</span></div>
<a class="node <#if !node.hasChildren()>collapsed</#if>" id="${node.getId()}"><span>${node.name}</span></a>
<div class="node-attr">
<#if node.hasAttributes()><@attributes test=node /></#if>
</div>
Expand Down

0 comments on commit e5e7455

Please sign in to comment.