Files
openaccounting-web/src/app/transaction/breadcrumbs.html

6 lines
229 B
HTML
Raw Normal View History

2018-10-19 11:28:08 -04:00
<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>