dnet-applications/apps/dnet-orgs-database-application/src/main/resources/static/resources/html/browse.html

15 lines
349 B
HTML

<table class="table table-sm table-hover col-lg-3">
<thead class="thead-light">
<tr>
<th>{{field}}</th>
<th class="text-right">#</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="e in entries">
<td><a href="#!{{resultsBasePath}}/0/50/{{e.value}}">{{e.value}}</a></td>
<td class="text-right">{{e.count}}</td>
</tr>
</tbody>
</table>