Urlrule_index.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <form name="myform" action="{:U($module_name.'/deleteall')}" method="post">
  2. <div class="table-list">
  3. <table width="100%" cellspacing="0">
  4. <thead>
  5. <tr>
  6. <th width="20"><input type="checkbox" id="check_box" onclick="selectall('ids[]');" /></th>
  7. <th width="40">ID</th>
  8. <th width="110" align="center">{:L('URL_MAKE_HTML')}</th>
  9. <th width="210" align="left">{:L('URL_example')}</th>
  10. <th align="left">{:L('URL_RULE')}</th>
  11. <th width="120">{:L('manage')}</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <volist name="list" id="vo" key="k">
  16. <tr>
  17. <td width="20" align="center"><input type="checkbox" name="ids[]" value="{$vo['id']}" /></td>
  18. <td align="center">{$vo['urlruleid']}</td>
  19. <td align="center"><eq name="vo['ishtml']" value="1">
  20. {:L('yes')}
  21. <else />
  22. {:L('no')}
  23. </eq></td>
  24. <td align="left" style="line-height:20px;">{$vo['showexample']}<br>{$vo['listexample']}</td>
  25. <td align="left" style="line-height:20px;">{$vo['showurlrule']}<br>{$vo['listurlrule']}</td>
  26. <td align="center"><a href="{:U('Urlrule/edit',array(urlruleid=>$vo['urlruleid']))}">{:L('edit')}</a> | <a href="javascript:confirm_delete('{:U('Urlrule/delete',array(urlruleid=>$vo['urlruleid']))}')">{:L('delete')}</a></td>
  27. </tr>
  28. </volist>
  29. </tbody>
  30. </table>
  31. <div class="btn"><input type="submit" class="button" name="dosubmit" value="<?php echo L('delete')?>" /></div> </div>
  32. </div>
  33. </form>
  34. <div id="pages" class="page">{$page}</div>