Rajout de l'aide de vue URL
[zf2.biz/galerie.git] / module / Galerie / view / galerie / index / index.phtml
1 <h1><?php echo $this->translate('Galerie_index_title', 'galerie'); ?></h1>
2
3 <table id="galeries">
4         <tr>
5                 <th>
6                         <strong><?php echo $this->translate('Galerie_index_table_name', 'galerie'); ?></strong>
7                         <em><?php echo $this->translate('Galerie_index_table_description', 'galerie'); ?></em>
8                 </th>
9                 <th>
10                         <?php echo $this->translate('Galerie_index_table_username', 'galerie'); ?>
11                 </th>
12                 <th>
13                         <?php echo $this->translate('Galerie_index_table_nb', 'galerie'); ?>
14                 </th>
15                 <th>
16                         <?php echo $this->translate('Galerie_index_table_actions', 'galerie'); ?>
17                 </th>
18         </tr>
19         <?php if ($galeries->count() == 0): ?>
20         <tr>
21                 <td colspan="5">
22                         <strong><?php echo $this->translate('Galerie_index_table_void', 'galerie'); ?></strong>
23                 </td>
24         </tr>
25         <?php else: ?>
26         <?php foreach($galeries as $galerie): ?>
27         <tr>
28                 <td>
29                         <strong><?php echo $this->escapeHtml($galerie->name); ?></strong>
30                         <em><?php echo $this->escapeHtml($galerie->description); ?></em>
31                 </td>
32                 <td>
33                         <?php echo $this->escapeHtml($galerie->username); ?>
34                 </td>
35                 <td>
36                         <?php echo $this->escapeHtml($galerie->nb); ?>
37                 </td>
38                 <td>
39                         <a href="<?php echo $this->url('galerie/view', array('id'=>$galerie->id)); ?>"><?php echo $this->translate('Galerie_index_table_lien_view', 'galerie'); ?></a>
40                         <a href="<?php echo $this->url('galerie/edit', array('id'=>$galerie->id)); ?>"><?php echo $this->translate('Galerie_index_table_lien_edit', 'galerie'); ?></a>
41                         <a href="<?php echo $this->url('galerie/del', array('id'=>$galerie->id)); ?>"><?php echo $this->translate('Galerie_index_table_lien_del', 'galerie'); ?></a>
42                 </td>
43         </tr>
44         <?php endforeach; ?>
45         <?php endif; ?>
46 </table>