Skip to content
Permalink
84518cdbb1
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
16 lines (12 sloc) 839 Bytes

<div ng-controller='userController'>
<table>
<tr><td><h4>Invoice ID</h4> </td><td>{{catcats.invoiceId}}</td> </tr>
<tr><td><h4>Invoice Address :</h4> </td><td>{{catcats.address}} {{catcats.city}} {{catcats.state}}</td> </tr>
<tr ng-show="catcats.payment.token"><td><h4>Apple token </h4> </td><td>{{catcats.paymment.token}}</td> </tr>
<tr ng-show="catcats.payment.email"><td><h4>Email Address </h4> </td><td>{{catcats.payment.email}}</td> </tr>
<tr ng-show="catcats.payment.cardnum"><td><h4>Card number </h4> </td><td>{{catcats.payment.cardnum}}</td> </tr>
<tr ng-show="catcats.payment.expr_date"><td><h4>Expiration Date </h4> </td><td>{{catcats.payment.expr_date}}</td> </tr>
<tr><td><h4>Invoice Total</h4> </td><td>{{catcats.total}}</td> </tr>
</table>
</div>