File: /www/wwwroot/oa.sanjiangapp.com/app/oa/leave/view/setreviewer.html.php
<?php
/**
* The set reviewer view file of leave module of ZDOO.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Gang Liu <liugang@cnezsoft.com>
* @package leave
* @version $Id$
* @link http://www.zdoo.com
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php if(!$module):?>
<div class='main-row'>
<?php include 'side.html.php';?>
<div class='main-col'>
<?php endif;?>
<div class='panel panel-block'>
<div class='panel-heading'>
<strong><?php echo $lang->leave->setReviewer;?></strong>
</div>
<div class='panel-body'>
<form id='ajaxForm' method='post'>
<table class='table table-form'>
<tr>
<th class='w-60px'><?php echo $lang->leave->setReviewer;?></th>
<td class='w-200px'><?php echo html::select('reviewedBy', array('' => $this->lang->dept->moderators) + $users, $reviewedBy, "class='form-control chosen'");?></td>
<td></td>
</tr>
<tr>
<th></th>
<td colspan='2' class='form-actions'><?php echo html::submitButton();?></td>
</tr>
</table>
</form>
</div>
</div>
<?php if(!$module):?>
</div>
</div>
<?php endif;?>
<?php include '../../common/view/footer.html.php';?>