*** empty log message ***
This commit is contained in:
parent
6276e971eb
commit
9cdb93fbe2
@ -31,18 +31,25 @@
|
|||||||
<form action="index.php" method="post">
|
<form action="index.php" method="post">
|
||||||
<table id="formulaire">
|
<table id="formulaire">
|
||||||
<input type="hidden" name="action" value="add" />
|
<input type="hidden" name="action" value="add" />
|
||||||
|
<!-- la ligne projet est invisible -->
|
||||||
|
<tr id="projet">
|
||||||
|
|
||||||
|
</tr>
|
||||||
<tr id="date">
|
<tr id="date">
|
||||||
|
|
||||||
<script language="php">
|
<script language="php">
|
||||||
$a = setlocale("LC_TIME", "FRENCH");
|
$a = setlocale("LC_TIME", "FRENCH");
|
||||||
print strftime("%d %B %Y", time());
|
print strftime("%d %B %Y", time());
|
||||||
</script>
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="projet">
|
<tr id="montant">
|
||||||
|
<script language="php">
|
||||||
|
print '<input type="text" name="montant" size="10" value="'.$HTTP_POST_VARS["montant"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
|
||||||
<tr id="prenom">
|
<tr id="prenom">
|
||||||
<script language="php">
|
<script language="php">
|
||||||
print '<input type="text" name="prenom" size="30" value="'.$HTTP_POST_VARS["prenom"].'">';
|
print '<input type="text" name="prenom" size="30" value="'.$HTTP_POST_VARS["prenom"].'">';
|
||||||
@ -91,12 +98,6 @@
|
|||||||
</script>
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="montant">
|
|
||||||
<script language="php">
|
|
||||||
print '<input type="text" name="montant" size="10" value="'.$HTTP_POST_VARS["montant"].'">';
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="public">
|
<tr id="public">
|
||||||
<select name="public">
|
<select name="public">
|
||||||
<script language="php">
|
<script language="php">
|
||||||
|
|||||||
@ -28,6 +28,10 @@
|
|||||||
require("code_valid.php");
|
require("code_valid.php");
|
||||||
</script>
|
</script>
|
||||||
<table id="formulaire">
|
<table id="formulaire">
|
||||||
|
<!-- la ligne projet est invisible -->
|
||||||
|
<tr id="projet">
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
|
||||||
<tr id="date">
|
<tr id="date">
|
||||||
<script language="php">
|
<script language="php">
|
||||||
@ -36,8 +40,10 @@
|
|||||||
</script>
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="projet">
|
<tr id="montant">
|
||||||
|
<script language="php">
|
||||||
|
print $don->amount;
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="prenom">
|
<tr id="prenom">
|
||||||
@ -88,12 +94,6 @@
|
|||||||
</script>
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="montant">
|
|
||||||
<script language="php">
|
|
||||||
print $don->amount;
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="public">
|
<tr id="public">
|
||||||
<script language="php">
|
<script language="php">
|
||||||
$yn[0]="non/no";
|
$yn[0]="non/no";
|
||||||
|
|||||||
@ -163,6 +163,13 @@
|
|||||||
Amount
|
Amount
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="titre"> </td>
|
||||||
|
<td class="valeur">
|
||||||
|
<hr />
|
||||||
|
</td>
|
||||||
|
<td class="titre"> </td>
|
||||||
|
</tr>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
<xsl:template match="table/tr[@id='limitdate']">
|
<xsl:template match="table/tr[@id='limitdate']">
|
||||||
|
|||||||
@ -22,6 +22,10 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<table id="formulaire">
|
<table id="formulaire">
|
||||||
|
<!-- la ligne projet est invisible -->
|
||||||
|
<tr id="projet">
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
|
||||||
<tr id="date">
|
<tr id="date">
|
||||||
<script language="php">
|
<script language="php">
|
||||||
@ -30,8 +34,10 @@
|
|||||||
</script>
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="projet">
|
<tr id="montant">
|
||||||
|
<script language="php">
|
||||||
|
print number_format($don->amount, 0, '', ' ');
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="prenom">
|
<tr id="prenom">
|
||||||
@ -82,12 +88,6 @@
|
|||||||
</script>
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="montant">
|
|
||||||
<script language="php">
|
|
||||||
print number_format($don->amount, 0, '', ' ');
|
|
||||||
</script>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr id="public">
|
<tr id="public">
|
||||||
<script language="php">
|
<script language="php">
|
||||||
$yn[0]="non";
|
$yn[0]="non";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user