-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
673 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
Catatan Rilis v2409.0.0 : | ||
Catatan Rilis v2410.0.0 : | ||
|
||
### FITUR : | ||
1. Penambahan halaman stunting. (premium) | ||
2. Penambahan filter bantuan berdasarkan tahun. (premium) | ||
|
||
#### BUG : | ||
1. Perbaikan tampilan halaman artikel. | ||
1. Perbaikan tampilan halaman peta. | ||
|
||
### TEKNIS : | ||
1. Penyesuaian halaman statis. | ||
2. Penyesuaian halaman 404. | ||
3. Penyesuaian judul halaman statistik. | ||
1. Penyesuaian sebutan kepala dusun. (premium) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php defined('BASEPATH') || exit('No direct script access allowed'); ?> | ||
|
||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml"> | ||
<head> | ||
<?php $this->load->view("$folder_themes/commons/meta"); ?> | ||
</head> | ||
<body onLoad="renderDate()"> | ||
<a class="scrollToTop" href="#"><i class="fa fa-angle-up"></i></a> | ||
<div class="container" style="background-color: #f6f6f6;"> | ||
<header id="header"> | ||
<?php $this->load->view("$folder_themes/partials/header"); ?> | ||
</header> | ||
<div id="navarea"> | ||
<?php $this->load->view("$folder_themes/partials/menu_head"); ?> | ||
</div> | ||
<div class="row"> | ||
<section> | ||
<div class="content_middle"></div> | ||
<div class="content_bottom"> | ||
<?php | ||
if ($tampil) { | ||
$this->load->view($folder_themes . '/partials/kesehatan/index'); | ||
} else { | ||
theme_view('partials/not_found'); | ||
} ?> | ||
</div> | ||
</section> | ||
</div> | ||
</div> | ||
<footer id="footer"> | ||
<?php $this->load->view("$folder_themes/partials/footer_top"); ?> | ||
<?php $this->load->view("$folder_themes/partials/footer_bottom"); ?> | ||
</footer> | ||
<?php $this->load->view("$folder_themes/commons/meta_footer"); ?> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<div class="grid grid-cols-1 container px-3 lg:px-5"> | ||
<div id="chart_posyandu"></div> | ||
</div> | ||
<script> | ||
$(document).ready(function(){ | ||
const posy= Highcharts.chart('chart_posyandu', { | ||
chart: { | ||
type: 'column' | ||
}, | ||
title: { | ||
text: 'Grafik Kasus Stunting per-Posyandu' | ||
}, | ||
xAxis: { | ||
categories: <?= json_encode($chartStuntingPosyanduData['categories']) ?> | ||
}, | ||
yAxis: { | ||
min: 0, | ||
title: { | ||
text: 'Angka Kasus Stunting' | ||
} | ||
}, | ||
colors: ['#028EFA', '#5EE497', '#FDB13B'], | ||
series: <?= json_encode($chartStuntingPosyanduData['data']) ?> | ||
|
||
}) | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<div class="row mt-4"> | ||
<div class="col-md-4 col-sm-12" id="chart_0_5"></div> | ||
<div class="col-md-4 col-sm-12" id="chart_6_11"></div> | ||
<div class="col-md-4 col-sm-12" id="chart_12_23"></div> | ||
</div> | ||
|
||
<script> | ||
$(document).ready(function(){ | ||
<?php foreach($chartStuntingUmurData as $item): ?> | ||
Highcharts.chart('<?= $item['id'] ?>', { | ||
chart: { | ||
type: 'pie' | ||
}, | ||
title: { | ||
text: '<?= $item['title'] ?>' | ||
}, | ||
tooltip: { | ||
valueSuffix: '%' | ||
}, | ||
plotOptions: { | ||
series: { | ||
allowPointSelect: true, | ||
cursor: 'pointer', | ||
colors: ['blue', 'red'], | ||
showInLegend: true, | ||
}, | ||
pie: { | ||
dataLabels: { | ||
enabled: true, | ||
distance: -50, | ||
format: '{point.y:,.1f} %' | ||
} | ||
} | ||
}, | ||
series: [ | ||
{ | ||
type: 'pie', | ||
name: 'percentage', | ||
colorByPoint: true, | ||
data: <?= json_encode($item['data']) ?> | ||
} | ||
] | ||
|
||
}) | ||
|
||
<?php endforeach; ?> | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> | ||
|
||
<div class="box-header"> | ||
<div class="container"> | ||
<h1 class="text-h3"><?= $title; ?></h1> | ||
<form class="form form-inline" action="" method="get"> | ||
<div class="form-group"> | ||
<select name="kuartal" id="kuartal" required class="form-control input-sm" title="Pilih salah satu"> | ||
<?php foreach (kuartal2() as $item): ?> | ||
<option value="<?= $item['ke'] ?>" <?= $item['ke'] == $kuartal ? 'selected' : '' ?>> | ||
Kuartal ke <?= $item['ke'] ?> | ||
(<?= $item['bulan'] ?>) | ||
</option> | ||
<?php endforeach ?> | ||
</select> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<select name="tahun" id="tahun" class="form-control input-sm" title="Pilih salah satu"> | ||
<?php foreach ($dataTahun as $item): ?> | ||
<option value="<?= $item->tahun ?>"><?= $item->tahun ?></option> | ||
<?php endforeach ?> | ||
</select> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<select name="id_posyandu" class="form-control input-sm" title="Pilih salah satu"> | ||
<option value="">Semua</option> | ||
<?php foreach ($posyandu as $item): ?> | ||
<option value="<?= $item->id ?>" <?= $item->id == $idPosyandu ? 'selected' : '' ?>> | ||
<?= $item->nama ?></option> | ||
<?php endforeach ?> | ||
</select> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<button type="submit" class="btn btn-social btn-info btn-sm" id="cari"> | ||
<i class="fa fa-search"></i> Cari | ||
</button> | ||
</div> | ||
|
||
</form> | ||
</div> | ||
<div class="box-body text-sm py-2 space-y-4"> | ||
<?php $this->load->view($folder_themes . '/partials/kesehatan/widget'); ?> | ||
<?php $this->load->view($folder_themes . '/partials/kesehatan/chart_stunting_umur'); ?> | ||
<?php $this->load->view($folder_themes . '/partials/kesehatan/chart_stunting_posyandu'); ?> | ||
<?php $this->load->view($folder_themes . '/partials/kesehatan/scorecard', $scorecard); ?> | ||
</div> | ||
</div> | ||
|
Oops, something went wrong.