14 lines
397 B
HTML
14 lines
397 B
HTML
<h2>Cost Centres <a href="/CostCentre" class="btn btn-success pull-right">Add <i class="glyphicon glyphicon-plus"></i></a></h2>
|
|
<table class="table table-condensed table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="item in info">
|
|
<td><a href="{{item.Url}}">{{item.Name}}</a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|