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

34 lines
1.2 KiB
PHP

<?php
/**
* The importfromlib view file of testcase module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Yidong Wang <yidong@cnezsoft.com>
* @package testcase
* @version $Id
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.html.php';?>
<div id='mainContent'>
<div class='center-block'>
<div class='main-header'>
<h2>
<small> <?php echo $lang->testcase->importToLib;?></small>
</div>
</div>
<form id='libs' method='post' class='form-ajax'>
<table class='table table-form'>
<tr>
<td class='select-lib'><?php echo $lang->testcase->selectLibAB;?></td>
<td class='required'><?php echo html::select('lib', $libraries, '', "class='form-control chosen' id='lib' data-drop_direction='down'");?></td>
</tr>
<tr>
<td colspan='2' class='text-center'><?php echo html::submitButton($lang->testcase->import);?></td>
</tr>
</form>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>