aboutsummaryrefslogtreecommitdiff
path: root/www/html/index.py
diff options
context:
space:
mode:
authorclyhtsuriva <clyhtsuriva@gmail.com>2020-04-20 11:02:13 +0200
committerclyhtsuriva <clyhtsuriva@gmail.com>2020-04-20 11:02:13 +0200
commitdd99c15dfbb35652db57331c2db6b07088da2f3f (patch)
tree7a0771ff9c43ff4763ca0b53d5acde45265a29f8 /www/html/index.py
parent97d8513e6cba028be16623aab30076b285cca805 (diff)
ajout filtrage AJAX
Diffstat (limited to 'www/html/index.py')
-rwxr-xr-xwww/html/index.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/www/html/index.py b/www/html/index.py
index f670a37..7e45dca 100755
--- a/www/html/index.py
+++ b/www/html/index.py
@@ -32,10 +32,15 @@ def index(req):
#write the html page
req.write(baseHTML("ATS-Project","""
<center><h1>ATS-Project</h1></center>
+<b>Filtrage</b>
+<input type="text" id="condition" onkeyup="cherche()">
+<div id="tab">
<center><table>
<tr><th>Heure</th><th>Protocole</th><th>IP Source</th><th>IP Destination</th><th>Port Source</th><th>Port Destination</th></tr>
"""
+ content +
"""
</table></center>
+</div>
+<script src="filtre.js"></script>
"""))