diff options
author | Prabhu Ramachandran | 2011-11-14 14:36:13 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2011-11-14 14:36:13 +0530 |
commit | 67e1fa3bc43792028f78161e2c9d04ae97d1ac56 (patch) | |
tree | ba694d71628de2da9b912f41a6733706def12db8 /templates | |
parent | 10b194427d5a14f56257db1eb865b4f2024f414c (diff) | |
download | online_test-67e1fa3bc43792028f78161e2c9d04ae97d1ac56.tar.gz online_test-67e1fa3bc43792028f78161e2c9d04ae97d1ac56.tar.bz2 online_test-67e1fa3bc43792028f78161e2c9d04ae97d1ac56.zip |
ENH: Adding an intro page for users
This page provides instructions and rules to the users of the system.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/exam/intro.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/templates/exam/intro.html b/templates/exam/intro.html new file mode 100644 index 0000000..0d673b3 --- /dev/null +++ b/templates/exam/intro.html @@ -0,0 +1,46 @@ +<h2>Important rules and instructions</h2> + +<p> Welcome <strong>{{user.first_name.title}} {{user.last_name.title}}</strong>, +to the programming quiz! </p> + +<p> +This examination system has been developed with the intention of making you +learn programming and be assessed in an interactive and fun manner. +You will be presented with a series of programming questions and problems that +you will answer online and get immediate feedback for. +</p> + +<p> Here are some important instructions and rules that you should understand +carefully. +</p> + +<ul> + + <li>For any programming questions, you can submit solutions as many times as + you want without a penalty. You may skip questions and solve them later. + </li> + + <li> You <strong>may</strong> use your computer's Python/IPython shell or + an editor to solve + the problem and cut/paste the solution to the web interface. + </li> + + <li> <strong>You are <strong>not allowed</strong> to use any internet + resources, i.e. no google etc.</strong> </li> + + <li> Do not copy or share the questions or answers with anyone until the + exam is complete <strong>for everyone</strong>.</li> + + <li> <strong>All</strong> your attempts at the questions are logged. + Do not try to outsmart and break the testing system. If you do, we know + who you are and we will expell you from the course. You have been warned. + </li> + +</ul> + +<p> We hope you enjoy taking this exam.</p> + +<form action="/exam/start/" method="post" align="center"> +{% csrf_token %} +<input type="submit" name="start" value="Start Exam!"> +</form> |