Sha256: 36aa0cf9a8141f685ed1eb79dc72febef5f1d37aae8ce0a13158e88b1218b46a
Contents?: true
Size: 1.12 KB
Versions: 2
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="<%= root_path %>stylesheets/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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
time_pilot-1.0.0 | web/views/index.html.erb |
time_pilot-0.1.1 | web/views/index.html.erb |