Skip to content
Permalink
621bd8b08f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
15 lines (15 sloc) 528 Bytes
<div ng-controller="adminController" data-ng-init="initPortal()">
<div class="text-center">
<div class='jumbotron text-center'>
<h2>Welcome {{name}}</h2>
<br><br>
</div>
</div>
<table>
<tr><th><center><h2>Current Orders</h2><br />Click an order to see details</center></th></tr>
<td><center>Invoice Number</center></td>
<tr ng-repeat="x in currInvoices">
<td> <center><text ng-click="openOrder(x)"><b>{{x.invoiceId}}</b></text></center> </td>
</tr>
</table>
</div>