Sha256: 3bc32be03fd507ed5c8bbe21606a795d613958b2ccfd78a7246185a18db58a39

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

<ul class="boxen">
    <li>
      <span class="num"><%= @count %></span>
      urls
    </li>

    <li>
      <span class="num"><%= @hits %></span>
      hits
    </li>

    <li>
      <span class="num"><%= @misses %></span>
      misses
    </li>
</ul>

<% if @hits + @misses > 0 %>
<h2>Recent Hits</h2>

<table cellspacing="0">
  <thead>
    <tr>
      <th>Last Hit</th>
      <th>URL</th>
      <th>Shortened</th>
    </tr>
  </thead>

  <tbody>
    <% @bytimes.each do |short, data| %>
    <tr>
      <td><%= data[:score] %></td>
      <td><a href="<%= data[:long] %>"><%= data[:long] %></a></td>
      <td><a href="<%= shorturl(short) %>"><%= shorturl(short) %></a></td>
    </tr>
    <% end %>
  </tbody>
</table>

<h2>Most Hits</h2>

<table cellspacing="0">
  <thead>
    <tr>
      <th>Hits</th>
      <th>URL</th>
      <th>Shortened</th>
    </tr>
  </thead>

  <tbody>
    <% @byhits.each do |short, data| %>
    <tr>
      <td><%= data[:score] %></td>
      <td><a href="<%= data[:long] %>"><%= data[:long] %></a></td>
      <td><a href="<%= shorturl(short) %>"><%= shorturl(short) %></a></td>
    </tr>
    <% end %>
  </tbody>
</table>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
oso-1.0.0 lib/oso/views/stats.rhtml