diff options
Diffstat (limited to 'tpl/study')
-rw-r--r-- | tpl/study/batch.php | 5 | ||||
-rw-r--r-- | tpl/study/batch_review.php | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/tpl/study/batch.php b/tpl/study/batch.php index 666fdc8..842deaa 100644 --- a/tpl/study/batch.php +++ b/tpl/study/batch.php @@ -2,7 +2,10 @@ $title = $info['uname'] . ':' . $info['lname'] . ' - ' . $info['bname']; -$javascript = "\n\nconst batch_data = " . $info['json_data'] . ";\n\nconst reviews_data = $reviews;\n\n"; +$javascript = "\nconst batchid = " . $info['batchid'] . "\n\n". + "const batch_data = " . $info['json_data'] . ";\n\n". + "const reviews_data = $reviews;\n\n". + "var notes = " . $info['notes'] . ";\n\n"; $js_include = array("js/prototype.js", "js/liststudy.js"); $onload_js = 'show_batch_table();'; diff --git a/tpl/study/batch_review.php b/tpl/study/batch_review.php index ed81b75..abe1944 100644 --- a/tpl/study/batch_review.php +++ b/tpl/study/batch_review.php @@ -2,7 +2,9 @@ $title = "Testing " . $info['uname'] . ':' . $info['lname'] . ' - ' . $info['bname']; -$javascript = "\n\nconst batchid = " . $info['batchid'] . "\nconst batch_data = " . $info['json_data'] . ";\n\n"; +$javascript = "\n\nconst batchid = " . $info['batchid'] . "\n". + "const batch_data = " . $info['json_data'] . ";\n\n". + "var notes = " . $info['notes'] . ";\n\n"; $js_include = array("js/prototype.js", "js/reviewdesu.js"); $onload_js = 'start_review();'; |