argos/dmp-frontend/src/app/form/tableOfContents/table-of-contents.component...

8 lines
327 B
HTML
Raw Normal View History

2017-12-05 17:56:21 +01:00
<!-- All contents in the first page -->
<ul>
2018-07-11 15:47:36 +02:00
<li *ngFor="let section of model['sections'] let i = index">
<!-- && field.label for sections without field label as data summery -->
<table-of-contents-section [page]='section.page' [model]="section" [index]="i+1" [path]="i+1"> </table-of-contents-section>
</li>
</ul>