django-localized-fields icon indicating copy to clipboard operation
django-localized-fields copied to clipboard

Implementation of localized model fields using PostgreSQL HStore fields.

Results 7 django-localized-fields issues
Sort by recently updated
recently updated
newest added

Is there any way to make localized field unique together with another field?

The type check on line 56 in descriptor.py is bogus and it causes a few related issues. The main one being is that you can't set a value for a...

Adding the name of a localized field to the `readonly_fields` list in django admin is causing the field to be displayed using the default language only.

enhancement

Here are some benchmarks comparing the `LocalizeValue` with accessing a `dict` element: ``` Line # Hits Time Per Hit % Time Line Contents 280 112864 2373159.0 21.0 43.4 'location': {'slug':...

bug

Would it be ok to do `deprecation>=2.0.0` or something similar instead of the existing. https://github.com/SectorLabs/django-localized-fields/blob/a9906dd1594ba9346deb3ba10c0426e15031ba89/setup.py#L77 I can do it, just asking for some feedback.

Even after defining the field as follows: ```python localized_attachment = LocalizedFileField(upload_to=resource_path, blank=False, null=False, required=False) ``` I am still getting validation error on Django Admin, let me know if there's a...