I need to add our Paypal transaction ID number to our admin receipt (admin.itpl.php) so our staffers can easily match orders to Paypal payments. I just spent 90 minutes on the Ubercart site searching for a list of available tokens and can't find anything.
I'm pretty sure I just need to add another line to this area of the admin template:
<?php
echo t('Order number:');
?>[order-admin-link]
<?php
echo t('Customer:');
?>[order-first-name] [order-last-name] - [order-email]
<?php
echo t('Order total:');
?>[order-total]
<?php
echo t('Shipping method:');
?>[order-shipping-method]
The transaction ID is visible in the Ubercart Payments page (in the Comment column), so I should be able to use it in the receipt, right?
What do I need to add, and where can I find a list of available tokens for the next time I need to add info to the template?
