Index: sitescripts/filterhits/static/query.html |
diff --git a/sitescripts/filterhits/static/query.html b/sitescripts/filterhits/static/query.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5e86ee70c0fb76ea8351433bd44b03a6a1dc5622 |
--- /dev/null |
+++ b/sitescripts/filterhits/static/query.html |
@@ -0,0 +1,31 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <title>Filterhits statistics query</title> |
+ <link rel="stylesheet" href="datatables/jquery.dataTables.min.css" /> |
+ </head> |
+ <body> |
+ <table> |
+ <tr> |
+ <td><label for="filter">Filter: </label></td> |
+ <td><input type="text" id="filter" name="filter" /></td> |
+ </tr> |
+ <tr> |
+ <td><label for="domain">Domain: </label></td> |
+ <td><input type="text" id="domain" name="domain" /></td> |
+ </tr> |
+ </table> |
+ <table id="results" cellspacing="0" width="100%"> |
+ <thead> |
+ <tr> |
+ <th>Filter</th> |
+ <th>Domain</th> |
+ <th>Frequency</th> |
+ </tr> |
+ </thead> |
+ </table> |
+ <script type="text/javascript" src="datatables/jquery.js"></script> |
+ <script type="text/javascript" src="datatables/jquery.dataTables.min.js"></script> |
+ <script type="text/javascript" src="query.js"></script> |
+ </body> |
+</html> |