templates/group/show.html.ep
author Vincent Tondellier <tonton+hg@team1664.org>
Sun, 14 Feb 2016 20:15:25 +0100
changeset 94 c5fcb00c7261
parent 88 c82f5589db11
child 105 d7258a3a926c
permissions -rw-r--r--
Use LEFT JOIN to use PostgreSQL join removal when possible

% title "Crash for \"$group->{title}\"";
% layout 'main';
<h2>Crashs for <%= $group->{title} %></h2>

%= t div => (class => 'tabbable') => begin
  %= t ul => (class => 'nav nav-tabs', id => 'report-tabs') => begin
    %= t li => (class => 'active') => begin
      %= t a => (href => '#stats', 'data-toggle' => 'tab') => 'Statistics'
    % end
    %= t li => begin
      %= t a => (href => '#reports', 'data-toggle' => 'tab') => 'Reports'
    % end
  % end

  %= t div => (class => 'tab-content') => begin
    %= t div => (class => 'tab-pane active', id => 'stats') => begin
      %= include('group/_stats', stats_by_product_and_version => $stats_by_product_and_version);
    % end
    %= t div => (class => 'tab-pane', id => 'reports') => begin
      %= include('reports/_list', crashs => $crashs, extra_columns => $extra_columns, pager => $pager);
    % end
  % end
% end