django-site
|
------ trunk/
|
------ myproject/
| |
| ------ __init__.py
| |
| ------ initial_data.json
| |
| ------ manage.py
| |
| ------ settings.py
| |
| ------ urls.py
| |
| ------ views.py
| |
| ------ myapp1/
| | |
| | ------ __init__.py
| | |
| | ------ models.py
| | |
| | ------ views.py
| |
| ------ myapp2/
| | |
| | ------ __init__.py
| | |
| | ------ models.py
| | |
| | ------ views.py
| |
| ------ templatetags/
| |
| ------ __init__.py
| |
| ------ mytemplatetag.py
|
------ static/
| |
| ------ mediafiles/
|
------ templates/
|
------ admin/
| |
| ------ base_site.html
|
------ base.html
Note: since I serve my static content from a separate server dedicated to serving static content, I remove the folder from the mysite project but keep it within the same trunk. Also, moving the templates outside of the project and application code.
Replace 'myproject' with the actual project name and 'myapp' (both 1 and 2) with the actual application name!
UPDATED:
2008-11-22 -- Clarification
2008-12-22 -- Added Initial Data. See http://docs.djangoproject.com/en/dev/howto/initial-data/
2008-12-28 -- Added templatetags folder

