Page MenuHomec4science

tln-leaf-description.component.html
No OneTemporary

File Metadata

Created
Sun, Apr 6, 21:36

tln-leaf-description.component.html

<div class="leaf" *ngIf="manuscriptLeaf">
<table>
<tr><td>
<table>
<tr>
<td *ngFor="let page of pages">
{{ page.title + " " + page.number }}
<open-in-viewer class="nospace" [routerInformation]="{ title: current_manuscript.title, number: page.number, page: page.id }"></open-in-viewer>
<open-in-viewer class="nospace" [routerInformation]="{ title: current_manuscript.title, number: page.number,
page: page.id, launchExternally: true }"></open-in-viewer>
</td>
</tr>
<tr>
<td *ngFor="let page of pages">
<img *ngIf="page.originalThumb" (click)="navigate(page.id)" class="thumbnail" [src]="page.originalThumb">
<img *ngIf="!page.originalThumb" (click)="navigate(page.id)" class="thumbnail" [src]="page.image">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="text">{{manuscriptLeaf.description}}</td>
</tr>
<tr>
<td class="text" *ngIf="manuscriptLeaf.originally"><i>{{manuscriptLeaf.originally}}</i></td>
</tr>
</table>
</div>

Event Timeline