Files
alfresco-ng2-components/ng2-components/ng2-alfresco-search/src/components/alfresco-search.component.html
2016-05-20 16:43:38 +01:00

32 lines
992 B
HTML

<div style="padding: 20px;">
<h1>Search results</h1>
<p *ngIf="results">Found {{results.length}} results for {{currentSearchTerm}}</p>
<table *ngIf="results" class="mdl-data-table mdl-js-data-table mdl-shadow--2dp full-width">
<thead>
<tr>
<th>
<span class="mdl-data-table__cell--non-numeric"></span>
</th>
<th>
<span class="mdl-data-table__cell--non-numeric">Name</span>
</th>
<th>
<span class="mdl-data-table__cell--non-numeric">Modified by</span>
</th>
<th>
<span class="mdl-data-table__cell--non-numeric">Modified at</span>
</th>
</tr>
</thead>
<tbody>
<tr *ngFor="#result of results; #idx = index">
<td><img src="{{getDocumentThumbnailUrl(result)}}" /></td>
<td>{{result.entry.name}}</td>
<td>{{result.entry.modifiedByUser.displayName}}</td>
<td>{{result.entry.modifiedAt}}</td>
</tr>
</tbody>
</table>
</div>