Could you suggest how to make a picture appear in the row of the <td>Приз</td> table. If you simply insert a link to a picture, then it is displayed later on each line, and only 1-2-3 lines are required.
var CupApp = angular.module('CupApp', []); CupApp.controller('CupCtrl', function($scope, $http) { $scope.cups = [{ "user": "Менеджер", "Total": 1715, "B_1011": 0, "B_1012": 0, "B_1013": 0, "B_1014": 0, "B_1015": 60, "B_1016": 0, "B_2021": 0, "B_2022": 60, "B_3031": 0, "B_3032": 0, "B_3033": 0, "B_3034": 0, "B_3035": 0, "B_3036": 0, "B_3039": 1595 }]; }); <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script> <div ng-app="CupApp" ng-controller="CupCtrl"> <div id="container"> <div id="Html1"> <h2>Топ в компании</h2> <table class="table table-striped"> <tr> <th>Менеджер</th> <th>Балы</th> <th>Приз</th> </tr> <tr ng-repeat="cup in cups | orderBy: '-Total' "> <td ng-style="$index < 3 ? {'font-size' : '16pt'}: ''">{{ $index + 1}}</td> <td>{{cup.Total}}</td> <td>Приз</td> </tr> </table> </div> </div> </div>