Re: about templatetags

2009-01-01 Thread Russell Keith-Magee
On Fri, Jan 2, 2009 at 1:01 AM, Alan wrote: > Hi Russell > Thank you very much for your explanation. > I understand that being an apps reusable, should it be so its templatetags > and so, probably, the best place is in apps folder. > However, in my case, where all my apps

Re: about templatetags

2009-01-01 Thread Fatrix
Hi For the organisation matter you could create an app called "core" or whatever, in it you can place all the general stuff. CU, Fatrix --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: about templatetags

2009-01-01 Thread Alan
Hi Russell Thank you very much for your explanation. I understand that being an apps reusable, should it be so its templatetags and so, probably, the best place is in apps folder. However, in my case, where all my apps needs the same templatetags, I would like to have the option of defining

Re: about templatetags

2008-12-31 Thread Russell Keith-Magee
On Thu, Jan 1, 2009 at 8:18 AM, Alan wrote: > Happy new year List! > So, I have in a project several apps and they basically use the same > templatetags. I found out by luck that I just need to define it in one > application, something like: > app1/ > models.py > ... >

about templatetags

2008-12-31 Thread Alan
Happy new year List! So, I have in a project several apps and they basically use the same templatetags. I found out by luck that I just need to define it in one application, something like: app1/ models.py ... app2/ templatetags/mytags.py models.py ... and app1 will use mytags. Is my inference