testappproj/templates/index.html~
author amit@thunder
Mon, 17 May 2010 22:33:59 +0530
changeset 0 0b061d58aea3
permissions -rw-r--r--
First commit to Fossee of testapp has the basic Pykata framework on django with some specific changes to Problems model and some views to suit an exam like system

{%extends "base.html"%}
{%block body%}

<p><b>Welcome</b> to PyKata ... the website for Python practice. Learning Python is a skill.
It takes practice, not just an understanding of the theory. In fact, you can learn
basic Python without any theory. Just read the help pages if you get stuck. Start
with the easy problems first.  Some of these have hints, or even a complete solution.
&nbsp;&nbsp; <big><a href="/vision">vision statement</a></big>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <big><a href="/statements">teacher statements</a></big>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <big><a href="/static/manifesto.py.txt">manifesto</a></big></p>

<p><b>About Python</b> ... Python is a modern mainstream computer language, much like Java
and C++, but simpler. It's the closest thing we could find to pseudocode, the language used
by scientists when they want to express an idea involving computation.</p>

<p>You don't have to take an entire course in programming to learn Python. Every high-school
graduate, certainly anyone considering a career in technology, should know how to write a
simple program. Python makes that possible.  PyKata is the best way to learn Python.</p>

<h2>Problem Categories</h2>
<ul>
  <li><a href="/category/simple">simple</a></li>
  <li><a href="/category/logic">logic</a></li>
  <li><a href="/category/list">list</a></li>
  <li><a href="/category/strings">strings</a></li>
  <li><a href="/category/math">math</a></li>
  <li><a href="/category/loops">loops</a></li>
  <li><a href="/category/recursion">recursion</a></li>
  <li><a href="/category/oop">oop</a></li>
</ul>

<h3>News</h3>
<ol>
  <li>You can now save your work-in-progress. When solving an exercise, hitting Run automatically saves your work.</li>
  <li>Progress indicators: We now show which problems you have solved.</li>
</ol>

<h3>This site is still under development.  Coming Soon:</h3>
<ul>
  <li>Teacher report to view a student's progress
      &nbsp;&nbsp;&nbsp;<a href="/static/T_report.htm">Mockup</a></li>
  <li>More content!!</li>
</ul>

{%endblock%}