Re: TypeError with a Decimal Field

2010-05-04 Thread JonathanB
Yep, see I knew I was doing something simple wrong. The real irony is, returning just the grade was a placeholder till I came up with a better idea of exactly what I wanted there Thank you! On May 4, 9:40 pm, Daniel Roseman wrote: > On May 4, 1:15 pm, JonathanB wrote: > > > > > > > I'm worki

Re: TypeError with a Decimal Field

2010-05-04 Thread Daniel Roseman
On May 4, 1:15 pm, JonathanB wrote: > I'm working on a Grade Book program for my personal use. Here is the > relevant class from my models.py file: > > class Grade(models.Model): >         student = models.ForeignKey(Student) >         assignment = models.ForeignKey(Assignment) >         grade = m