diff options
Diffstat (limited to 'tpl/study/batch.php')
-rw-r--r-- | tpl/study/batch.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tpl/study/batch.php b/tpl/study/batch.php new file mode 100644 index 0000000..666fdc8 --- /dev/null +++ b/tpl/study/batch.php @@ -0,0 +1,20 @@ +<?php + +$title = $info['uname'] . ':' . $info['lname'] . ' - ' . $info['bname']; + +$javascript = "\n\nconst batch_data = " . $info['json_data'] . ";\n\nconst reviews_data = $reviews;\n\n"; +$js_include = array("js/prototype.js", "js/liststudy.js"); +$onload_js = 'show_batch_table();'; + +require("tpl/general/top.php"); + +echo '<div class="small_right"><a href="batchreview-study-' . $info['batchid'] . '">test now</a></div>'; + +echo '<h2>Items in this list</h2>'; +echo '<div id="items">Please wait, processing...</div>'; +echo '<h2>Reviews</h2>'; +echo '<div id="reviews">Please wait, processing...</div>'; + +require("tpl/study/lib_sidebar.php"); +require("tpl/general/bottom.php"); + |