isdashboard/src/main/webapp/app/tab-items/list-screen.component.html

27 lines
700 B
HTML

<table class="table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Id</th>
<th>Status</th>
<th>Last Modified</th>
<th>Available Memory</th>
<th>HD Space</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let data of dataSource">
<td>{{ data.name }}</td>
<td>{{ data.id }}</td>
<td>{{ data.status }}</td>
<td>{{ data.lastmod }}</td>
<td>{{ data.memavailable }}</td>
<td>{{ data.hdspace }}</td>
<td>
<!--TODO: qui sotto passare data.id -->
<button mat-icon-button color="primary" (click)="openJsonViewer(data)"><mat-icon>insert_drive_file</mat-icon></button>
</td>
</tr>
</tbody>
</table>