templates/group/show.html.ep
changeset 108 e4e5cfaf5814
parent 107 6f411821b12b
child 109 3b95550f4189
--- a/templates/group/show.html.ep	Sat Feb 20 18:36:00 2016 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-% 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 => '#reports', 'data-toggle' => 'tab') => 'Reports'
-    % end
-    %= t li => begin
-      %= t a => (href => '#stats', 'data-toggle' => 'tab') => 'Statistics'
-    % end
-  % end
-
-  %= t div => (class => 'tab-content') => begin
-    %= t div => (class => 'tab-pane active', id => 'reports') => begin
-      %= include('reports/_list', crashs => $crashs, extra_columns => $extra_columns, pager => $pager);
-    % end
-    %= t div => (class => 'tab-pane', id => 'stats') => begin
-      %= include('group/_stats', stats_by_product_and_version => $stats_by_product_and_version);
-    % end
-  % end
-% end