Revision
116812
Author
cal@macports.org
Date
2014-02-07 13:38:38 -0800 (Fri, 07 Feb 2014)

Log Message

macports stats: remove table of data that's not being gathered in the controller

Modified Paths

Diff

Modified: branches/gsoc11-statistics/stats-server/app/views/os_statistics/index.html.erb (116811 => 116812)


--- branches/gsoc11-statistics/stats-server/app/views/os_statistics/index.html.erb	2014-02-07 21:27:35 UTC (rev 116811)
+++ branches/gsoc11-statistics/stats-server/app/views/os_statistics/index.html.erb	2014-02-07 21:38:38 UTC (rev 116812)
@@ -36,42 +36,3 @@
 
 <%# Draw charts %>
 <%= render :partial => '/partials/chart_draw', :locals => {:charts => ordered_charts} %>
-
-<br />
-
-<h1>All Stats</h1>
-
-<table border=1>
-	<tr>
-		<th> ID </th>
-		<th> user_id </th>
-		<th> MacPorts Version</th>
-		<th> OSX Version</th>
-		<th> OS Arch </th>
-		<th> Platform </th>
-		<th> Build Arch</th>
-		<th> gcc Version</th>
-		<th> XCode Version</th>
-		<th> Details </th>
-	</tr>
-
-<% @stats.each do |row| %>
-  <tr>
-    <td> <%= row.id %> </td>
-		<td> <%= row.user_id %> </td>
-		<td> <%= row.macports_version %> </td>
-		<td> <%= row.osx_version %></td>
-		<td> <%= row.os_arch %> </td>
-		<td> <%= row.os_platform %></td>
-		<td> <%= row.build_arch %></td>
-		<td> <%= row.gcc_version %></td>
-		<td> <%= row.xcode_version %></td>
-    <td> <%= link_to 'Show', row %></td>
-  </tr>
-<% end %>
-</table>
-
-
-
-
-