2016-07-07 18:03:32 +02:00
|
|
|
<!--
|
|
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2016-06-21 08:53:00 +02:00
|
|
|
<h4 class="page-header title-color underlined">// 'popular_repositories' | tr //</h4>
|
2016-06-28 14:35:52 +02:00
|
|
|
<div class="col-xs-4 col-md-12 up-table-pane">
|
2016-06-29 08:18:36 +02:00
|
|
|
<div class="table-head-container">
|
2016-06-28 14:35:52 +02:00
|
|
|
<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>
|
2016-06-29 08:18:36 +02:00
|
|
|
<div class="table-body-container" ng-style="vm.customBodyHeight">
|
2016-06-28 14:35:52 +02:00
|
|
|
<table class="table table-pane">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2016-07-06 10:39:40 +02:00
|
|
|
<td colspan="5" height="120px" class="empty-hint" ng-if="vm.top10Repositories.length === 0"><h4 class="text-muted">// 'no_top_repositories' | tr //</h4></td>
|
2016-06-28 14:35:52 +02:00
|
|
|
</tr>
|
|
|
|
<tr ng-if="vm.top10Repositories.length > 0" ng-repeat="t in vm.top10Repositories">
|
2016-07-06 10:39:40 +02:00
|
|
|
<td width="60%">//t.name//</td><td width="15%">//t.count//</td><td width="25%">//t.creator === '' ? '-' : t.creator //</td>
|
2016-06-28 14:35:52 +02:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2016-06-28 14:06:20 +02:00
|
|
|
</div>
|
|
|
|
</div>
|