aboutsummaryrefslogtreecommitdiff
path: root/source/templates/statistics.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-11-25 19:23:50 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-11-25 19:23:50 +0100
commit16f5be7f1446d3906343c6bf4ebe44fd3c3395b0 (patch)
tree30f0348152a94d10b3c081b7de9000f0d59b69d0 /source/templates/statistics.html
parentTemplate for the /notifications page. (diff)
downloadnewspipe-16f5be7f1446d3906343c6bf4ebe44fd3c3395b0.tar.gz
newspipe-16f5be7f1446d3906343c6bf4ebe44fd3c3395b0.tar.bz2
newspipe-16f5be7f1446d3906343c6bf4ebe44fd3c3395b0.zip
Template for the /statistics page.
Diffstat (limited to 'source/templates/statistics.html')
-rw-r--r--source/templates/statistics.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/templates/statistics.html b/source/templates/statistics.html
new file mode 100644
index 00000000..42577efd
--- /dev/null
+++ b/source/templates/statistics.html
@@ -0,0 +1,17 @@
+## statistics.html
+<%inherit file="base.html"/>
+<h1><div class="right innerlogo"><a href="/"><img src="/img/tuxrss.png" title="What's new today?"/></a>
+</div><a name="top"><a href="/">pyAggr3g470r - News aggregator</a></a></h1>
+<a href="http://bitbucket.org/cedricbonhomme/pyaggr3g470r/" rel="noreferrer" target="_blank">pyAggr3g470r (source code)</a>
+<div class="left inner">
+ %if articles:
+ <h1>Statistics</h1>
+ <h3>Tag cloud</h3>
+ <form method=get action="/statistics/">
+ Minimum size of a word:
+ <input type="number" name="word_size" value="${word_size}" min="2" max="15" step="1" size="2">
+ </form>
+ <div style="width: 35%; overflow:hidden; text-align: justify">
+ ${tag_cloud}
+ </div>
+ %endif \ No newline at end of file
bgstack15