76 lines
3.2 KiB
PHP
76 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* The edit view file of entry module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2017 禅道软件(青岛)有限公司(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 Gang Liu <liugang@cnezsoft.com>
|
|
* @package entry
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/form.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='center-block mw-800px center-block-sm'>
|
|
<div class="main-header">
|
|
<h2>
|
|
<?php echo $lang->entry->common;?>
|
|
<small><?php echo $lang->arrow . ' ' . $lang->entry->edit;?></small>
|
|
</h2>
|
|
</div>
|
|
<form id='entryForm' method='post' class='form-ajax'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th class='w-80px'><?php echo $lang->entry->name;?></th>
|
|
<td><?php echo html::input('name', $entry->name, "class='form-control' title='{$lang->entry->note->name}' placeholder='{$lang->entry->note->name}'");?></td>
|
|
<td class='w-200px'></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->entry->code;?></th>
|
|
<td><?php echo html::input('code', $entry->code, "class='form-control' title='{$lang->entry->note->code}' placeholder='{$lang->entry->note->code}'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->entry->freePasswd;?></th>
|
|
<td><?php echo html::radio('freePasswd', $lang->entry->freePasswdList, $entry->freePasswd);?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<tr class="<?php if($entry->freePasswd == 1) echo 'hidden'?>">
|
|
<th><?php echo $lang->entry->account;?></th>
|
|
<td><?php echo html::select("account", $users, $entry->account, "class='form-control chosen'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->entry->key;?></th>
|
|
<td><?php echo html::input('key', $entry->key, "class='form-control' readonly='readonly'");?></td>
|
|
<td><span class="help-inline"><?php echo html::a('javascript:void(0)', $lang->entry->createKey, '', 'onclick="createKey()" tabIndex="-1" class="btn"')?></span></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->entry->ip;?></th>
|
|
<td><?php echo html::input('ip', $entry->ip, "class='form-control' title='{$lang->entry->note->ip}' placeholder='{$lang->entry->note->ip}'");?></td>
|
|
<td>
|
|
<div class='checkbox-primary'>
|
|
<input type="checkbox" id="allIP" name="allIP" value="1" />
|
|
<label for='allIP'><?php echo $lang->entry->note->allIP;?></label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->entry->desc;?></th>
|
|
<td><?php echo html::textarea('desc', $entry->desc, "rows='3' class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td>
|
|
<?php echo html::submitButton();?>
|
|
<?php echo html::a($lang->entry->helpLink, $lang->entry->help, '_blank', "class='help'");?>
|
|
<?php echo html::a($lang->entry->notifyLink, $lang->entry->notify, '_blank', "class='help'");?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|