Files
EasySoft-ZenTaoPMS/module/risk/view/hangup.html.php
T
2020-08-18 17:44:02 +08:00

36 lines
1.4 KiB
PHP

<?php include "../../common/view/header.html.php";?>
<?php include '../../common/view/kindeditor.html.php';?>
<div id='mainContent' class='main-content'>
<div class='main-header'>
<h2>
<span class='prefix label-id'><strong><?php echo $risk->id;?></strong></span>
<?php echo "<span title='$risk->name'>" . $risk->name . '</span>';?>
</h2>
</div>
<form class='load-indicator main-form' method='post' target='hiddenwin'>
<table class='table table-form'>
<tbody>
<tr>
<th class='w-100px'><?php echo $lang->risk->hangupBy;?></th>
<td><?php echo html::select('hangupBy', $users, $this->app->user->account, "class='form-control chosen'");?></td>
<td></td>
</tr>
<tr>
<th class='w-100px'><?php echo $lang->risk->hangupDate;?></th>
<td><?php echo html::input('hangupDate', helper::today(), "class='form-control form-date'");?></td>
</tr>
<tr>
<th class='w-100px'><?php echo $lang->risk->assignedTo;?></th>
<td><?php echo html::select('assignedTo', $users, $risk->assignedTo, "class='form-control chosen'");?></td>
<td></td>
</tr>
<tr>
<td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td>
</tr>
</tbody>
</table>
</form>
</div>
<?php include "../../common/view/footer.html.php";?>