Karen,
Yep, that worked!  I'm now able to send an email that contains .00
instead of .0.

Is there documentation that talks about .2f?  Would it be under Python
or Django documentation?

I'm still having the problem with the admin though.  I guess it's not
that big of an issue since I'm the only person that will see it.  And
even in my admin when I'm viewing all the orders the amount will show
up as 74.00.  However, when I click on that Order then the price in
the amount field will show as 74.0.  I guess that is a setting within
Django that needs changed.  I won't worry about it now.

Thanks for your help

On Oct 17, 1:20 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote:
> Try changing:
>
> phonemes =  "%s \n\n %s" % (pr, myorder)
> to:
>
> phonemes =  "%.2f \n\n %s" % (pr, myorder)
>
> Karen


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