templates/groups/index.html.ep
changeset 108 e4e5cfaf5814
parent 107 6f411821b12b
child 109 3b95550f4189
--- a/templates/groups/index.html.ep	Sat Feb 20 18:36:00 2016 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-% title 'Top crashs';
-% layout 'main';
-%= t table => (class => 'table table-striped table-hover table-bordered table-condensed') => begin
-<thead>
-  <tr>
-    <th>Title</th>
-    <th>Count</th>
-    <th>First version seen</th>
-    <th>Last version seen</th>
-    <th>Products</th>
-    % foreach my $extra_col(@$extra_columns) {
-    %= t th => $extra_col->{name}
-    % }
-  </tr>
-</thead>
-% foreach my $crash(@$crashs) {
-  %= t tr => begin
-    %= t td => begin
-      %= link_to $crash->{title} => url_for('group', uuid => $crash->{uuid})
-    % end
-    %= t td => $crash->{crash_count}
-    %= t td => $crash->{first_version}
-    %= t td => $crash->{last_version}
-    %= t td => $crash->{product_names}
-    % foreach my $extra_col(@$extra_columns) {
-    %= t td => $crash->{$extra_col->{id}}
-    % }
-  % end
-% }
-% end
-
-% if($pager->first_page != $pager->last_page) {
-  %= bootstrap_pagination($pager->current_page, $pager->last_page);
-% }