| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * The back view file of leave module of Ranzhi.
- *
- * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
- * @license ZPL (http://zpl.pub/page/zplv12.html)
- * @author Tingting Dai <daitingting@xirangit.com>
- * @package leave
- * @version $Id$
- * @link http://www.ranzhi.org
- */
- ?>
- <?php include '../../common/view/header.modal.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/datepicker.html.php';?>
- <div class='panel-body'>
- <form id='ajaxForm' method='post' action="<?php echo $this->createLink('leave', 'back', "id=$leave->id")?>">
- <table class='table table-form table-condensed'>
- <tr>
- <th class='w-80px'><?php echo $lang->leave->backDate;?></th>
- <td><?php echo html::input('backDate', formatTime($leave->backDate), "class='form-control form-datetime'")?></td>
- </tr>
- <tr>
- <th></th>
- <td><?php echo baseHTML::submitButton();?></td>
- </tr>
- </table>
- </form>
- </div>
- <?php include '../../common/view/footer.modal.html.php';?>
|