Slide_index.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <form name="myform" id="myform" action="" method="post">
  2. <div class="table-list">
  3. <table width="100%" cellspacing="0">
  4. <thead>
  5. <tr>
  6. <th width="40">ID</th>
  7. <th align="left">{:L(NAME)}</th>
  8. <th width="60" align="left">{:L(width)}</th>
  9. <th width="60" align="left">{:L(height)}</th>
  10. <th width="60" align="center">{:L(STATUS)}</th>
  11. <th width="200" align="center">{:L('manage')}</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <volist name="list" id="vo" key="k">
  16. <tr>
  17. <td align="center">{$vo['id']}</td>
  18. <td align="left">{$vo['name']}</td>
  19. <td align="left">{$vo['width']}</td>
  20. <td align="left">{$vo['height']}</td>
  21. <td align="center"><eq name="vo['status']" value="1">
  22. {:L('enable')}
  23. <else />
  24. {:L('disable')}
  25. </eq></td>
  26. <td align="center">
  27. <a href="{:U('Slide/picmanage',array(fid=>$vo['id']))}">{:L('PICMANAGE')}</a> |
  28. <a href="{:U('Slide/addpic?fid='.$vo[id])}" class="ui-btn">{:L(add_pic)}</a> |
  29. <a href="{:U('Slide/edit',array(id=>$vo['id']))}">{:L('edit')}</a> | <a href="javascript:confirm_delete('{:U('Slide/delete',array(id=>$vo['id']))}')">{:L('delete')}</a></td>
  30. </tr>
  31. </volist>
  32. </tbody>
  33. </table>
  34. </div>
  35. </form>
  36. <div id="pages" class="page">{$page}</div>
  37. </body></html>