* Add a prompt for the execution type.
This commit is contained in:
@@ -2,3 +2,5 @@
|
||||
.c-team-name {width: 120px;}
|
||||
.c-project, .c-user, .c-code, .c-desc, .c-days {width: 150px;}
|
||||
.c-method {width: 45px;}
|
||||
.c-type > .icon-help {vertical-align: text-top;}
|
||||
.c-type > .popover .popover-content {font-weight: 400;}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
.c-user {width: 150px !important;}
|
||||
.c-date {width: 125px;}
|
||||
.c-method {width: 60px;}
|
||||
.c-type {width: 130px;}
|
||||
|
||||
@@ -27,3 +27,8 @@ $('#executionForm').on('change input mousedown', '.has-error', function()
|
||||
$(this).parent().find('.text-danger').remove();
|
||||
$(this).removeClass('has-error');
|
||||
})
|
||||
|
||||
$(function()
|
||||
{
|
||||
$('[data-toggle="popover"]').popover();
|
||||
})
|
||||
|
||||
@@ -112,6 +112,8 @@ $(function()
|
||||
{
|
||||
$('.disabledBranch div[id^="branch"]').addClass('chosen-disabled');
|
||||
}
|
||||
|
||||
$('[data-toggle="popover"]').popover();
|
||||
})
|
||||
var lastProjectID = $("#project").val();
|
||||
|
||||
|
||||
@@ -152,7 +152,7 @@ $lang->execution->copyTeamTip = "copy Project/project team members";
|
||||
$lang->execution->daysGreaterProject = 'Days cannot be greater than days of execution 『%s』';
|
||||
$lang->execution->errorHours = 'Hours/Day cannot be greater than『24』';
|
||||
$lang->execution->agileplusMethodTip = 'When creating executions in an Agile Plus project, both Iteration and Kanban management methods are supported.';
|
||||
$lang->execution->typeTip = 'The sub-stages of other types can be created under the parent stage of the "mix" type, while the type of other parent-child levels is consistent.';
|
||||
$lang->execution->typeTip = "The sub-stages of other types can be created under the parent stage of the 'mix' type, while the type of other parent-child levels is consistent.";
|
||||
|
||||
$lang->execution->start = 'Start';
|
||||
$lang->execution->activate = 'Aktivieren';
|
||||
|
||||
@@ -152,7 +152,7 @@ $lang->execution->copyTeamTip = "copy Project/project team members";
|
||||
$lang->execution->daysGreaterProject = 'Days cannot be greater than days of execution 『%s』';
|
||||
$lang->execution->errorHours = 'Hours/Day cannot be greater than『24』';
|
||||
$lang->execution->agileplusMethodTip = 'When creating executions in an Agile Plus project, both Iteration and Kanban management methods are supported.';
|
||||
$lang->execution->typeTip = 'The sub-stages of other types can be created under the parent stage of the "mix" type, while the type of other parent-child levels is consistent.';
|
||||
$lang->execution->typeTip = "The sub-stages of other types can be created under the parent stage of the 'mix' type, while the type of other parent-child levels is consistent.";
|
||||
|
||||
$lang->execution->start = 'Start';
|
||||
$lang->execution->activate = 'Activate';
|
||||
|
||||
@@ -152,7 +152,7 @@ $lang->execution->copyTeamTip = "copy Project/project team members";
|
||||
$lang->execution->daysGreaterProject = 'Days cannot be greater than days of execution 『%s』';
|
||||
$lang->execution->errorHours = 'Hours/Day cannot be greater than『24』';
|
||||
$lang->execution->agileplusMethodTip = 'When creating executions in an Agile Plus project, both Iteration and Kanban management methods are supported.';
|
||||
$lang->execution->typeTip = 'The sub-stages of other types can be created under the parent stage of the "mix" type, while the type of other parent-child levels is consistent.';
|
||||
$lang->execution->typeTip = "The sub-stages of other types can be created under the parent stage of the 'mix' type, while the type of other parent-child levels is consistent.";
|
||||
|
||||
$lang->execution->start = 'Démarrer';
|
||||
$lang->execution->activate = 'Activer';
|
||||
|
||||
@@ -62,7 +62,10 @@
|
||||
<th class='c-user<?php echo zget($visibleFields, 'PO', ' hidden') . zget($requiredFields, 'PO', '', ' required');?>'><?php echo $lang->execution->PO;?></th>
|
||||
<th class='c-user<?php echo zget($visibleFields, 'QD', ' hidden') . zget($requiredFields, 'QD', '', ' required');?>'><?php echo $lang->execution->QD;?></th>
|
||||
<th class='c-user<?php echo zget($visibleFields, 'RD', ' hidden') . zget($requiredFields, 'RD', '', ' required');?>'><?php echo $lang->execution->RD;?></th>
|
||||
<th class='c-type<?php echo zget($visibleFields, 'type', ' hidden') . zget($requiredFields, 'type', '', ' required');?>'><?php echo $lang->execution->$type;?></th>
|
||||
<th class='c-type<?php echo zget($visibleFields, 'type', ' hidden') . zget($requiredFields, 'type', '', ' required');?>'>
|
||||
<?php echo $lang->execution->$type;?>
|
||||
<icon class='icon icon-help' data-toggle='popover' data-trigger='focus hover' data-placement='right' data-tip-class='text-muted popover-sm' data-content="<?php echo $lang->execution->typeTip;?>"></icon>
|
||||
</th>
|
||||
<th class='c-date required'><?php echo $lang->execution->begin;?></th>
|
||||
<th class='c-date required'><?php echo $lang->execution->end;?></th>
|
||||
<th class='c-desc <?php echo zget($visibleFields, 'desc', ' hidden') . zget($requiredFields, 'desc', '', ' required');?>'><?php echo $lang->execution->$desc;?></th>
|
||||
|
||||
@@ -98,6 +98,9 @@
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<td>
|
||||
<icon class='icon icon-help' data-toggle='popover' data-trigger='focus hover' data-placement='right' data-tip-class='text-muted popover-sm' data-content="<?php echo $lang->execution->typeTip;?>"></icon>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endif;?>
|
||||
<tr>
|
||||
|
||||
@@ -57,4 +57,6 @@ $(function()
|
||||
if(!result) return false;
|
||||
}
|
||||
})
|
||||
|
||||
$('[data-toggle="popover"]').popover();
|
||||
})
|
||||
|
||||
@@ -60,6 +60,9 @@
|
||||
<td colspan='2'>
|
||||
<?php echo $enableOptionalAttr ? html::select('attribute', $lang->stage->typeList, $plan->attribute, "class='form-control'") : zget($lang->stage->typeList, $plan->attribute);?>
|
||||
</td>
|
||||
<td>
|
||||
<icon class='icon icon-help' data-toggle='popover' data-trigger='focus hover' data-placement='right' data-tip-class='text-muted popover-sm' data-content="<?php echo $lang->execution->typeTip;?>"></icon>
|
||||
</td>
|
||||
</tr>
|
||||
<?php if($plan->setMilestone):?>
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user