Line | |
---|
1 | <h2>Les éditos</h2> |
---|
2 | <div class="bloc_content"> |
---|
3 | <ul> |
---|
4 | <li><a href="<?= $env->url(array("e" => "set_editos", "action" => "add_edito")) ?>">Nouvel édito</a></li> |
---|
5 | </ul> |
---|
6 | <?php if($env->out["editos"]["list"]) : ?> |
---|
7 | |
---|
8 | <?php |
---|
9 | |
---|
10 | echo navig |
---|
11 | ( $env->start, |
---|
12 | $env->out["editos"]["total"], |
---|
13 | $env->config("max_list"), |
---|
14 | $_SERVER["REQUEST_URI"], |
---|
15 | $env->param("start"), |
---|
16 | " éditos" |
---|
17 | ); |
---|
18 | |
---|
19 | ?> |
---|
20 | <br /><br /> |
---|
21 | <table class="admin"> |
---|
22 | <tr> |
---|
23 | <th>titre</th> |
---|
24 | <th>date de publication</th> |
---|
25 | <th>auteur</th> |
---|
26 | <th colspan="2">actions</th> |
---|
27 | </tr> |
---|
28 | <?php foreach($env->out["editos"]["list"] as $id_edito => $edito) : ?> |
---|
29 | <tr class="hl"> |
---|
30 | <td><?= $edito["titre"] ?></td> |
---|
31 | <td><?= $edito["date_publication"] ?></td> |
---|
32 | <td><?= $edito["auteur"] ?></td> |
---|
33 | <td align="center"> |
---|
34 | <a href="<?= $env->url(array("e" => "set_editos", "action" => "set_edito", "edito" => $id_edito)) ?>" |
---|
35 | class="admin_link" |
---|
36 | title="modifier cet édito"><img src="<?= $env->out_file("icons/edit.gif") ?>" /></a> |
---|
37 | </td> |
---|
38 | <td align="center"> |
---|
39 | <a href="<?= $env->url(array("e" => "set_editos", "action" => "del_edito", "edito" => $id_edito)) ?>" |
---|
40 | class="admin_link" |
---|
41 | title="supprimer cet édito" |
---|
42 | onclick="return confirm('supprimer cet édito ?')"><img src="<?= $env->out_file("icons/del.gif") ?>" /></a> |
---|
43 | </td> |
---|
44 | </tr> |
---|
45 | <?php endforeach; ?> |
---|
46 | </table> |
---|
47 | <?php else : ?> |
---|
48 | <p>Aucun édito pour le moment...</p> |
---|
49 | <?php endif; ?> |
---|
50 | </div> |
---|
Note: See
TracBrowser
for help on using the repository browser.