Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% trans_default_domain "TextReport" %}
- <div class="page add-block-controls" id="text-rpt">
- <div class="container-fluid">
- <div data-editable>
- <h1>Text Report</h1>
- </div>
- <div class="row">
- <div data-editable>
- <h3>{{ 'TextReport.maintable.title'|trans }}</h3>
- </div>
- <div data-editable>
- <table class="table table-striped table-fixed-layout">
- <col width="65">
- <col width="35">
- <thead>
- <tr>
- <th>{{ 'TextReport.table2.col.url'|trans }}</th>
- <th>{{ 'TextReport.table2.col.keywords'|trans }}</th>
- </tr>
- </thead>
- <tbody>
- {% for page in tables.main %}
- <tr>
- <td>{{ page.url|cut_url_shceme }}</td>
- <td>
- <ul class="unspace">
- {% for word, count in page.blocks.body.density.oneWords.words|slice(0, 5) %}
- <li>
- <p><b>{{ word }}</b>, {{ 'TextReport.table2.body.count'|trans }} {{ count }} ({{ ((count / page.blocks.body.density.oneWords.total) * 100)|space_number_format }}%)</p>
- </li>
- {% endfor %}
- </ul>
- </td>
- </tr>
- {% endfor %}
- {% if tables.main|length == 0 %}
- <tr>
- <td colspan="2" class="text-center">{{ "Private.table.control.emptyTable"|trans({}, "Private") }}</td>
- </tr>
- {% endif %}
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment