As a followup to this thread, I wanted to have an internal color coding when I look at an order without having to scroll down....
In skin/common_files/main/order_info.tpl right below the file info around line 5
Code:
{if $order.status eq "P"} <table><tr><TD bgcolor="#CCFFFF"><strong><B>PROCESSED</B></strong></TD><tr></table><P>{/if}
{if $order.status eq "C"} <table><tr><TD bgcolor="#CCCCCC"><strong><B>COMPLETED</B></strong></TD><tr></table><P> {/if}
{if $order.status eq "F"} <table><tr><TD bgcolor="#FFBBCC"><strong><B>FAILED</B></strong></TD><tr></table><P> {/if}
Quick, dirty, but gets the job done.