Re: Using a Custom Manager for date based generic views??

2008-07-06 Thread Rob Hudson
On Jul 6, 3:53 pm, Christopher Clarke <[EMAIL PROTECTED]> wrote: > class IssuerManaager(models.Manager): > >      def with_aggs(self): >          from django.db import connection >          cursor=connection.cursor() >          cursor.execute(""" >              select i.id,max(i.name), m.dateix

Re: Using a Custom Manager for date based generic views??

2008-07-06 Thread Milan Andric
On Sun, Jul 6, 2008 at 5:53 PM, Christopher Clarke <[EMAIL PROTECTED]> wrote: > Hi Guys > I'm building a django based system for a company that monitors the mutuals > funds industry > We have Mutual Funds Companies (Issuer) who have one or more funds (Fund) > and every month the funds submit a

Using a Custom Manager for date based generic views??

2008-07-06 Thread Christopher Clarke
Hi Guys I'm building a django based system for a company that monitors the mutuals funds industry We have Mutual Funds Companies (Issuer) who have one or more funds (Fund) and every month the funds submit a volume report Here is a simplified version class