mirror of
https://github.com/google/nomulus
synced 2026-02-09 14:30:33 +00:00
* Create console webapp, add material ui, initialize tlds and home pages * Add servlet for serving console static files * Add console tasks to nomulus tasks routine * Fix for base console GCP base usr * Add jetty dep and update_dependency.sh * Update console servlet url * verified fix for static url handler * Another deps update * Add Copyright * Remove unused variable * Update titles to Nomulus Console
15 lines
513 B
HTML
15 lines
513 B
HTML
<h3>Recent Activity</h3>
|
|
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8 console-home__activity">
|
|
<ng-container *ngFor="let column of columns" [matColumnDef]="column.columnDef">
|
|
<th mat-header-cell *matHeaderCellDef>
|
|
{{column.header}}
|
|
</th>
|
|
<td mat-cell *matCellDef="let row">
|
|
{{column.cell(row)}}
|
|
</td>
|
|
</ng-container>
|
|
|
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
|
|
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
|
|
</table>
|