Files
openaccounting-web/src/app/transaction/breadcrumbs.html
Patrick Nagurny 5ff09d328d initial commit
2018-10-19 11:28:08 -04:00

6 lines
229 B
HTML

<div class="breadcrumbs">
<span *ngFor="let account of accountCrumbs; let i = index">
<span><a routerLink="/accounts">{{account.name}}</a></span>
<span *ngIf="i < accountCrumbs.length - 1"> &gt; </span>
</span>
</div>