| OLD | NEW |
| (Empty) |
| 1 <!-- | |
| 2 - This file is part of the Adblock Plus web scripts, | |
| 3 - Copyright (C) 2006-present eyeo GmbH | |
| 4 - | |
| 5 - Adblock Plus is free software: you can redistribute it and/or modify | |
| 6 - it under the terms of the GNU General Public License version 3 as | |
| 7 - published by the Free Software Foundation. | |
| 8 - | |
| 9 - Adblock Plus is distributed in the hope that it will be useful, | |
| 10 - but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 12 - GNU General Public License for more details. | |
| 13 - | |
| 14 - You should have received a copy of the GNU General Public License | |
| 15 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
| 16 --> | |
| 17 | |
| 18 | |
| 19 <!DOCTYPE html> | |
| 20 <html lang="en"> | |
| 21 <head> | |
| 22 <meta name="robots" content="noindex,nofollow" /> | |
| 23 <meta charset="utf-8"> | |
| 24 <link rel="stylesheet" type="text/css" href="../static/stats.css" /> | |
| 25 <title>Download statistics for {{url}} ({{month|monthname}})</title> | |
| 26 </head> | |
| 27 | |
| 28 <body style="margin-top: 0px"> | |
| 29 <a name="top"> </a> | |
| 30 <table class="block" width="100%"> | |
| 31 <tr> | |
| 32 <td class="title" width="250">Download statistics for:</td> | |
| 33 | |
| 34 <td>{{url}}</td> | |
| 35 </tr> | |
| 36 <tr> | |
| 37 <td class="title" width="250">Last update:</td> | |
| 38 <td>{{now|formattime}}</td> | |
| 39 </tr> | |
| 40 <tr> | |
| 41 <td class="title" width="250">Reported period:</td> | |
| 42 <td>Month {{month|monthname}}</td> | |
| 43 </tr> | |
| 44 </table> | |
| 45 <div class="block_title">File</div> | |
| 46 <div class="block"> | |
| 47 <table align="center"> | |
| 48 <tr> | |
| 49 <th bgcolor="#ECECEC">File</th> | |
| 50 <th bgcolor="#66DDEE">Hits</th> | |
| 51 <th bgcolor="#2EA495">Bandwidth</th> | |
| 52 <th> </th> | |
| 53 </tr> | |
| 54 {%- set data = data|sortfield("hits") %} | |
| 55 {%- set maxhits = data|maxhits %} | |
| 56 {%- set maxbandwidth = data|maxbandwidth %} | |
| 57 {%- for name, value in data %} | |
| 58 <tr> | |
| 59 <td><a href="{{value.url}}">{{name}}</a></td> | |
| 60 <td align="right">{{value.hits}}</td> | |
| 61 <td align="right">{{value.bandwidth|bytes}}</td> | |
| 62 <td class="chart"> | |
| 63 <div class="hitsChart" style="width: {{value.hits|percentage(maxhits)|
round(method='ceil')|int}}px;"></div><br /> | |
| 64 <div class="bandwidthChart" style="width: {{value.bandwidth|percentage
(maxbandwidth)|round(method='ceil')|int}}px;"></div> | |
| 65 </td> | |
| 66 </tr> | |
| 67 {%- endfor %} | |
| 68 </table> | |
| 69 </div> | |
| 70 </body> | |
| 71 </html> | |
| OLD | NEW |