Given en, de languages and simplest model:
class ProductCategory(models.Model):
name = models.CharField(_('Name'), max_length=80, blank=True)
When I give the value of 'Cat1' to name in default language, both name and
name_en would be 'Cat1' as expected.
When I try to set value to an empty string in admin, name would stay 'Cat1'. So
there is no way to erase it from admin.
Original issue reported on code.google.com by bmihe...@gmail.com on 21 Sep 2010 at 12:28
Original issue reported on code.google.com by
bmihe...@gmail.com
on 21 Sep 2010 at 12:28