static files + index.html dynamic usign django

2010-08-24 Thread malo29
Hi, I'm wondering how to solve this problem: I have a directory containing static files to serve using django (during development), but I want the index.html file in that directory to be created using a django view. Is it possible to mix static and dynamic content in the same directory using djan

Re: static files + index.html dynamic usign django

2010-08-24 Thread Piotr Kilczuk
Hi, > Is it possible to mix static and dynamic content in the same directory > using django? Yes :) At least as far as I understand your goal. Basic urlconf stuff - matter of order. P.S. Don't think about URLs as directories. Regards, Piotr -- You received this message because you are subsc

Re: static files + index.html dynamic usign django

2010-08-24 Thread Javier Guerra Giraldez
On Tue, Aug 24, 2010 at 7:33 AM, Piotr Kilczuk wrote: > P.S. Don't think about URLs as directories. +1 -- Javier -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscri

Re: static files + index.html dynamic usign django

2010-08-26 Thread malo29
Thank you, problem solved. On 24 Ago, 14:33, Piotr Kilczuk wrote: > Hi, > > > Is it possible to mix static anddynamiccontent in the same directory > > using django? > > Yes :) At least as far as I understand your goal. > > Basic urlconf stuff - matter of order. > > P.S. Don't think about URLs as