Sha256: fea56c1959cd2cb1f12c75cd5f9f9529940a37aa3be82c481f52899a95c1bfed

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 KB

Contents

<% title("#{@page_title} | ") %>
<%= render partial: 'datatables' %>
<div class="row">
    <%= render partial: "menu" %>
    <div class="medium-9 columns">
        <%= render partial: 'date_range' %>
        <table class='datatable'>
            <thead>
                <tr>
                    <th>Rank</th>
                    <th>Query</th>
                    <th>Serve Count</th>
                    <th>Click Count</th>
                    <th>Click/Serve %</th>
                </tr>
            </thead>
            <tbody>
                <% count = 0 %>
                <% @top_spot_detail.each do |key, action| %>
                <% count += 1 %>
                <tr>
                    <td><%= count %></td>
                    <td><%= key %></td>
                    <td><%= action[0] %></td>
                    <td><%= action[1] %></td>
                    <td><%= number_to_percentage(action[2], precision: 2) %></td>
                </tr>
                <% end %> 
            </tbody>
        </table>
    </div>
</div>
<!-- FIXME: Should this be used to report Module Click details as well? -->
<!-- Remove reference to Best Bet here. Make more generic. -->

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
quick_search-core-0.1.1 app/views/quick_search/appstats/top_spot_detail.html.erb
quick_search-core-0.1.0 app/views/quick_search/appstats/top_spot_detail.html.erb
quick_search-core-0.0.1 app/views/quick_search/appstats/top_spot_detail.html.erb
quick_search-core-0.0.1.test app/views/quick_search/appstats/top_spot_detail.html.erb