Node_index.html 745 B

1234567891011121314151617181920212223242526
  1. <form name="myform" action="{:U('Node/listorder')}" method="post">
  2. <div class="table-list">
  3. <table width="100%" cellspacing="0">
  4. <thead>
  5. <tr>
  6. <th width="40">{:L('listorder')}</th>
  7. <th align="left">{:L('node_title')}</th>
  8. <th width="80" align="left">{:L('node_name')}</th>
  9. <th width="40">{:L('status')}</th>
  10. <th width="120">{:L('manage')}</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <volist name="nodes" id="r">
  15. <tr><td colspan="7" bgcolor="F8FAFC">{$r[groupinfo][name]}</td></tr>
  16. {$r[data]}
  17. </volist>
  18. </tbody>
  19. </table>
  20. <div class="btn"><input type="submit" class="button" name="dosubmit" value="<?php echo L('listorder')?>" /></div> </div>
  21. </div>
  22. </form></div>