dnet-docker/dnet-app/frontends/is/src/app/wf-history/wf-history.component.html

12 lines
453 B
HTML

<h2>Workflow History</h2>
<p>
<span *ngIf="from && to"><b>Recent workflows</b> (max {{total}})</span>
<span *ngIf="from && to"><b>Workflows from </b>{{from}} <b>to</b> {{to}}</span>
<span *ngIf="from && !to"><b>Workflows from </b>{{from}} <b>to</b>
<i>undefined</i></span>
<span *ngIf="!from && to"><b>Workflows from </b><i>undefined</i> <b>to</b> {{to}}</span>
</p>
<wf-history-table [entries]="entries" [allfields]="false"></wf-history-table>