Adapts upgrade scripts to domain.
[platal.git] / templates / include / plview.trombi.tpl
CommitLineData
8c4a0c30 1{**************************************************************************}
2{* *}
5e1513f6 3{* Copyright (C) 2003-2011 Polytechnique.org *}
8c4a0c30 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
360ecb20 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}
be7ba6fb 28<table cellpadding="0" cellspacing="2" style="width: 100%">
470d14f6 29 {section name=trombi loop=$set_keys start=0}
81bb9177 30 {if $smarty.section.trombi.index % 3 == 1}
470d14f6
FB
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]}
8c4a0c30 34 <tr>
470d14f6
FB
35 {include file="include/plview.trombi.entry.tpl" profile=$set[$key_prev] photo=true}
36 {include file="include/plview.trombi.entry.tpl" profile=$set[$key_cur] photo=true}
37 {include file="include/plview.trombi.entry.tpl" profile=$set[$key_next] photo=true}
be7ba6fb
SJ
38 </tr>
39 <tr>
470d14f6
FB
40 {include file="include/plview.trombi.entry.tpl" profile=$set[$key_prev] photo=false}
41 {include file="include/plview.trombi.entry.tpl" profile=$set[$key_cur] photo=false}
42 {include file="include/plview.trombi.entry.tpl" profile=$set[$key_next] photo=false}
be7ba6fb 43 </tr>
81bb9177 44 {elseif ($smarty.section.trombi.index % 3 == 0) && ($smarty.section.trombi.last)}
470d14f6 45 {assign var=key_cur value=$set_keys[trombi]}
be7ba6fb 46 <tr>
470d14f6 47 {include file="include/plview.trombi.entry.tpl" profile=$set[$key_cur] photo=true}
be7ba6fb
SJ
48 <td></td><td></td>
49 </tr>
50 <tr style="margin-top: 0; padding-top: 0">
470d14f6 51 {include file="include/plview.trombi.entry.tpl" profile=$set[$key_cur] photo=false}
be7ba6fb 52 <td></td><td></td>
8c4a0c30 53 </tr>
54 {/if}
be7ba6fb 55 {/section}
8c4a0c30 56</table>
360ecb20 57{/if}
8c4a0c30 58
59{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}