diff --git a/django/didgeridoo/currencies/models.py b/django/didgeridoo/currencies/models.py index 3331c3f..f698a79 100644 --- a/django/didgeridoo/currencies/models.py +++ b/django/didgeridoo/currencies/models.py @@ -23,7 +23,7 @@ class ExchangeRate(models.Model): def exchange(_currency_id, _base_currency): rate = ExchangeRate.objects.filter(name=_currency_id).latest('date') - return round(rate.exchange_rate_to_chf * _base_currency,2) + return round(rate.exchange_rate_to_chf * _base_currency, 2) def __str__(self): - return str(self.name) + return '{} {}'.format(self.exchange_rate_to_chf, self.name)