8213c9556d4e2c8f9980d8185df91c5b679fd585
[platal.git] / templates / include / plview.trombi.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2011 Polytechnique.org                             *}
4 {*  http://opensource.polytechnique.org/                                  *}
5 {*                                                                        *}
6 {*  This program is free software; you can redistribute it and/or modify  *}
7 {*  it under the terms of the GNU General Public License as published by  *}
8 {*  the Free Software Foundation; either version 2 of the License, or     *}
9 {*  (at your option) any later version.                                   *}
10 {*                                                                        *}
11 {*  This program is distributed in the hope that it will be useful,       *}
12 {*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *}
13 {*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *}
14 {*  GNU General Public License for more details.                          *}
15 {*                                                                        *}
16 {*  You should have received a copy of the GNU General Public License     *}
17 {*  along with this program; if not, write to the Free Software           *}
18 {*  Foundation, Inc.,                                                     *}
19 {*  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23 {if $plset_count eq 0}
24 <p class="erreur">
25   Aucun des camarades concernĂ©s n'a de photographie sur sa fiche
26 </p>
27 {else}
28 <table cellpadding="0" cellspacing="2" style="width: 100%">
29   {section name=trombi loop=$set_keys start=0}
30   {if $smarty.section.trombi.index % 3 == 1}
31   {assign var=key_prev value=$set_keys[trombi.index_prev]}
32   {assign var=key_cur  value=$set_keys[trombi]}
33   {assign var=key_next value=$set_keys[trombi.index_next]}
34   <tr>
35     {include file="include/plview.trombi.entry.tpl" profile=$set[$key_prev]->profile() photo=true}
36     {include file="include/plview.trombi.entry.tpl" profile=$set[$key_cur]->profile() photo=true}
37     {include file="include/plview.trombi.entry.tpl" profile=$set[$key_next]->profile() photo=true}
38   </tr>
39   <tr>
40     {include file="include/plview.trombi.entry.tpl" profile=$set[$key_prev]->profile() photo=false}
41     {include file="include/plview.trombi.entry.tpl" profile=$set[$key_cur]->profile() photo=false}
42     {include file="include/plview.trombi.entry.tpl" profile=$set[$key_next]->profile() photo=false}
43   </tr>
44   {elseif ($smarty.section.trombi.index % 3 == 0) && ($smarty.section.trombi.last)}
45   {assign var=key_cur  value=$set_keys[trombi]}
46   <tr>
47     {include file="include/plview.trombi.entry.tpl" profile=$set[$key_cur]->profile() photo=true}
48     <td></td><td></td>
49   </tr>
50   <tr style="margin-top: 0; padding-top: 0">
51     {include file="include/plview.trombi.entry.tpl" profile=$set[$key_cur]->profile() photo=false}
52     <td></td><td></td>
53   </tr>
54   {/if}
55   {/section}
56 </table>
57 {/if}
58
59 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}