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