def nilai_penilaian(mapel): data_mapel = kurtilas_db.getMapel(mapel=mapel) siswa = kurtilas_db.getSiswa() return render_template("kurtilas/nilai/ubah.html", siswa=siswa, mapel=mapel.split('_')[1], data_mapel=data_mapel)
def mapel_ubah(mapel): data = kurtilas_db.getMapel(mapel=mapel) return render_template("kurtilas/mapel/ubah.html", mapel=mapel, data_mapel=data)
def nilai_index(): data = kurtilas_db.getMapel() return render_template("kurtilas/nilai/index.html", mapel=data)
def mapel_lihat(mapel): data = kurtilas_db.getMapel(mapel=mapel) return render_template("kurtilas/mapel/lihat.html", mapel=mapel, data_mapel=data)