convertIssue.html.php 741 B

1234567891011121314151617181920
  1. <?php include '../../common/view/header.html.php';?>
  2. <form method='post'>
  3. <table align='center' class='table-5 f-14px'>
  4. <caption><?php echo $lang->convert->direction;?></caption>
  5. <tr>
  6. <th class='w-p20'><?php echo $lang->convert->questionTypeOfRedmine;?></th>
  7. <th><?php echo $lang->convert->aimTypeOfZentao;?></th>
  8. </tr>
  9. <?php foreach($trackers as $tracker):?>
  10. <tr>
  11. <th><?php echo $tracker->name;?></th>
  12. <td><?php html::select("$tracker->name", $lang->convert->directionList, '', "class='form-control'");?></td>
  13. </tr>
  14. <?php endforeach;?>
  15. <tr>
  16. <th></th><td><?php echo html::submitButton();?></td>
  17. </tr>
  18. </table>
  19. </form>
  20. <?php include '../../common/view/footer.html.php';?>