* The GET form for importIssue is completed, post not.
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user