Try surround the values of the constants with Decimal("x"), like:
APLUS = Decimal("4.33") A = Decimal("4") AMINUS = Decimal("3.67") ... On Feb 2, 4:58 pm, raj <rajeeshrn...@gmail.com> wrote: > To populate a ModelMultipleChoiceField of a ModelForm I'd used a hack > similar to Shawn's initial suggestion. So I hope this will work: > > Add to your modelform: > > def __init__(self, whatever_there_are_as_args): > super() # with usual syntax and required_args > if instance is not None and self.initial is not None: > self.initial.update({'hp_grade':instance.hp_grade}) > elif instance is not None: > self.initial = {'hp_grade':instance.hp_grade} > > I haven't tested this specific lines but the original code works for > me. > > Rajeesh. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.