blob: 8c3934df3f06af1b14b35ca2f9fe5b28759e89d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
from mod_python import Session
from fonctions import redirectionSiNonConnecte, lien, codeHTML
def index(req):
req.content_type="text/html"
sess = Session.Session(req)
redirectionSiNonConnecte(req,sess)
req.write(codeHTML("Liste des contacts","""
<p><b>Liste des contacts</b></p>
<b>Rechercher un nom :</b>
<input type="text" id="nom" onkeyup="cherche()"/><br/>
<div id="liste"></div>
""" + lien("menu.py","Retour au menu") +"""
<script src="liste.js"></script>
"""))
|