Generally speaking my impression is most people next to their settings.py 
file have a "templates" folder. This folder of templates is for templates 
used across the site. If you are talking app specific then a "templates" 
folder inside that app is reasonable enough.
 
So for generic templates here it is:
 
myproject/
     myproject/
          settings.py
          wsgi.py
          urls.py
          static/
          templates/
 
and so on and then for app it is:
 
myproject/
     myproject/
          myapp/
                models.py
                views.py
                templates/
          settings.py
          wsgi.py
          urls.py
          static/
          templates/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c05c4505-e0e3-4159-9187-ff9323261896%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to