* The GET form for importIssue is completed, post not.

This commit is contained in:
dingguodong
2021-07-05 10:50:24 +08:00
parent 9f05faa716
commit 388f6365c9
3 changed files with 15 additions and 16 deletions
+5 -3
View File
@@ -20,22 +20,24 @@
<table class="table table-borderless">
<thead>
<tr>
<th width='60px'><?php echo $lang->gitlab->gitlabIssue;?></th>
<th width='30px'><?php echo $lang->product->common;?></th>
<th width='30px'><?php echo $lang->execution->common;?></th>
<th width='60px'><?php echo $lang->gitlab->gitlabIssue;?></th>
<th width='30px'><?php echo $lang->gitlab->objectType;?></th>
</tr>
</thead>
<tbody>
<?php foreach($gitlabIssues as $issue):?>
<tr>
<td><?php echo $issue->title; ?></td>
<td><?php echo $productName; ?></td>
<input type='hidden' name='productID' value='<?php echo $productID;?>' />
<input type='hidden' name='gitlabID' value='<?php echo $gitlabID;?>' />
<input type='hidden' name='gitlabProjectID' value='<?php echo $gitlabProjectID;?>' />
<td><?php echo html::select("executionName", $executions, '', "class='form-control select chosen'" );?></td>
<td><?php echo html::select("gitlabIssueID", $gitlabIssues, '', "class='form-control select chosen'" );?></td>
<td><?php echo html::select("mappedIssues", $executions, '', "class='form-control select chosen'" );?></td>
<td><?php echo html::select("objectType", $objectTypes, '', "class='form-control select chosen'" );?></td>
</tr>
<?php endforeach; ?>
</tbody>
<tfoot>
<tr>