Re: What's the django convention for templates?

2011-12-10 Thread Torsten Bronger
Hallöchen! Torsten Bronger writes: > [...] If someone wants to create a local variation of a template, > he simply creates > > my_app_local/templates/my_app/my_view.html > > and puts my_app_local instead of my_app into INSTALLED_APPS. Sorry, this was rubbish. It must read: "... and puts

Re: What's the django convention for templates?

2011-12-10 Thread Torsten Bronger
Hallöchen! Mauro writes: > [...] > > Following the djangobook I've build a projects who has the following > strurcture: > > projects | > --- > | __init__.py > | manage.py > | settings.py > | urls.py

Re: What's the django convention for templates?

2011-12-10 Thread Mauro
Thank you :) -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/LCxQRS7kTnkJ. To post to this group, send email to django-users@googlegroups.com. To

Re: What's the django convention for templates?

2011-12-09 Thread Vovk Donets
> > > As you can see the templates directory is stored inside the app directory. > > Reading the django documentation instead they says that the templates dir > should live inside the root directory of the projects. > > I'm wondering, what's is the common convention about it? > > I thought to

What's the django convention for templates?

2011-12-09 Thread Mauro
Hello, I'm totally new in the django universe and I'm trying out to build a little project. There are many days who I'm following many tutorial on django framework. But it's not clear for me how the convention for templates is. Following the djangobook I've build a projects who has the