comparison templates/recordedTable.html @ 53:5096001c4995

fix: bug
author Sushi-k <epgrec@park.mda.or.jp>
date Tue, 28 Jul 2009 19:45:50 +0900
parents ae5491d72470
children 84220382fea8
comparison
equal deleted inserted replaced
52:f1ca253afc2f 53:5096001c4995
168 <table id="reservation_table"> 168 <table id="reservation_table">
169 <tr> 169 <tr>
170 <th>録画日時</th> 170 <th>録画日時</th>
171 <th>ch</th> 171 <th>ch</th>
172 <th>モード</th> 172 <th>モード</th>
173 {if $use_thumbs}<th>サムネール</th>{/if} 173 {if $use_thumbs == 1}<th>サムネール</th>{/if}
174 <th>タイトル</th> 174 <th>タイトル</th>
175 <th>内容</th> 175 <th>内容</th>
176 <th>変更</th> 176 <th>変更</th>
177 <th>削除</th> 177 <th>削除</th>
178 </tr> 178 </tr>
180 {foreach from=$records item=rec } 180 {foreach from=$records item=rec }
181 <tr id="resid_{$rec.id}" class="ctg_{$rec.cat}"> 181 <tr id="resid_{$rec.id}" class="ctg_{$rec.cat}">
182 <td>{$rec.starttime}</td> 182 <td>{$rec.starttime}</td>
183 <td>{$rec.station_name}</td> 183 <td>{$rec.station_name}</td>
184 <td>{$rec.mode}</td> 184 <td>{$rec.mode}</td>
185 {if $use_thumbs}<td><a href="{$rec.asf}">{$rec.thumb}</a></td>{/if} 185 {if $use_thumbs == 1}<td><a href="{$rec.asf}">{$rec.thumb}</a></td>{/if}
186 <td><a href="{$rec.asf}" id="tid_{$rec.id}">{$rec.title}</a></td> 186 <td><a href="{$rec.asf}" id="tid_{$rec.id}">{$rec.title}</a></td>
187 <td><a href="{$rec.asf}" id="did_{$rec.id}">{$rec.description}</a></td> 187 <td><a href="{$rec.asf}" id="did_{$rec.id}">{$rec.description}</a></td>
188 <td><input type="button" value="変更" onClick="javascript:PRG.editdialog('{$rec.id}')" /></td> 188 <td><input type="button" value="変更" onClick="javascript:PRG.editdialog('{$rec.id}')" /></td>
189 <td><input type="button" value="削除" onClick="javascript:PRG.dialog('{$rec.id}','{$rec.title}')" /></td> 189 <td><input type="button" value="削除" onClick="javascript:PRG.dialog('{$rec.id}','{$rec.title}')" /></td>
190 </tr> 190 </tr>