member_verify_modelinfo.tpl.php 812 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php defined('IN_ADMIN') or exit('No permission resources.');?>
  2. <?php include $this->admin_tpl('header', 'admin');?>
  3. <div class="pad-lr-10">
  4. <div class="table-list">
  5. <table width="100%" cellspacing="0">
  6. <thead>
  7. <tr>
  8. <th align="left" width="200px"><?php echo L('filedname')?></th>
  9. <th align="left" ><?php echo L('value')?></th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <?php
  14. foreach($member_fieldinfo as $k=>$v) {
  15. ?>
  16. <tr>
  17. <td align="left" width="200px"><?php echo $k?></td>
  18. <td align="left"><?php echo $v?></td>
  19. </tr>
  20. <?php
  21. }
  22. ?>
  23. </tbody>
  24. </table>
  25. <div class="btn">
  26. <input type="button" class="dialog" name="dosubmit" id="dosubmit" value="<?php echo L('goback')?>" onclick="window.top.art.dialog({id:'modelinfo'}).close();"/>
  27. </div>
  28. </div>
  29. </div>
  30. </body>
  31. </html>