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

Side by Side Diff: sitescripts/filterhits/static/query.html

Issue 4615801646612480: Issue 395 - Filter hits statistics backend (Closed)
Patch Set: Addressed Sebastian's and Wladimir's comments. Created March 27, 2015, 3:08 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Filterhits statistics query</title>
5 <link rel="stylesheet" href="datatables/jquery.dataTables.min.css" />
6 </head>
7 <body>
8 <table>
9 <tr>
10 <td><label for="filter">Filter: </label></td>
11 <td><input type="text" id="filter" name="filter" /></td>
12 </tr>
13 <tr>
14 <td><label for="domain">Domain: </label></td>
15 <td><input type="text" id="domain" name="domain" /></td>
16 </tr>
17 </table>
18 <table id="results" cellspacing="0" width="100%">
19 <thead>
20 <tr>
21 <th>Filter</th>
22 <th>Domain</th>
23 <th>Hits</th>
Wladimir Palant 2015/03/27 16:29:06 Given that these aren't actual hits - name it Freq
kzar 2015/03/27 22:15:00 Done.
24 </tr>
25 </thead>
26 </table>
27 <script type="text/javascript" src="datatables/jquery.js"></script>
28 <script type="text/javascript" src="datatables/jquery.dataTables.min.js"></s cript>
29 <script type="text/javascript" src="query.js"></script>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld