86 lines
3.7 KiB
PHP
86 lines
3.7 KiB
PHP
<?php
|
|
/**
|
|
* The batch create view of story 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 Yangyang Shi <shiyangyang@cnezsoft.com>
|
|
* @package story
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<div id="mainContent" class="main-content">
|
|
<div class="main-header">
|
|
<h2><?php echo $lang->gitlab->bindUser;?></h2>
|
|
</div>
|
|
<form method='post' class='load-indicator main-form form-ajax' enctype='multipart/form-data'>
|
|
<div class="table-responsive">
|
|
<table class="table table-borderless w-800px">
|
|
<thead>
|
|
<tr>
|
|
<th class='w-60px'><?php echo $lang->gitlab->gitlabAvatar;?></th>
|
|
<th><?php echo $lang->gitlab->gitlabAccount;?></th>
|
|
<th><?php echo $lang->gitlab->gitlabEmail;?></th>
|
|
<th class='w-150px'><?php echo $lang->gitlab->zentaoAccount;?></th>
|
|
<th><?php echo $lang->gitlab->bindingStatus;?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($gitlabUsers as $gitlabUser):?>
|
|
<?php if(isset($gitlabUser->zentaoAccount)) continue;?>
|
|
<?php echo html::hidden("gitlabUserNames[$gitlabUser->id]", $gitlabUser->realname);?>
|
|
<tr>
|
|
<td><?php echo html::image($gitlabUser->avatar, "height=40");?></td>
|
|
<td class='text-left'>
|
|
<strong><?php echo $gitlabUser->realname;?></strong>
|
|
<br>
|
|
<?php echo $gitlabUser->account;?>
|
|
</td>
|
|
<td><?php echo $gitlabUser->email;?></td>
|
|
<td><?php echo html::select("zentaoUsers[$gitlabUser->id]", $userPairs, '', "class='form-control select chosen'" );?></td>
|
|
<td><?php echo $lang->gitlab->notBind;?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
<?php foreach($gitlabUsers as $gitlabUser):?>
|
|
<?php if(!isset($gitlabUser->zentaoAccount)) continue;?>
|
|
<?php echo html::hidden("gitlabUserNames[$gitlabUser->id]", $gitlabUser->realname);?>
|
|
<tr>
|
|
<td><?php echo html::image($gitlabUser->avatar, "height=40");?></td>
|
|
<td>
|
|
<strong><?php echo $gitlabUser->realname;?></strong>
|
|
<br>
|
|
<?php echo $gitlabUser->account;?>
|
|
</td>
|
|
<td><?php echo $gitlabUser->email;?></td>
|
|
<td><?php echo html::select("zentaoUsers[$gitlabUser->id]", $userPairs, $gitlabUser->zentaoAccount, "class='form-control select chosen'" );?></td>
|
|
<td>
|
|
<?php if(in_array($gitlabUser->id, $bindedUsers)):?>
|
|
<?php $zentaoAccount = zget($userPairs, $gitlabUser->zentaoAccount, '');?>
|
|
<?php if(!empty($zentaoAccount)):?>
|
|
<?php echo $lang->gitlab->binded;?>
|
|
<?php else:?>
|
|
<?php echo '<span class="text-red">' . $lang->gitlab->bindedError . '</span>';?>
|
|
<?php endif;?>
|
|
<?php else:?>
|
|
<?php echo $lang->gitlab->notBind;?>
|
|
<?php endif;?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="5" class="text-center form-actions">
|
|
<?php echo html::submitButton();?>
|
|
<?php if(!isonlybody()) echo html::a(inlink('browse', ""), $lang->goback, '', 'class="btn btn-wide"');?>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|