Sha256: eca3110e66f845ca52d6dc909ed6c5a4be3d04cdac565dedf5ced4d802dadecd
Contents?: true
Size: 520 Bytes
Versions: 8
Compression:
Stored size: 520 Bytes
Contents
<h1>Individual Visitors by Monument</h1> <pre><code><%= File.read('db/views/individual_visitors_by_monuments_v01.sql') %></code></pre> <table> <thead> <tr> <th>Person</th> <th>Monument</th> <th>Country</th> <th>Visits</th> </tr> </thead> <tbody> <% @visitors.each do |visitor| %> <tr> <td><%= visitor.person %></td> <td><%= visitor.monument %></td> <td><%= visitor.country %></td> <td><%= visitor.visits %></td> </tr> <% end %> </tbody> </table>
Version data entries
8 entries across 8 versions & 1 rubygems