First Django site: StopMD5.com

My first Django based site is up! I'm still exploring this whole Django thing and I'm not sure I should leave mod_python debug on, but we'll see. The site is a LOL time-waster called http://stopmd5.com

The site does not require any session or login systems, but I have been able to practice with the email functions. A few problems I encountered where:

  1. I forgot to make 404.html and 500.html templates.
  2. I forgot to run manage.py syncdb
  3. I used "import myapp" instead of "import mysite.myapp". This is no problem when you run the local testserver, but as soon as you try it on the site with only your site root in the sys.path, you run into trouble.

I have no idea about caching etc. yet, so as always there will be more tinkering. Comment or mail if you have suggestions.