Sha256: 513e8e03962e5449d3c71dbd79f656556b053f1697865ccf689984467a45d8c5
Contents?: true
Size: 925 Bytes
Versions: 15
Compression:
Stored size: 925 Bytes
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('.page_views') %></b></td> <% @month_names.each do |name| %> <td><%= @pageviews.month(name.to_date) %></td> <% end %> </tr> <% end %> <% if @downloads %> <tr> <td><b><%= t('.file_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