Sha256: 2c0577b3d18d5559075897533f83e14cbc76c583a1c3f5b58ab8bae14e75313d
Contents?: true
Size: 1.17 KB
Versions: 15
Compression:
Stored size: 1.17 KB
Contents
<div class="card"> <div class="card-header"> <h4><%= t('.monthly_subtitle') %> <%= Time.zone.today.strftime("%B %Y") %></h4> </div> <div class="card-body"> <table class="table table-striped"> <thead> <tr> <th> </th> <% @month_names.each do |name| %> <th><%= name %></th> <% end %> </tr> </thead> <tbody> <% if @pageviews %> <tr> <td><b><%= t('.collection_views') %></b></td> <% @month_names.each do |name| %> <td><%= @pageviews.month(name.to_date) %></td> <% end %> </tr> <% end %> <% if @work_page_views %> <tr> <td><b><%= t('.work_views') %></b></td> <% @month_names.each do |name| %> <td><%= @work_page_views.month(name.to_date) %></td> <% end %> </tr> <% end %> <% if @downloads %> <tr> <td><b><%= t('.work_downloads') %></b></td> <% @month_names.each do |name| %> <td><%= @downloads.month(name.to_date) %></td> <% end %> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
15 entries across 15 versions & 1 rubygems