Patrick J. Anderson wrote: > class ExchangeRate(models.Model): > company = ForeignKey(Company) > source = ForeignKey(Currency, related_name = 'source') > destination = ForeignKey(Currency, related_name = 'destination') > rate = FloatField(max_digits = 10, decimal_places = 2) > > class Meta: > db_table = 'company_exchange_rates' > verbose_name = 'exchange rate' > verbose_name_plural = 'exchange rates' > > class Admin: > pass > > > What should I use to describe an ExhangeRate object in __str__ ?
It's all up to you: what would you like to be displayed when you output exchange rates in templates, in python prompt. It can look like this: def __str__(self): return '%s/%s - %0.2f' % (self.source, self.destination, self.rate) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---