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

8 lines
327 B
HTML

<!-- All contents in the first page -->
<ul>
<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>