Merge branch 'xorg/maint'
[platal.git] / templates / include / plview.trombi.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2014 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     {assign var=profile_prev value=$set[$key_prev]|get_profile}
35     {assign var=profile_cur value=$set[$key_cur]|get_profile}
36     {assign var=profile_next value=$set[$key_next]|get_profile}
37
38     <tr>
39       {include file="include/plview.trombi.entry.tpl" profile=$profile_prev photo=true}
40       {include file="include/plview.trombi.entry.tpl" profile=$profile_cur photo=true}
41       {include file="include/plview.trombi.entry.tpl" profile=$profile_next photo=true}
42     </tr>
43     <tr>
44       {include file="include/plview.trombi.entry.tpl" profile=$profile_prev photo=false}
45       {include file="include/plview.trombi.entry.tpl" profile=$profile_cur photo=false}
46       {include file="include/plview.trombi.entry.tpl" profile=$profile_next photo=false}
47     </tr>
48   {elseif ($smarty.section.trombi.index % 3 == 0) && ($smarty.section.trombi.last)}
49     {assign var=key_cur  value=$set_keys[trombi]}
50     {assign var=profile_cur value=$set[$key_cur]|get_profile}
51     <tr>
52       {include file="include/plview.trombi.entry.tpl" profile=$profile_cur photo=true}
53       <td></td><td></td>
54     </tr>
55     <tr style="margin-top: 0; padding-top: 0">
56       {include file="include/plview.trombi.entry.tpl" profile=$profile_cur photo=false}
57       <td></td><td></td>
58     </tr>
59   {/if}
60   {/section}
61 </table>
62 {/if}
63
64 {* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}