Sha256: 8edcda1588f4ccdcf42de3a348ded1f5a5818320316b9a7de63474b146b38ebf

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Time Pilot Web</title>
  <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
  <style type="text/css">
    h1 {
      text-align: center;
    }
    body {
      font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: 300;
    }
    .centered {
      margin-left: auto;
      margin-right: auto;
    }
  </style>
</head>
<body>
<div class="pure-g-r">
  <div class="pure-u-1-1">
    <h1>Time Pilot Web</h1>
    <table class="pure-table pure-table-horizontal pure-table-striped centered">
      <thead>
        <tr>
          <th>Feature</th><th>Group</th><th>Count</th>
        </tr>
      </thead>
      <tbody>
<% @total_count.each do |feature, groups| %>
  <% groups.each do |group, count| %>
        <tr>
          <td><%= feature %></td>
          <td><%= group %></td>
          <td><%= count %></td>
        </tr>
  <% end %>
<% end %>
      </tbody>
    </table>
  </div>
</div>
</body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
time_pilot-0.1.0 web/index.html.erb