Hi All,

I'm new to this list and maybe i'm asking a question which might have 
passed here already, but i couldn't find a answer on the archives.

I have a Model which holds a list of people :

This is the most important info out of that model:

class Members(models.Model):
    MemberId = models.AutoField(primary_key=True)
    MemberFirstName = 
models.CharField(blank=True,max_length=200,verbose_name='Voornaam')
    MemberLastName = 
models.CharField(blank=True,max_length=200,verbose_name='Familienaam')
    MemberStreet = 
models.CharField(blank=True,max_length=200,verbose_name='Straat')
    MemberHouseNumber = 
models.CharField(blank=True,max_length=6,verbose_name='Huisnummer')
    MemberBusNumber = models.SmallIntegerField(blank=True,verbose_name='Bus')
    MemberPostalCode = 
models.SmallIntegerField(blank=True,verbose_name='Postcode')
    MemberTown = 
models.CharField(blank=True,max_length=200,verbose_name='Stad/Gemeente')
    MemberBirthday = 
models.DateField(verbose_name='Geboortedatum',default=datetime.date.today)
    MemberAssociation = 
models.CharField(max_length=10,choices=FederationChoices,blank=True,null=True,verbose_name='Aangesloten
 Federatie')
    MemberOfficialRegNumber = 
models.CharField(blank=True,max_length=20,verbose_name='VVB/VLM 
Aansluitingsnummer')

I want to serve to my staff members a page with some statistics from the 
data in this model like:
- How many people between 0 and 18 years old
- How many people within a specific Postal Code
- How many people with active subscriptions to the official volleybal 
federation

And combinations of the above.

This still is not really a problem, the hard part is that I want to 
integrate that into a page shown in the admin interface as a link or 
semi static page.

I know it's abusing the admin a little, but I presume it must be possible.

Thanks for your answer !!

Wim





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to