Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1685 alexandre_ 1
<form action="<?=$url;?>" method="post">
2
<table summary="recherche">
3
 <tr>
4
  <td><?=AM_L_RECHERCHER; ?></td><td><input type="text" size="15" value="<?=$recherche;?>" name="recherche" /></td>
5
  <td><?=AM_L_PAYS; ?></td>
6
  <td>
7
   <select name="pays">
8
    <option value="tous">Tous les pays</option>
9
    <?php foreach ($tableau_pays as $codeIso => $labelPays) : ?>
1802 alexandre_ 10
        <option value="<?=$codeIso;?>"<?php if (!empty($pays)) : ?><?php if ($pays == $codeIso) : ?>  selected <? endif; ?><?php endif ; ?>><?=$labelPays;?></option>
1685 alexandre_ 11
    <?php endforeach; ?>
12
   </select>
13
  </td>
14
 </tr>
15
 <tr>
16
  <td><?=AM_L_DEPARTEMENT;?></td>
17
  <td>
18
   <select name="dept">
19
    <option value="tous">tous</option>
20
    <?php foreach ($tableau_dpt as $num_dpt => $label_dpt) : ?>
1802 alexandre_ 21
     <option value="<?=$num_dpt;?>"<?php if (!empty($dpt)) : ?><?php if ($dpt == $num_dpt) : ?> selected <? endif ; ?><?php endif ; ?>><?=$num_dpt ;?> - <?=$label_dpt;?></option>
1685 alexandre_ 22
    <?php endforeach ; ?>
23
   </select>
24
  </td>
25
  <td><?= AM_L_GRP_RES; ?></td><td><?=$pager_select_box;?>
26
  </td>
27
 </tr>
1802 alexandre_ 28
 <tr>
29
  <td>Type d'inscription</td>
30
  <td>
31
   <select name="type_inscription">
32
    <option value="tous">tous</option>
33
    <?php foreach ($tableau_type_inscription as $num_type_inscription => $label_type_inscription) : ?>
34
     <option value="<?=$num_type_inscription;?>"<?php if (!empty($type_inscription)) : ?><?php if ($type_inscription == $num_type_inscription) : ?> selected <? endif ; ?><?php endif ; ?>><?= $label_type_inscription ; ?></option>
35
    <?php endforeach ; ?>
36
   </select>
37
  </td>
38
  <td colspan="4"><input type="submit" value="<?=AM_L_RECHERCHER; ?>" name ="bouton" /></td>
39
 </tr>
1685 alexandre_ 40
</table>
41
</form>