mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 11:41:54 +01:00
25 lines
1.0 KiB
HTML
25 lines
1.0 KiB
HTML
<h4 class="page-header title-color underlined">// 'popular_repositories' | tr //</h4>
|
|
<div class="col-xs-4 col-md-12 up-table-pane">
|
|
<div class="table-head-container">
|
|
<table class="table table-pane table-header">
|
|
<thead>
|
|
<th width="60%">// 'repository_name' | tr //</th>
|
|
<th width="15%">// 'count' | tr //</th>
|
|
<th width="25%">// 'creator' | tr //</th>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
<div class="table-body-container" ng-style="vm.customBodyHeight">
|
|
<table class="table table-pane">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="5" height="120px" class="empty-hint" ng-if="vm.top10Repositories.length === 0"><h4 class="text-muted">// 'no_top_repositories' | tr //</h4></td>
|
|
</tr>
|
|
<tr ng-if="vm.top10Repositories.length > 0" ng-repeat="t in vm.top10Repositories">
|
|
<td width="60%">//t.name//</td><td width="15%">//t.count//</td><td width="25%">//t.creator === '' ? '-' : t.creator //</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|