<section class="sales-crowd-promo email-marketing white-text text-promo-center no-nav">
    <h4 class="use-headline no-mobile">Headline stats</h4>
</section>
<div class="container">
    <section class="one-column headline-extra">
        <div class="content">
            <div class="flex-boxes">
                <div class="flex-box f1">
                    <h3 class="headline-panel">Types</h3>
                    {{#each types}}
                        {{capitalizeFirst _id}} = {{requests}}
                        <br/>
                    {{/each}}
                </div>
                <div class="flex-box f2">
                    <h3 class="headline-panel">Avg. Score</h3>
                    {{#each avgScore}}
                        {{average}}
                        <br/>
                    {{/each}}
                </div>
                <div class="flex-box f3">
                    <h3 class="headline-panel">Avg. Word count</h3>
                    {{#each avgWordCount}}
                        {{average}}
                        <br/>
                    {{/each}}
                </div>
                <div class="flex-box f3">
                    <h3 class="headline-panel">Avg. Char count</h3>
                    {{#each avgCharCount}}
                        {{average}}
                        <br/>
                    {{/each}}
                </div>
            </div>

            <table>
                <tr>
                    <th>Score</th>
                    <th>Type</th>
                    <th>Char Count</th>
                    <th>Word Count</th>
                    <th>Date</th>
                    <th>IP</th>
                </tr>
                <tbody>
                    {{#each stats}}
                        <tr>
                            <td colspan="6"><b>{{hl}}</b></td>
                        </tr>
                        <tr>
                            <td>{{sc}}</td>
                            <td>{{capitalizeFirst ty}}</td>
                            <td>{{cc}}</td>
                            <td>{{wc}}</td>
                            <td>{{timeago dt}}</td>
                            <td>{{ip}}{{#isnt iso '--'}} ({{iso}}){{/isnt}}</td>
                        </tr>
                    {{/each}}
                </tbody>
            </table>
        </div>
    </section>
</div>

