aboutsummaryrefslogtreecommitdiff
path: root/www/html/filtrage.py
blob: 1c294b263ca9edb261cc9f7b3dd35b4b843e5208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python3
# -*- coding: utf-8 -*-

import mod_python
from fonctions import baseHTML, connexionBD, lien

def index(req):
    req.content_type="text/html"
    content=str()

#write the html page
    req.write(baseHTML("ATS-Project","""
<center><h1>Filtrage</h1></center>
<b>Filtre</b>
<input type="text" id="condition" onkeyup="cherche()">
<div id="tab">
</div>
<script src="filtre.js"></script>
"""))