Show
Ignore:
Timestamp:
01/31/08 01:53:58 (10 months ago)
Author:
earle
Message:

Put time on the horizontal axis at perigrin's request.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • status/templates/tests.tt

    r1150 r1151  
    2222        <tr> 
    2323                <td></td> 
    24 [% FOREACH test_name IN data.test_names %] 
    25                 <th>[% test_name.replace('_', ' ') %]</th> 
     24[% FOREACH test_date IN data.test_dates %] 
     25                <th>[% test_date %]</th> 
    2626[%- END %] 
    2727        </tr> 
    28 [% FOREACH test_date IN data.results.keys %] 
    29 [% day_results = data.results.$test_date %] 
     28[% FOREACH test_name IN data.results.keys.sort %] 
     29[% test_results = data.results.$test_name %] 
    3030        <tr> 
    31                 <td>[% test_date %]</td> 
    32         [% FOREACH datum IN day_results.keys.sort %] 
    33                 <td>[% day_results.$datum %]%</td> 
     31                <td>[% test_name.replace('_', ' ') %]</td> 
     32        [% FOREACH datum IN test_results.keys.sort %] 
     33                <td>[% test_results.$datum %]%</td> 
    3434        [% END %] 
    3535        </tr>