Files
EasySoft-ZenTaoPMS/module/convert/view/convertIssue.html.php
Catouse ad3a1c29b8 * ajusted views.
* changed css names.
2014-03-27 14:40:55 +08:00

22 lines
819 B
PHP

<?php include '../../common/view/header.html.php';?>
<?php include '../../common/view/colorize.html.php';?>
<form method='post'>
<table align='center' class='table-5 f-14px'>
<caption><?php echo $lang->convert->direction;?></caption>
<tr>
<th class='w-p20'><?php echo $lang->convert->questionTypeOfRedmine;?></th>
<th><?php echo $lang->convert->aimTypeOfZentao;?></th>
</tr>
<?php foreach($trackers as $tracker):?>
<tr>
<th><?php echo $tracker->name;?></th>
<td><?php html::select("$tracker->name", $lang->convert->directionList, '', "class='form-control'");?></td>
</tr>
<?php endforeach;?>
<tr>
<td colspan='2' class='text-center'><?php echo html::submitButton();?></td>
</tr>
</table>
</form>
<?php include '../../common/view/footer.html.php';?>