*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville 2002-12-31 03:51:00 +00:00
parent 6487f2459c
commit 37734a41b6
3 changed files with 25 additions and 22 deletions

View File

@ -121,22 +121,25 @@ if ($action == 'create') {
$htmls = new Form($db);
$adht = new AdherentType($db);
print "<tr><td>Type</td><td>";
print '<tr><td width="15%">Type</td><td width="35%">';
$htmls->select_array("type", $adht->liste_array());
print "</td></tr>";
print "</td>";
print '<td width="50%" valign="top">Commentaires :</td></tr>';
$morphys["phy"] = "Physique";
$morphys["mor"] = "Morale";
print "<tr><td>Personne</td><td>";
$htmls->select_array("morphy", $morphys);
print "</td></tr>";
print '<tr><td>Prénom</td><td><input type="text" name="prenom" size="40"></td>';
print "</td>";
print '<td rowspan="11" valign="top">Commentaires :<br>';
print "<textarea name=\"comment\" wrap=\"soft\" cols=\"40\" rows=\"15\"></textarea></td></tr>";
print '<td valign="top" rowspan="11"><textarea name="comment" wrap="soft" cols="40" rows="25"></textarea></td></tr>';
print '<tr><td>Prénom</td><td><input type="text" name="prenom" size="40"></td></tr>';
print '<tr><td>Nom</td><td><input type="text" name="nom" size="40"></td></tr>';

View File

@ -37,7 +37,7 @@ $var=True;
$sql = "SELECT count(*) as somme , t.libelle FROM llx_adherent as d, llx_adherent_type as t";
$sql .= " WHERE d.fk_adherent_type = t.rowid GROUP BY t.libelle";
$sql .= " WHERE d.fk_adherent_type = t.rowid AND d.statut = 1 GROUP BY t.libelle";
$result = $db->query($sql);

View File

@ -1,7 +1,4 @@
/* Copyright (C) 2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
*
* $Id$
* $Source$
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -17,9 +14,12 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
* $Source$
*
*/
BODY
body
{
background: #ebebe0;
font-family: Helvetica, Verdana; font-size: 12px;
@ -76,7 +76,7 @@ td.barre
color: #000000;
text-decoration: none }
TD.barre_select
td.barre_select
{
background: #ccccb3;
color: #000000
@ -84,7 +84,7 @@ TD.barre_select
DIV.titre
div.titre
{
font-family: Helvetica, Verdana; font-size: 16px; font-weight: bold;
color: #666633;
@ -92,22 +92,22 @@ DIV.titre
/*
*
*/
TR.liste_titre
tr.liste_titre
{
background: #999966;
font-family: Helvetica, Verdana; font-size: 14px; font-weight: bold;
text-decoration: none }
}
TR.pair
tr.pair
{
background: #ccccb3;
background: #dcdcb3;
font-family: Helvetica, Verdana; font-size: 12px;
text-decoration: none }
}
TR.impair
tr.impair
{
background: #eeeecc;
font-family: Helvetica, Verdana; font-size: 12px;
text-decoration: none }
}