kinerja.pt
7.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<html metal:use-macro="load: base-eis.pt">
<div metal:fill-slot="scripts">
<div class="container">
<div class="row judul">
<div class="col-md-2 judul">
<img class="" src="/static/img/logo.png" style="height:80px; width:80px; padding-bottom:10px;">
</div>
<div class="col-md-8 judul">
KINERJA APBD<br>
TAHUN ${request.session['tahun']}
</div>
</div>
<div class="row">
<div class="col-md-12 sub-judul bg-primary">
${title}
</div>
</div>
<div class="row">
<div class="col-md-5 table-title bg-success"><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 bg-success " style="text-align:right;"><right><b>REALISASI</b></right></div>
<div class="col-md-2 table-title bg-success " style="text-align:right;"><right><b>SALDO</b></right></div>
<div class="col-md-1 table-title bg-success " style="text-align:right;"><right><b>(%)</b></right></div>
</div>
<div class="row" tal:repeat="row ar_rows">
<div tal:condition="float(row.level_id/2.0)!=float(row.level_id//2.0)">
<div class="col-md-5 table-body bg-info">
<a href="/eis/sipkd/kinerja?kode=${row.kode}&nama=${row.nama}">${row.nama}</a>
</div>
<div class="col-md-2 table-body-right bg-info">
${row.anggaran}
</div>
<div class="col-md-2 table-body-right bg-info">
${row.realisasi}
</div>
<div class="col-md-2 table-body-right bg-info">
${row.anggaran - row.realisasi}
</div>
<div class="col-md-1 table-body-right bg-info">
<tal:block tal:condition="row.anggaran==0">
100
</tal:block>
<tal:block tal:condition="row.anggaran!=0">
${round(row.realisasi/row.anggaran*100,0)}
</tal:block>
</div>
</div>
<div tal:condition="float(row.level_id/2.0)==float(row.level_id//2.0)">
<div class="col-md-5 table-body bg-warning">
<a href="/eis/sipkd/kinerja?kode=${row.kode}&nama=${row.nama}">${row.nama}</a>
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.anggaran,0)}
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.realisasi,0)}
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.anggaran - row.realisasi,0)}
</div>
<div class="col-md-1 table-body-right bg-warning">
<tal:block tal:condition="row.anggaran==0">
100
</tal:block>
<tal:block tal:condition="row.anggaran!=0">
${round(row.realisasi/row.anggaran*100,0)}
</tal:block>
</div>
</div>
</div>
<div class="row" tal:repeat="row ap_rows">
<div tal:condition="float(row.level_id/2.0)!=float(row.level_id//2.0)">
<div class="col-md-5 table-body bg-info">
<a href="/eis/sipkd/kinerja?kode=${row.kode}&nama=${row.nama}">${row.nama}</a>
</div>
<div class="col-md-2 table-body-right bg-info">
${thousand(row.anggaran,0)}
</div>
<div class="col-md-2 table-body-right bg-info">
${thousand(row.realisasi,0)}
</div>
<div class="col-md-2 table-body-right bg-info">
${thousand(row.anggaran - row.realisasi,0)}
</div>
<div class="col-md-1 table-body-right bg-info">
<tal:block tal:condition="row.anggaran==0">
100
</tal:block>
<tal:block tal:condition="row.anggaran!=0">
${round(row.realisasi/row.anggaran*100,0)}
</tal:block>
</div>
</div>
<div tal:condition="float(row.level_id/2.0)==float(row.level_id//2.0)">
<div class="col-md-5 table-body bg-warning">
<a href="/eis/sipkd/kinerja?kode=${row.kode}&nama=${row.nama}">${row.nama}</a>
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.anggaran,0)}
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.realisasi,0)}
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.anggaran - row.realisasi,0)}
</div>
<div class="col-md-1 table-body-right bg-warning">
<tal:block tal:condition="row.anggaran==0">
100
</tal:block>
<tal:block tal:condition="row.anggaran!=0">
${round(row.realisasi/row.anggaran*100,0)}
</tal:block>
</div>
</div>
</div>
<div class="row" tal:condition="level_id<3 and not kode">
<div class="col-md-5 table-body bg-danger" >SURPLUS/DEFISIT</div>
<div class="col-md-2 table-body-right bg-danger">
${thousand(sd_row['anggaran'],0)}
</div>
<div class="col-md-2 table-body-right bg-danger">
${thousand(sd_row['realisasi'],0)}
</div>
<div class="col-md-2 table-body-right bg-danger">
${thousand(sd_row['anggaran']-sd_row['realisasi'],0)}
</div>
<div class="col-md-1 table-body-right bg-danger">
<tal:block tal:condition="sd_row['anggaran']==0">
100
</tal:block>
<tal:block tal:condition="sd_row['anggaran']!=0">
${round(sd_row['realisasi']/sd_row['anggaran']*100,0)}
</tal:block>
</div>
</div>
<div class="row" tal:repeat="row pb_rows">
<div tal:condition="float(row.level_id/2.0)!=float(row.level_id//2.0)">
<div class="col-md-5 table-body bg-info">
<a href="/eis/sipkd/kinerja?kode=${row.kode}&nama=${row.nama}">${row.nama}</a>
</div>
<div class="col-md-2 table-body-right bg-info">
${thousand(row.anggaran,0)}
</div>
<div class="col-md-2 table-body-right bg-info">
${thousand(row.realisasi,0)}
</div>
<div class="col-md-2 table-body-right bg-info">
${thousand(row.anggaran - row.realisasi,0)}
</div>
<div class="col-md-1 table-body-right bg-info">
<tal:block tal:condition="row.anggaran==0">
100
</tal:block>
<tal:block tal:condition="row.anggaran!=0">
${round(row.realisasi/row.anggaran*100,0)}
</tal:block>
</div> </div>
<div tal:condition="float(row.level_id/2.0)==float(row.level_id//2.0)">
<div class="col-md-5 table-body bg-warning">
<a href="/eis/sipkd/kinerja?kode=${row.kode}&nama=${row.nama}">${row.nama}</a>
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.anggaran,0)}
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.realisasi,0)}
</div>
<div class="col-md-2 table-body-right bg-warning">
${thousand(row.anggaran - row.realisasi,0)}
</div>
<div class="col-md-1 table-body-right bg-warning">
<tal:block tal:condition="row.anggaran==0">
100
</tal:block>
<tal:block tal:condition="row.anggaran!=0">
${round(row.realisasi/row.anggaran*100,0)}
</tal:block>
</div> </div>
</div>
</div>
</div>
</html>