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

17 lines
529 B
HTML
Raw Normal View History

2020-10-08 15:10:11 +02:00
<table class="table table-sm table-hover col-lg-5">
2020-07-03 12:09:22 +02:00
<thead class="thead-light">
<tr>
<th>{{field}}</th>
2020-10-08 15:10:11 +02:00
<th class="text-right text-nowrap"># approved</th>
<th class="text-right text-nowrap"># pending</th>
2020-07-03 12:09:22 +02:00
</tr>
</thead>
<tbody>
<tr ng-repeat="e in entries">
2020-10-08 15:10:11 +02:00
<td><a href="#!{{resultsBasePath}}/0/50/{{e.value}}">{{e.name}}<span ng-if="e.value != e.name"> ({{e.value}})</span></a></td>
<td class="text-right">{{e.approved}}</td>
<td class="text-right">{{e.pending}}</td>
2020-07-03 12:09:22 +02:00
</tr>
</tbody>
</table>