htdocs/assets/templates/searches/statisticsmodal.html

Summary

Maintainability
Test Coverage
<div class="table-responsive">
  <div class="chart"></div>
  <table class="table table-condensed table-striped table-bordered">
    <thead>
      <tr>
        <th>Name</th>
        <th>Value</th>
      </tr>
    </thead>
    <tbody>
    {{#each stats}}
    <tr>
      <th>{{ @key }}</th>
      <td class="text-right">{{ this }}</td>
    </tr>
    {{/each}}
    </tbody>
  </table>
</div>