templates/groups/index.html.ep
changeset 100 4dae01f2beee
parent 88 c82f5589db11
equal deleted inserted replaced
99:0e40a68ba421 100:4dae01f2beee
     6     <th>Title</th>
     6     <th>Title</th>
     7     <th>Count</th>
     7     <th>Count</th>
     8     <th>First version seen</th>
     8     <th>First version seen</th>
     9     <th>Last version seen</th>
     9     <th>Last version seen</th>
    10     <th>Products</th>
    10     <th>Products</th>
       
    11     % foreach my $extra_col(@$extra_columns) {
       
    12     %= t th => $extra_col->{name}
       
    13     % }
    11   </tr>
    14   </tr>
    12 </thead>
    15 </thead>
    13 % foreach my $crash(@$crashs) {
    16 % foreach my $crash(@$crashs) {
    14   %= t tr => begin
    17   %= t tr => begin
    15     %= t td => begin
    18     %= t td => begin
    17     % end
    20     % end
    18     %= t td => $crash->{crash_count}
    21     %= t td => $crash->{crash_count}
    19     %= t td => $crash->{first_version}
    22     %= t td => $crash->{first_version}
    20     %= t td => $crash->{last_version}
    23     %= t td => $crash->{last_version}
    21     %= t td => $crash->{product_names}
    24     %= t td => $crash->{product_names}
       
    25     % foreach my $extra_col(@$extra_columns) {
       
    26     %= t td => $crash->{$extra_col->{id}}
       
    27     % }
    22   % end
    28   % end
    23 % }
    29 % }
    24 % end
    30 % end
    25 
    31 
    26 % if($pager->first_page != $pager->last_page) {
    32 % if($pager->first_page != $pager->last_page) {