51 lines
2.0 KiB
PHP
51 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* The prjstart view file of program module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package program
|
|
* @version $Id: prjstart.html.php 4769 2013-05-05 07:24:21Z wwccss $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?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 $program->id;?></strong></span>
|
|
<?php echo isonlybody() ? ("<span title='$program->name'>" . $program->name . '</span>') : html::a($this->createLink('project', 'view', 'project=' . $program->id), $program->name, '_blank');?>
|
|
<?php if(!isonlybody()):?>
|
|
<small><?php echo $lang->arrow . $lang->project->start;?></small>
|
|
<?php endif;?>
|
|
</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->program->realBegan;?></th>
|
|
<td><?php echo html::input('realBegan', helper::today(), "class='form-control form-date'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-40px'><?php echo $lang->comment;?></th>
|
|
<td colspan='2'><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='3' class='text-center form-actions'>
|
|
<?php echo html::submitButton($lang->project->start);?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
<hr class='small' />
|
|
<div class='main'>
|
|
<?php include '../../common/view/action.html.php';?>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|