diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-11-20 13:39:47 +0100 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-11-20 13:39:47 +0100 |
commit | d45c7f14891d951f8a6987cc6492073b97e05b5b (patch) | |
tree | d6467b1202c27f67fd8e894d25fd4aea0085b559 /tpl/study/batch_review.php | |
parent | 4d7e065c2d2ec407b6a7ebfc7569628bac9149d1 (diff) | |
download | Bits-d45c7f14891d951f8a6987cc6492073b97e05b5b.tar.gz Bits-d45c7f14891d951f8a6987cc6492073b97e05b5b.zip |
Added the bit list study system
Diffstat (limited to 'tpl/study/batch_review.php')
-rw-r--r-- | tpl/study/batch_review.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tpl/study/batch_review.php b/tpl/study/batch_review.php new file mode 100644 index 0000000..ed81b75 --- /dev/null +++ b/tpl/study/batch_review.php @@ -0,0 +1,13 @@ +<?php + +$title = "Testing " . $info['uname'] . ':' . $info['lname'] . ' - ' . $info['bname']; + +$javascript = "\n\nconst batchid = " . $info['batchid'] . "\nconst batch_data = " . $info['json_data'] . ";\n\n"; +$js_include = array("js/prototype.js", "js/reviewdesu.js"); +$onload_js = 'start_review();'; + +require("tpl/general/top.php"); + +echo '<div id="core">Please wait, processing...</div>'; + +require("tpl/general/bottom.php"); |