Sha256: 55484a9230315d3bbfcdb073589cfad570162fe5b6f1c63812b525be68c2b721
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 KB
Contents
<!DOCTYPE html> <html lang="en"> <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 > 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.2 | web/views/index.html.erb |
time_pilot-1.0.1 | web/views/index.html.erb |