Jake and Zerek,
I will able to fix the problem thanks to your suggestions. It turns
out that instead of using 'a.price' I have to use 'a.price.name'.
Below is my model code:

class Price(models.Model):
    name = models.DecimalField(max_digits=6, decimal_places=2)
    price_cat = models.ForeignKey(PriceCategory)

    def __str__(self,):
        return str(self.name)

    class Admin:
        pass

class Choice(models.Model):
    choice = models.ForeignKey(Collection, edit_inline=models.TABULAR,
num_in_admin=5)
    size = models.ForeignKey(Size, core=True)
    price = models.ForeignKey(Price, core=True)

/////////////////

My for loop in my template contained all of my choices that fit the
criteria.  Notice how 'price' is a ForeignKey to the Price class.
We'll when I did a 'a.price' I guess that was returning a string based
on 'def __str__(self,): return str(self.name)'.  So in my template I
changed it to a.price.name and it works.  The two zeros now appear.

Thanks for your help



On Aug 20, 2:14 pm, jake <[EMAIL PROTECTED]> wrote:
> hi greg,
>
> Greg wrote:
> > Jake,
> > I've made the change to where both of my fields are now of type
> > DecimalField.  However, I'm getting the same error:
>
> > TypeError
> > float() argument must be a string or a number
> > Here is what I have is my models file:
>
> > models.DecimalField(max_digits=6, decimal_places=2)
>
> it looks to me like your 'price' field is passing a None to the filter.
>  this can easily happen if you have a null value in the price column.
> the model specification you gave here wouldn't allow that, but have you
> been altering the actual database records & table structure to keep up
> with your model changes?  the template may be trying to render null data
> from an insert prior to your model change.
>
> -jake


--~--~---------~--~----~------------~-------~--~----~
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