Проделал следующие шаги:
- в сктингсы добавил:
USE_L10N = True
LANGUAGE_CODE = 'de'
USE_I18N = True
DECIMAL_SEPARATOR = ','
from django.conf.global_settings import DECIMAL_SEPARATOR
balance = models.DecimalField(max_digits = 6, decimal_places = 2)
в результате чего вылетала следующая ошибка:
File "/home/max/python/herbal/env_herbal/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 752, in __init__
Field.__init__(self, verbose_name, name, **kwargs)
TypeError: __init__() got an unexpected keyword argument 'localize'