66 lines
2.0 KiB
PHP
66 lines
2.0 KiB
PHP
<form>
|
|
<div class="panel-heading">
|
|
<h6 class="panel-title">Note: You have assigned a transporter. The transporter did not confirm yet. You can still release and resigned if not confirmed on time. </h6>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table class="table text-nowrap">
|
|
<tbody>
|
|
<tr>
|
|
<td style="width: 100px">
|
|
<b>Assigned <br>Transporter :</b>
|
|
</td>
|
|
<td>
|
|
<table class="table text-nowrap">
|
|
<tr>
|
|
<td>
|
|
<?=$assign_detail?><br><?=$assign_phone?>
|
|
</td>
|
|
<td style="width: 80px;">
|
|
<button type="button" class="btn btn-info btn-xs" onclick="return AssignFormRelease(this.form);">Release</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<b>Translator :</b>
|
|
</td>
|
|
<td>
|
|
Yes <b>Language :</b> French - THIS SECTION WILL BE IMPLENETED - STILL PENDING
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td >
|
|
<b>Cancel Request :</b>
|
|
</td>
|
|
<td>
|
|
<table class="table text-nowrap"><tr><td><?=$cancel_reason_combo?></td><td style="width: 100px;"><button type="button" onclick="return AssignCancel(this.form);" class="btn btn-warning btn-xs">Cancel</button> </td></tr> </table>
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
<script type="text/javascript">
|
|
<!--
|
|
function AssignFormRelease(form) {
|
|
alert(form);
|
|
return false;
|
|
}
|
|
function AssignCancel(form) {
|
|
// recomended_list
|
|
alert(form.search_list);
|
|
return false;
|
|
}
|
|
// -->
|
|
</script>
|
|
<!--
|
|
vi:ts=2
|
|
-->
|
|
|