Re: Feel free to test queryset-refactor branch

2008-04-17 Thread scott lewis
On 2008-04-17, at 1553, Justin Fagnani wrote: > Hey Malcolm, > > I've been using qs-rf for a while now with basically no problems. > Excellent work. > > There's one thing that may a little odd that I stumbled on while > trying to get some primitive polymorphism working: > > The first thing i

Re: Two sites, one django project

2008-04-10 Thread scott lewis
On 2008-04-10, at 0312, Polat Tuzla wrote: > > Hi, > I'd like to build two sites, say, two polls sites, each having their > own domain name. Their functionalities are almost exactly the same. > They're different only by theme. > [...] > What exact way of achieving this would you suggest me? > Than

Re: Using mod in if in template

2008-03-24 Thread scott lewis
On 2008-03-24, at 1312, Tim Sawyer wrote: > > Hi Folks, > > I want to do this: > > > >{% for image in Images %} > >{{ image.name }} >{{ image.comment }} > > {% if forloop.counter % 4 %} > > > {% endif %} >{% endfor %} > > > > whi