+ add type of project.
This commit is contained in:
@@ -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';
|
||||
|
||||
@@ -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] = '两个月';
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user