Hi Duncan,

this works for me:

from django.db import models


class Fixture(models.Model):
    #team = models.ForeignKey(Team, "Team", core=True)
    #venue = models.CharField("Venue", maxlength=1,
choices=Fixture_Choices, core=True)
    date = models.DateField("Date", core=True)
    opponent = models.CharField("Opponent", maxlength=100, core=True)
    kickoff = models.TimeField("Kick Off Time")
    #competition = models.ForeignKey(Competition, "Competition", core=True)

    class Admin:
        #list_display = ('date', 'team', 'opponent', 'venue',
'kickoff', 'competition')
        #list_filter = ['date', 'team', 'competition']
        list_display = ('date', 'opponent', 'kickoff')
        list_filter = ['date']
        search_fields = ['date']


class Result(models.Model):
    fixture = models.OneToOneField(Fixture, core=True)
    howdenscore = models.IntegerField("Howden Score", core=True)
    opponentscore = models.IntegerField("Opponent Score", core=True)

    class Admin:
        list_display = ('howdenscore', 'opponentscore',)
        list_filter = ['howdenscore',]
        search_fields = ['howdenscore']


I removed the help text and commented out what you didn't get us. :)

Kai

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to