55 lines
2.5 KiB
PHP
55 lines
2.5 KiB
PHP
<style>
|
|
.block-waterfallgeneralreport .col-left {width: 25%; text-align: center;}
|
|
.block-waterfallgeneralreport .col-right {width: 87%;}
|
|
.block-waterfallgeneralreport .panel-body {padding-top: 0;}
|
|
.block-waterfallgeneralreport .table-row {margin-bottom: 20px;}
|
|
<?php if(common::checkNotCN()):?>
|
|
.block-waterfallgeneralreport .stage {position: absolute; top: 14px; left: 140px;}
|
|
<?php else:?>
|
|
.block-waterfallgeneralreport .stage {position: absolute; top: 14px; left: 90px;}
|
|
<?php endif;?>
|
|
.block-waterfallgeneralreport .col-right .tiles {padding: 10px 0 0 16px;}
|
|
.block-waterfallgeneralreport .col-right .tile {width: 20%;}
|
|
.block-waterfallgeneralreport .col-right .tile .tile-title {font-weight: 700;}
|
|
.block-waterfallgeneralreport .progress {position: absolute; left: 45px; top: 90px; right: 40px;}
|
|
.block-waterfallgeneralreport .progress-num {font-size: 20px; font-weight: 700;}
|
|
.block-waterfallgeneralreport .col-right .tile-amount {font-size: 20px;}
|
|
</style>
|
|
|
|
<div class="panel-body conatiner-fluid">
|
|
<div class='table-row'>
|
|
<div class="col col-left hide-in-sm">
|
|
<h4><?php echo $lang->project->progress;?></h4>
|
|
<span class='progress-num'><?php echo $progress . '%';?></span>
|
|
<div class="progress">
|
|
<div class="progress-bar" role="progressbar" aria-valuenow="<?php echo $progress;?>" aria-valuemin="0" aria-valuemax="100" style="width: <?php echo $progress;?>%">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class='col-right'>
|
|
<div class='row tiles'>
|
|
<div class="col tile">
|
|
<div class="tile-title"><?php echo 'PV(' . $lang->programplan->end . ')';?></div>
|
|
<div class="tile-amount"><?php echo $pv == 0 ? 0 : $pv;?></div>
|
|
</div>
|
|
<div class="col tile">
|
|
<div class="tile-title"><?php echo 'EV(' . $lang->programplan->realEnd . ')';?></div>
|
|
<div class="tile-amount"><?php echo $ev == 0 ? 0 : $ev;?></div>
|
|
</div>
|
|
<div class="col tile">
|
|
<div class="tile-title"><?php echo 'AC(' . $lang->programplan->ac . ')';?></div>
|
|
<div class="tile-amount"><?php echo $ac == 0 ? 0 : $ac;?></div>
|
|
</div>
|
|
<div class="col tile">
|
|
<div class="tile-title"><?php echo 'SV(' . $lang->programplan->sv . ')';?></div>
|
|
<div class="tile-amount"><?php echo $sv . '%';?></div>
|
|
</div>
|
|
<div class="col tile">
|
|
<div class="tile-title"><?php echo 'CV(' . $lang->programplan->cv . ')';?></div>
|
|
<div class="tile-amount"><?php echo $cv . '%';?></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|