angular-breadcrumbs
Version:
AngularJS Breadcrumbs for ngRoute
27 lines • 820 B
HTML
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{ stock.symbol }} Details</h3>
</div>
<div class="panel-body">
<p ng-bind="summary"></p>
<br>
<p><strong>Price:</strong> {{ stock.price }}</p>
<p><strong>Revenue:</strong> {{ stock.revenue }}</p>
</div>
<table class="table">
<tr>
<th>Investor</th>
<th>Shares</th>
</tr>
<tr ng-repeat="position in investorService.getPositionsByStock(stock.symbol)">
<td>
<a ng-href="#/investor/{{ position.investor }}"
ng-bind="investorService.investors[position.investor].name"></a>
</td>
<td>
<a ng-href="#/investor/{{ position.investor }}/position/{{ position.id }}"
ng-bind="position.shares"></a>
</td>
</tr>
</table>
</div>