There are different ways to structure your project, but if you want to
use the database you have to create at least one app which you add to
INSTALLED_APPS in the settings. You can split the functionality in
multiple apps for easier reuse (often called reusable apps), but
keeping it in one app is simpler in the beginning.
> How do I put this in order?
> 1.url
> 2. view
> 3.model
> 4. template
> 5. admin
> 6. settings
I suggest to closely follow the official tutorial on djangoproject.com
and to use the "django-admin.py startproject" and "python manage.py
startapp" commands. They will create an initial structure to get you
started.
A word of caution: the recommended project structure changes from the
current Django 1.3 to the upcoming Django 1.4. Make sure you look at
the right version of the documentation.
-- Daniel