formguide_info_view.tpl.php 605 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. defined('IN_ADMIN') or exit('No permission resources.');
  3. $show_header = 1;
  4. include $this->admin_tpl('header', 'admin');
  5. ?>
  6. <div class="pad-10">
  7. <table width="100%" cellspacing="0" class="table-list">
  8. <thead>
  9. <tr>
  10. <th width="15%" align="right"><?php echo L('selects')?></th>
  11. <th align="left"><?php echo L('values')?></th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <?php
  16. if(is_array($forminfos_data)){
  17. foreach($forminfos_data as $key => $form){
  18. ?>
  19. <tr>
  20. <td><?php echo $fields[$key]['name']?>:</td>
  21. <td><?php echo $form?></td>
  22. </tr>
  23. <?php
  24. }
  25. }
  26. ?>
  27. </tbody>
  28. </table>
  29. </div>
  30. </body>
  31. </html>