I want to convert currencies in my Django app. I created a model Customer. In customer model, there are two fields for that credit_limit and currency_choice. I am using django-money for conversion. But I get an error: MissingRate at /customer Rate GBP -> USD does not exist How can I solve it? views.py: models.py: settings.py: traceback: Answer I took a