Running my server (python manage.py runserver) yielded this error:
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module na
Sounds like your just missing the mysql-python dependancy for mysql and Django. Don't know how you installed Django though. Use pip or easy_install to install it.
pip install mysql-python
For Django it is recommended to use PostgreSQL though, for development purposes setting up a sqlite database is much, much easier.