Sha256: d50e52908171f502519c872b34c54fa57bd01a1f220f2c3f3b307b8871b81113

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

<% title("#{@page_title} | ") %>
<%= render partial: 'datatables' %>
<div class="row">
    <%= render partial: 'menu' %>
    <div class="medium-8 columns">
        <%= render partial: 'date_range' %>
        <h2>General Statistics</h2>
        <table>
            <tr>
                <td>Total Searches</td>
                <td><%= number_with_delimiter(@searches_count) %></td>
            </tr>
            <tr>
                <td>Total Clicks</td>
                <td><%= number_with_delimiter(@clicks_count) %></td>
            </tr>
            <tr>
                <td>Searches per Day</td>
                <td><%= number_with_delimiter(@searches_count / @days_in_sample) %></td>
            </tr>
            <tr>
                <td>Clicks per Day</td>
                <td><%= number_with_delimiter(@clicks_count / @days_in_sample) %></td>
            </tr>
            <tr>
                <td>Click/Search</td>
                <td><%= number_to_percentage(@click_serve_ratio, precision: 2) %></td>
            </tr>
        </table>
    </div>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

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