zentaopms/module/execution/view/printkanban.html.php
2023-05-16 10:47:08 +08:00

37 lines
1.3 KiB
PHP

<?php
/**
* The kanban view file of execution module of ZenTaoPMS.
*
* @copyright Copyright 2009-2012 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
* @author Wang Yidong, Zhu Jinyong
* @package execution
* @version $Id: kanban.html.php $
*/
?>
<?php if($_POST) die(include 'preview.html.php')?>
<?php include '../../common/view/header.lite.html.php';?>
<?php js::set('executionID', $executionID);?>
<main class='main'>
<div class='container'>
<div id='mainContent' class='main-content'>
<div class='center-block'>
<div class='main-header'>
<h2><?php echo $lang->printKanban->common;?></h2>
</div>
<form class="no-stash" target='_blank' method='post'>
<table class='table table-form'>
<tr>
<td class='text-right w-100px'><?php echo $lang->printKanban->content?>:</td>
<td class='text-left text-middle'>
<?php echo html::radio('content', $lang->printKanban->typeList, 'all')?>
&nbsp; &nbsp; <?php echo html::submitButton($lang->printKanban->print)?>
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
</main>
<?php include '../../common/view/footer.lite.html.php';?>