Line 1... |
Line 1... |
1 |
<?php if (isset($message)) : ?>
|
1 |
<?php if (isset($message)) : ?>
|
2 |
<p class="information"><?=$message;?></p>
|
2 |
<p class="information"><?=$message;?></p>
|
3 |
<?php endif; ?>
|
3 |
<?php endif; ?>
|
- |
|
4 |
<form id="admin_projet_editer" class="editer" name="admin_projet_editer" action="index.php?action=admin-projet_editer" method="post">
|
- |
|
5 |
<fieldset>
|
- |
|
6 |
<legend>Éditer un projet</legend>
|
- |
|
7 |
<ul>
|
- |
|
8 |
<li>
|
- |
|
9 |
<label for="prsu_id">Projet :</label>
|
- |
|
10 |
<select id="prsu_id" name="prsu_id">
|
- |
|
11 |
<?php foreach ($projets as $projet) : ?>
|
- |
|
12 |
<option value="<?=$projet['id'];?>"><?=$projet['nom'];?></option>
|
- |
|
13 |
<?php endforeach; ?>
|
- |
|
14 |
</select>
|
- |
|
15 |
</li>
|
- |
|
16 |
<li><input id="btn_projet_modifier" name="btn_projet_modifier" value="Modifier" type="submit" /></li>
|
- |
|
17 |
<li><input id="btn_projet_supprimer" name="btn_projet_supprimer" value="Supprimer" type="submit" onclick="javascript:return confirm('Êtes vous sûr de vouloir supprimer ce projet ?');" /></li>
|
- |
|
18 |
</ul>
|
- |
|
19 |
</fieldset>
|
- |
|
20 |
</form>
|
4 |
<form id="admin_projet_ajouter" name="admin_projet_ajouter" action="<?=$form_url;?>" method="post">
|
21 |
<form id="admin_projet_ajouter" name="admin_projet_ajouter" action="<?=$form_url;?>" method="post">
|
5 |
<fieldset>
|
22 |
<fieldset>
|
6 |
<legend><?=$form_legend;?></legend>
|
23 |
<legend><?=$form_legend;?></legend>
|
7 |
<ul>
|
24 |
<ul>
|
8 |
<li>
|
25 |
<li>
|
9 |
<label for="praj_nom">Nom du projet :</label>
|
26 |
<label for="praj_nom">Nom du projet :</label>
|
10 |
<input size="30" id="praj_nom" name="praj_nom" type="text" value="<?=$Projet->getNomProjet();?>"/>
|
27 |
<input size="30" id="praj_nom" name="praj_nom" type="text" value="<?=$Projet->getNomProjet();?>"/>
|
11 |
<span class="symbole_obligatoire">*</span>
|
28 |
<span class="symbole_obligatoire">*</span>
|
12 |
</li>
|
29 |
</li>
|
13 |
<li>
|
30 |
<li>
|
- |
|
31 |
<label for="praj_ce_categorie">Catégorie :</label>
|
- |
|
32 |
<select id="praj_ce_categorie" name="praj_ce_categorie">
|
- |
|
33 |
<?php foreach ($categories as $Categorie) : ?>
|
- |
|
34 |
<option value="<?=$Categorie->getIdCategorie();?>" <?=(isset($CategorieDefaut) && $CategorieDefaut->getIdCategorie() == $Categorie->getIdCategorie()) ? 'selected="selected"' : '';?>><?=$Categorie->getLibelle();?></option>
|
- |
|
35 |
<?php endforeach; ?>
|
- |
|
36 |
</select>
|
- |
|
37 |
</li>
|
- |
|
38 |
<li>
|
14 |
<label for="praj_description">Description :</label>
|
39 |
<label for="praj_description">Description :</label>
|
15 |
<textarea rows="10" cols="50" id="praj_description" name="praj_description"><?=$Projet->getDescription();?></textarea>
|
40 |
<textarea rows="10" cols="50" id="praj_description" name="praj_description"><?=$Projet->getDescription();?></textarea>
|
16 |
</li>
|
41 |
</li>
|
17 |
<li>
|
42 |
<li>
|
18 |
<label for="praj_date_debut">Date de début :</label>
|
43 |
<label for="praj_date_debut">Date de début :</label>
|
Line 31... |
Line 56... |
31 |
<input id="<?=$form_bouton_id;?>" name="<?=$form_bouton_id;?>" value="<?=$form_bouton_value;?>" type="submit" />
|
56 |
<input id="<?=$form_bouton_id;?>" name="<?=$form_bouton_id;?>" value="<?=$form_bouton_value;?>" type="submit" />
|
32 |
<input id="btn_projet_annuler" name="btn_projet_annuler" value="Annuler" type="submit" />
|
57 |
<input id="btn_projet_annuler" name="btn_projet_annuler" value="Annuler" type="submit" />
|
33 |
<li><span class="symbole_obligatoire">*</span> =champs obligatoires</li>
|
58 |
<li><span class="symbole_obligatoire">*</span> =champs obligatoires</li>
|
34 |
</ul>
|
59 |
</ul>
|
35 |
</fieldset>
|
60 |
</fieldset>
|
36 |
</form>
|
61 |
</form>
|
37 |
<form id="admin_projet_editer" name="admin_projet_editer" action="index.php?action=admin-projet_editer" method="post">
|
- |
|
38 |
<fieldset>
|
- |
|
39 |
<legend>Éditer un projet</legend>
|
- |
|
40 |
<ul>
|
- |
|
41 |
<li>
|
- |
|
42 |
Projet :
|
- |
|
43 |
<select id="prsu_id" name="prsu_id">
|
- |
|
44 |
<?php foreach ($projets as $projet) : ?>
|
- |
|
45 |
<option value="<?=$projet['id'];?>"><?=$projet['nom'];?></option>
|
- |
|
46 |
<?php endforeach; ?>
|
- |
|
47 |
</select>
|
- |
|
48 |
</li>
|
- |
|
49 |
<li><input id="btn_projet_modifier" name="btn_projet_modifier" value="Modifier" type="submit" /></li>
|
- |
|
50 |
<li><input id="btn_projet_supprimer" name="btn_projet_supprimer" value="Supprimer" type="submit" onclick="javascript:return confirm('Êtes vous sûr de vouloir supprimer ce projet ?');" /></li>
|
- |
|
51 |
</ul>
|
- |
|
52 |
</fieldset>
|
- |
|
53 |
</form>
|
- |
|
54 |
|
62 |
|