[Django]-Django websites and changing currency

4👍

You can use django-currencies module for handling multiple currencies in your Django projects. It should be sufficient for 99% of the cases.

http://packages.python.org/django-currencies/

More complex user settings can be stored in User or UserProfile models, depending on your preference where to put additional user data. Discussion is available here:

Extending the User model with custom fields in Django

Leave a comment