Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/filterhits/static/query.html

Issue 4615801646612480: Issue 395 - Filter hits statistics backend (Closed)
Patch Set: Addressed further comments from Sebastian. Created April 2, 2015, 10:13 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/filterhits/static/datatables/sort_desc.png ('k') | sitescripts/filterhits/static/query.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « sitescripts/filterhits/static/datatables/sort_desc.png ('k') | sitescripts/filterhits/static/query.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld