* adjust the user->getPairs().

* adjust the note of group.
 * adjust the UI of group priv manage and member manage.
This commit is contained in:
wangchunsheng
2010-01-20 03:32:32 +00:00
parent 271c22505b
commit de23afcfef
24 changed files with 97 additions and 66 deletions
+3 -2
View File
@@ -21,7 +21,7 @@
* @version $Id$
* @link http://www.zentao.cn
*/
$lang->project->common = '项目';
$lang->project->common = '项目视图';
$lang->project->index = "项目首页";
$lang->project->create = "添加项目";
$lang->project->delete = "删除项目";
@@ -68,7 +68,8 @@ $lang->project->canceledDate = '取消日期';
$lang->project->PO = '产品负责人';
$lang->project->PM = '项目负责人';
$lang->project->QM = '测试负责人';
$lang->project->team = '团队名称';
$lang->project->teamname = '团队名称';
$lang->project->team = '团队成员';
$lang->project->products = '相关产品';
$lang->project->childProjects= '子项目';
$lang->project->task = '任务列表';
+1 -1
View File
@@ -50,7 +50,7 @@
<td><input type='text' name='end' class='text-3' /></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->team;?></th>
<th class='rowhead'><?php echo $lang->project->teamname;?></th>
<td><input type='text' name='team' class='text-3' /></td>
</tr>
<tr>
+1 -1
View File
@@ -50,7 +50,7 @@
<td><input type='text' name='end' value='<?php echo $project->end;?>' class='text-3' /></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->team;?></th>
<th class='rowhead'><?php echo $lang->project->teamname;?></th>
<td><input type='text' name='team' value='<?php echo $project->team;?>' class='text-3' /></td>
</tr>
<tr>
+2 -2
View File
@@ -76,8 +76,8 @@
?>
</td>
<td>
<?php if(common::hasPriv('task', 'edit')) echo html::a($this->createLink('task', 'edit', "taskid=$task->id"), $lang->task->edit);?>
<?php if(common::hasPriv('task', 'delete')) echo html::a($this->createLink('task', 'delete', "projectID=$task->project&taskid=$task->id"), $lang->task->delete, 'hiddenwin');?>
<?php if(common::hasPriv('task', 'edit')) echo html::a($this->createLink('task', 'edit', "taskid=$task->id"), $lang->edit);?>
<?php if(common::hasPriv('task', 'delete')) echo html::a($this->createLink('task', 'delete', "projectID=$task->project&taskid=$task->id"), $lang->delete, 'hiddenwin');?>
</td>
</tr>
<?php endforeach;?>