Jake,
No I didn't.  When I tried the  'floatformat:2' I made sure that my
model fields were of type FloatField.  When I do use the 'floatformat:
3' and view the template.  I notice that in my error message my for
statement is highlighted:

TypeError at /rugs/milliken/border/ionica/
float() argument must be a string or a number

{% for a in thespinfo %} # This line is highlighted red
27      <FORM NAME="form1" method="POST" ACTION="/rugs/cart/addtocart/">
28      <input name="style_id" type="hidden" value="{{thecinfo.id}}">
29      <input name="choice_id" type="hidden" value="{{ a.id }}">
30      <tr>
31      <td>{{ a.size }}</td>
32      <td>${{ a.price|floatformat:2 }}</td>
33      <td>

Also, here is my floatfield in my models.py file.  This is the field
that I'm doing the 'floatformat:2' on.

name = models.FloatField()

Thanks


Line 26 is what is highlighted red.

Thanks

On Aug 19, 11:36 pm, jake <[EMAIL PROTECTED]> wrote:
> hi greg,
>
> just checking - did you try both at once? ie DecimalField in your model
> and |floatformat:2 in your template.
>
> -jake
>
> Greg wrote:
> > Vincent and James,
> > I tired both of your suggestions and I couldn't get either to work.
>
> > First, still using my prices as FloatFields.  I added the following to
> > my template: {{ a.price|floatformat:2 }}.  When I tried this I got the
> > following error:
>
> > TypeError
> > float() argument must be a string or a number
>
> > 2) I changed my price fields to Decimal Fields listed below:
>
> > models.DecimalField(max_digits=6, decimal_places=2)
>
> > However, the prices are still displayed without the decimal values for
> > prices that end with 00.
>
> > Thanks


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