Commit 5e48962b by aa.gusti

kinerja

1 parent ad063815
...@@ -42,11 +42,11 @@ ...@@ -42,11 +42,11 @@
display: block; display: block;
margin-top: 5px; margin-top: 5px;
padding-top:10px; padding-top:10px;
font-size: 20px; font-size: 15px;
font-weight: bold; font-weight: bold;
color: rgb(255, 255, 255); color: rgb(255, 255, 255);
background-color:rgb(128, 196, 28); background-color:rgb(128, 196, 28);
height: 50px; height: 40px;
border-bottom:2px solid #000000; border-bottom:2px solid #000000;
} }
.table-title-right { .table-title-right {
...@@ -57,9 +57,9 @@ ...@@ -57,9 +57,9 @@
.table-body, .table-body-right, .table-body-event, .table-body-event-right, .table-body, .table-body-right, .table-body-event, .table-body-event-right,
.sub-total, .sub-total-right { .sub-total, .sub-total-right {
padding-top:10px; padding-top:10px;
font-size: 20px; font-size: 15px;
font-weight: bold; font-weight: bold;
height: 50px; height: 40px;
background-color:rgb(175, 175, 175); background-color:rgb(175, 175, 175);
border-bottom:2px solid #000000; border-bottom:2px solid #000000;
} }
......
...@@ -18,11 +18,11 @@ ...@@ -18,11 +18,11 @@
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col-md-5 table-title bg-success"><b>URAIAN</b></div> <div class="col-md-5 table-title"><b>URAIAN</b></div>
<div class="col-md-2 table-title bg-success " style="text-align:right;">ANGGARAN</div> <div class="col-md-2 table-title-right">ANGGARAN</div>
<div class="col-md-2 table-title bg-success " style="text-align:right;"><right><b>REALISASI</b></right></div> <div class="col-md-2 table-title-right">REALISASI</div>
<div class="col-md-2 table-title bg-success " style="text-align:right;"><right><b>SALDO</b></right></div> <div class="col-md-2 table-title-right">SALDO</div>
<div class="col-md-1 table-title bg-success " style="text-align:right;"><right><b>(%)</b></right></div> <div class="col-md-1 table-title-right">(%)</div>
</div> </div>
<div class="row" tal:repeat="row ar_rows"> <div class="row" tal:repeat="row ar_rows">
...@@ -31,13 +31,13 @@ ...@@ -31,13 +31,13 @@
${row.nama} ${row.nama}
</div> </div>
<div class="col-md-2 table-body-right"> <div class="col-md-2 table-body-right">
${row.anggaran} ${thousand(row.anggaran,0)}
</div> </div>
<div class="col-md-2 table-body-right"> <div class="col-md-2 table-body-right">
${row.realisasi} ${thousand(row.realisasi,0)}
</div> </div>
<div class="col-md-2 table-body-right"> <div class="col-md-2 table-body-right">
${row.anggaran - row.realisasi} ${thousand(row.anggaran - row.realisasi,0)}
</div> </div>
<div class="col-md-1 table-body-right"> <div class="col-md-1 table-body-right">
<tal:block tal:condition="row.anggaran==0"> <tal:block tal:condition="row.anggaran==0">
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!