+ add type of project.

This commit is contained in:
zhujinyong
2013-01-21 02:06:26 +00:00
parent fe729868bd
commit d654b08e66
5 changed files with 20 additions and 0 deletions
+4
View File
@@ -60,6 +60,10 @@ $lang->project->putoff = 'Putoff';
$lang->project->suspend = 'Suspend';
$lang->project->close = 'Close';
$lang->project->typeList['sprint'] = 'Sprint';
$lang->project->typeList['waterfall'] = 'Waterfall';
$lang->project->typeList['ops'] = 'OPS';
$lang->project->endList[14] = 'Two Weeks';
$lang->project->endList[31] = 'One Month';
$lang->project->endList[62] = 'Two Months';
+4
View File
@@ -60,6 +60,10 @@ $lang->project->putoff = '延期';
$lang->project->suspend = '挂起';
$lang->project->close = '结束';
$lang->project->typeList['sprint'] = '短期迭代';
$lang->project->typeList['waterfall'] = '长期项目';
$lang->project->typeList['ops'] = '运营项目';
$lang->project->endList[14] = '两星期';
$lang->project->endList[31] = '一个月';
$lang->project->endList[62] = '两个月';
+4
View File
@@ -72,6 +72,10 @@ $(document).ready(function()
<th class='rowhead'><?php echo $lang->project->teamname;?></th>
<td><?php echo html::input('team', $team, "class='text-3'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->type;?></th>
<td><?php echo html::select('type', $lang->project->typeList, '', "class='text-2'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->manageProducts;?></th>
<td id='productsBox'><?php echo html::checkbox("products", $allProducts, $products);?></td>
+4
View File
@@ -37,6 +37,10 @@
<th class='rowhead'><?php echo $lang->project->days;?></th>
<td><?php echo html::input('days', $project->days, "class='text-3'") . $lang->project->day;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->type;?></th>
<td><?php echo html::select('type', $lang->project->typeList, $project->type, "class='text-2'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->teamname;?></th>
<td><?php echo html::input('team', $project->team, "class='text-3'");?></td>
+4
View File
@@ -74,6 +74,10 @@
<th class='rowhead'><?php echo $lang->project->days;?></th>
<td><?php echo $project->days;?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->type;?></th>
<td><?php echo $lang->project->typeList[$project->type];?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->project->goal;?></th>
<td class='content'><?php echo $project->goal;?></td>