Changes between Initial Version and Version 1 of Ticket #27178


Ignore:
Timestamp:
Sep 5, 2016, 6:06:24 AM (8 years ago)
Author:
phonkee
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27178 – Description

    initial v1  
    11When I set model with ImageField that has default value set, it's impossible to change this value.
    22
    3 class TestModel(models.Model)
    4     image = ImageField(default="default.jpg")
     3    class TestModel(models.Model)
     4        image = ImageField(default="default.jpg")
    55
    66Now it's impossible to change the value from ModelForm's and/or admin.
Back to Top