Modify My Account Orders

I want to change the information that is displayed on the Orders section under “My Account”. By default it shows Order #, Status, Customer, Date and Total. I’m trying to change the customer to some kind of shipping information. Sincethe customer is the same as the user 99% of the time, this info isn’t helpful. If they could see the shipping address or a list of what was ordered, that would rock.



It looks like the template file I need to hack is customer/views/orders/search.tpl



Line 33 - 36


<br />
<ul><br />
  <li>{$o.firstname} {$o.lastname}</li><br />
  <li><a href="mailto:{$o.email}">{$o.email}</a></li><br />
</ul><br />

```<br />
<br />
I've tried looking for other variables to put after the $o. but didn't have any luck. Some of the info might be in the customer/views/details.tpl but I couldn't seem to transfer it over.<br />
<br />
Anybody have any suggestions?