diff options
author | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-09-18 12:07:29 +0200 |
---|---|---|
committer | Nicolas BERNSTEIN <alexis211@gmail.com> | 2011-09-18 12:07:29 +0200 |
commit | a565e649898c629874ef812a13806b1c384f68e4 (patch) | |
tree | afc03ed12ec7e82ce17bcfff5ba76440ff43eb97 /tpl/study/setrate.php | |
parent | 8d9321225140a3db0b72796d4d0236d6cacfeb8a (diff) | |
download | Bits-a565e649898c629874ef812a13806b1c384f68e4.tar.gz Bits-a565e649898c629874ef812a13806b1c384f68e4.zip |
Added study program. Yay!
Diffstat (limited to 'tpl/study/setrate.php')
-rw-r--r-- | tpl/study/setrate.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tpl/study/setrate.php b/tpl/study/setrate.php new file mode 100644 index 0000000..f632b33 --- /dev/null +++ b/tpl/study/setrate.php @@ -0,0 +1,18 @@ +<?php + +$title = "Change learn rate for " . $study['deckowner'] . ':' . $study['deckname']; +require("tpl/general/top.php"); + +echo '<p><strong>Current learn rate :</strong> ' . $study['learn_rate'] . ' - <a href="deck-study-' . $studyid . '">keep this rate</a></p>'; + +echo '<p>Please choose how much you intend on studying :</p><ul>'; +echo '<li><a href="setrate-study-' . $studyid . '-5">Just a tiny bit (5)</a></li>'; +echo '<li><a href="setrate-study-' . $studyid . '-10">A little (10)</a></li>'; +echo '<li><a href="setrate-study-' . $studyid . '-15">Some (15)</a></li>'; +echo '<li><a href="setrate-study-' . $studyid . '-20">A lot (20)</a></li>'; +echo '<li><a href="setrate-study-' . $studyid . '-30">A real lot (30)</a></li>'; +echo '<li><a href="#" onclick="if (rate = prompt(\'Desired learn rate :\', 10)) { window.location = \'setrate-study-' . $studyid . '-\' + rate; }">Custom</a></li>'; +echo '</ul>'; + +require ("lib_sidebar.php"); +require("tpl/general/bottom.php"); |