Convert source code to UTF-8
[platal.git] / templates / core / table-editor.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 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
24 <h1>{$title}</h1>
25
26 {if $list}
27 <script type="text/javascript">
28         {literal}
29         function redirect(a) {
30                 document.location = a;
31         }
32         {/literal}
33 </script>
34 <table class="bicol">
35 <tr>
36   {foreach from=$t->vars item=myval key=myvar}{if $myval.display}
37     <th style="cursor:pointer" onclick="redirect('{$t->pl}/sort{if $t->sortfield eq $myvar && !$t->sortdesc}desc{/if}/{$myvar}')">{$myval.desc}{if $t->sortfield eq $myvar}{if $t->sortdesc}{icon name="bullet_arrow_down"}{else}{icon name="bullet_arrow_up"}{/if}{/if}</th>
38   {/if}{/foreach}
39   {if !$hideactions}
40   <th>action</th>
41   {/if}
42 </tr>
43 {if !$readonly}
44 <tr class="impair">
45   <td colspan="{$t->nbfields}">
46     <strong>
47       Nouvelles entrées : <a href="{$t->pl}/new">Manuellement</a> &bull; <a href="{$t->pl}/massadd">Depuis un CSV</a>
48     </strong>
49   </td>
50   <td class="right">
51     <a href="{$t->pl}/new">{icon name=add title='nouvelle entrée'}</a>
52   </td>
53 </tr>
54 {/if}
55 {iterate from=$list item=myrow}
56 <tr class="{cycle values="pair,impair"}">
57 {foreach from=$t->vars item=myval}{if $myval.display}
58   <td>
59     {assign var="myfield" value=$myval.Field}
60     {if $myfield eq $t->idfield}
61         {assign var="idval" value=$myrow.$myfield}
62     {/if}
63     {if $myval.Type eq 'timestamp'}
64       <span class="smaller">{$myrow.$myfield|date_format:"%x %X"}</span>
65     {elseif $myval.Type eq 'checkbox'}
66       <input type="checkbox" disabled="disabled"{if $myrow.$myfield} checked="checked"{/if}/>
67     {else}
68       {$myrow.$myfield}
69     {/if}
70   </td>
71 {/if}{/foreach}
72   {if !$hideactions}
73   <td class="action">
74     {if !$readonly}
75     <a href="{$t->pl}/edit/{$idval}">{icon name=page_edit title='éditer'}</a>
76     <a href="{$t->pl}/delete/{$idval}">{icon name=delete title='supprimer'}</a>
77     {/if}
78   </td>
79   {/if}
80 </tr>
81 {/iterate}
82 </table>
83
84 {if ($p_prev > -1) || ($p_next > -1)}
85 <p class="pagenavigation">
86 {if $p_prev > -1}<a href="{$platal->path}?start={$p_prev}">{$msg_previous_page}</a>&nbsp;{/if}
87 {if $p_next > -1}<a href="{$platal->path}?start={$p_next}">{$msg_next_page}</a>{/if}
88 </p>
89 {/if}
90
91 {elseif $massadd}
92 {include file="include/csv-importer.tpl"}
93
94 <p>
95 <a href="{$t->pl}">back</a>
96 </p>
97
98 {else}
99
100 <form method="post" action="{$t->pl}/update/{$id}">
101   <table class="bicol">
102     <tr class="impair">
103       <th colspan="2">
104         {if $id}
105             modification de l'entrée 
106         {else}
107             nouvelle entrée
108         {/if}
109       </th>
110     </tr>
111     {foreach from=$t->vars item=myval}{assign var="myfield" value=$myval.Field}{if ($myfield neq $t->idfield) or ($t->idfield_editable)}
112     <tr class="{cycle values="pair,impair"}">
113       <td>
114         <strong>{$myval.desc}</strong>
115       </td>
116       <td>
117         {if $myval.Type eq 'set'}
118           <select name="{$myfield}[]" multiple="multiple">
119             {foreach from=$myval.List item=option}
120               <option value="{$option}" {if $entry.$myfield.$option}selected="selected"{/if}>{$option}</option>
121             {/foreach}
122           </select>
123         {elseif $myval.Type eq 'enum'}
124           <select name="{$myfield}">
125             {foreach from=$myval.List item=option}
126               <option value="{$option}" {if $entry.$myfield eq $option}selected="selected"{/if}>{$option}</option>
127             {/foreach}
128           </select>
129         {elseif ($myval.Type eq 'textarea') or ($myval.Type eq 'varchar200')}
130           <textarea name="{$myfield}" rows="{if $myval.Type eq 'varchar200'}3{else}10{/if}" cols="70">{$entry.$myfield}</textarea>
131         {elseif ($myval.Type eq 'checkbox')}
132           <input type="checkbox" name="{$myfield}" value="{$myval.Value}"{if $entry.$myfield} checked="checked"{/if}/>
133         {else}
134           <input type="text" name="{$myfield}" value="{$entry.$myfield}" {if $myval.Size}size="{$myval.Size}" maxlength="{$myval.Maxlength}"{/if}/>
135           {if $myval.Type eq 'timestamp'}<em>jj/mm/aaaa hh:mm:ss</em>{/if}
136           {if $myval.Type eq 'date'}<em>jj/mm/aaaa</em>{/if}
137           {if $myval.Type eq 'time'}<em>hh:mm:ss</em>{/if}
138         {/if}
139       </td>
140     </tr>
141     {/if}{/foreach}
142   </table>
143
144   <p class="center">
145   <input type="submit" value="enregistrer" />
146   </p>
147
148 </form>
149
150 <p>
151 <a href="{$t->pl}">back</a>
152 </p>
153
154 {/if}
155
156
157 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}