templates/group/show.html.ep
changeset 88 c82f5589db11
child 105 d7258a3a926c
equal deleted inserted replaced
87:03caeafba2ff 88:c82f5589db11
       
     1 % title "Crash for \"$group->{title}\"";
       
     2 % layout 'main';
       
     3 <h2>Crashs for <%= $group->{title} %></h2>
       
     4 
       
     5 %= t div => (class => 'tabbable') => begin
       
     6   %= t ul => (class => 'nav nav-tabs', id => 'report-tabs') => begin
       
     7     %= t li => (class => 'active') => begin
       
     8       %= t a => (href => '#stats', 'data-toggle' => 'tab') => 'Statistics'
       
     9     % end
       
    10     %= t li => begin
       
    11       %= t a => (href => '#reports', 'data-toggle' => 'tab') => 'Reports'
       
    12     % end
       
    13   % end
       
    14 
       
    15   %= t div => (class => 'tab-content') => begin
       
    16     %= t div => (class => 'tab-pane active', id => 'stats') => begin
       
    17       %= include('group/_stats', stats_by_product_and_version => $stats_by_product_and_version);
       
    18     % end
       
    19     %= t div => (class => 'tab-pane', id => 'reports') => begin
       
    20       %= include('reports/_list', crashs => $crashs, extra_columns => $extra_columns, pager => $pager);
       
    21     % end
       
    22   % end
       
    23 % end