Template_index.html 853 B

123456789101112131415161718192021222324
  1. <div class="table-list">
  2. <table cellpadding=0 cellspacing=0 width="100%">
  3. <thead>
  4. <tr>
  5. <th align="left">{:L(file_name)}</th>
  6. <th align="left" style="width:8%">{:L(file_size)}</th>
  7. <th style="width:18%">{:L(file_time)}</th>
  8. <th align="center" style="width:15%">{:L(manage)}</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <volist name="templates" id="vo">
  13. <tr>
  14. <td>{$vo.filename}</td>
  15. <td>{$vo.filesize}</td>
  16. <td align="center" >{$vo.filemtime|toDate=###,'Y-m-d H:i:s'}</td>
  17. <td align="center" ><a href="{:U($module_name.'/edit?file='.$vo[filename])}"><img src="./Public/Images/edit.gif"></a> <a href="javascript:confirm_delete('{:U($module_name.'/delete?file='.$vo[filename])}')"><img src="./Public/Images/delete.gif"></a></td>
  18. </tr>
  19. </volist>
  20. </tbody>
  21. </table>
  22. </div>