a683a679f274685e0c3f0c5cfc9f2b56bbf581ff
[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         </tr>
16         <?php if ($galeries->count() == 0): ?>
17         <tr>
18                 <td colspan="4">
19                         <strong><?php echo $this->translate('Galerie_index_table_void', 'galerie'); ?></strong>
20                 </td>
21         </tr>
22         <?php else: ?>
23         <?php foreach($galeries as $galerie): ?>
24         <tr>
25                 <td>
26                         <strong><?php echo $this->escapeHtml($galerie->name); ?></strong>
27                         <em><?php echo $this->escapeHtml($galerie->description); ?></em>
28                 </td>
29                 <td>
30                         <?php echo $this->escapeHtml($galerie->username); ?>
31                 </td>
32                 <td>
33                         <?php echo $this->escapeHtml($galerie->nb); ?>
34                 </td>
35         </tr>
36         <?php endforeach; ?>
37         <?php endif; ?>
38 </table>