Some fixes in viewPurchaseHistory operation

This commit is contained in:
Doug Bell 2006-11-22 06:38:25 +00:00
parent 96b6559250
commit 3ca4bf725a
3 changed files with 36 additions and 4 deletions

View file

@ -11,6 +11,8 @@
check for privileges.
- fix: RSS From Parent having no icon
- fix: HttpProxy now handles styles appropriately.
- fix: op=viewPurchaseHistory prices are now formatted correctly
- fix: A minor bug in the default viewPurchaseHistory template
7.2.1
- Made a change to version tag commits to deal with unusually long commit

View file

@ -0,0 +1,19 @@
#PBtmpl0000000000000019
<table border="0">
<tmpl_loop purchaseHistoryLoop>
<tr>
<td><b><tmpl_var initDate></b></td>
<td><b><tmpl_var completionDate></b></td>
<td align="right"><b>$ <tmpl_var amount></b></td>
<td><b><tmpl_var status></b></td>
<td><tmpl_if canCancel><a href="<tmpl_var cancelUrl>">Cancel</a></tmpl_if></td>
</tr>
<tmpl_loop itemLoop>
<tr>
<td align="right"><tmpl_var quantity> x </td>
<td align="left"><tmpl_var itemName></td>
<td align="right"><tmpl_var amount></td>
</tr>
</tmpl_loop>
</tmpl_loop>
</table>