Module_index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <form name="myform" action="{:U('Module/listorder')}" 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 width="90" align="left" >{:L('module_name')}</th>
  8. <th width="90" align="left" >{:L('module_table')}</th>
  9. <th width="300" align="left" >{:L('module_description')}</th>
  10. <th width="240">{:L('manage')}</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <volist name="list" id="vo" key="k">
  15. <tr>
  16. <td align="center">{$vo['id']}</td>
  17. <td>{$vo['title']}</td>
  18. <td>{$vo['name']}</td>
  19. <td>{$vo['description']}</td>
  20. <td align="center">
  21. <a href="{:U('Field/index',array(moduleid=>$vo['id']))}">{:L('module_field')}</a> |
  22. <a href="{:U('Module/edit',array(id=>$vo['id']))}">{:L('edit')}</a> |
  23. <if condition="$vo[status]==1">
  24. <a href="{:U('Module/status',array(id=>$vo['id'],status=>0))}"><font color="green">{:L('enable')}</font></a>
  25. <else />
  26. <a href="{:U('Module/status',array(id=>$vo['id'],status=>1))}"><font color="red">{:L('disable')}</font></a>
  27. </if>
  28. | <if condition="$vo['issystem']">
  29. <font color="#CFCFCF">{:L('delete')}</font>
  30. <else />
  31. <a href="{:U('Module/delete',array(id=>$vo['id']))}" onclick="return confirm('{:L('module_real_uninstall')}')">{:L('delete')}</a>
  32. </if>
  33. </td>
  34. </tr>
  35. </volist>
  36. </tbody>
  37. </table>
  38. </div>
  39. </form></div>