dominno / django-moderation

django-moderation is reusable application for Django framework, that allows to moderate any model objects.
BSD 3-Clause "New" or "Revised" License
269 stars 90 forks source link

ImageFields in moderated objects acts as empty values when objects are waiting for approval #58

Closed marcin-koziol closed 12 years ago

marcin-koziol commented 12 years ago

Steps to reproduce:

  1. create simple model with ImageField
  2. create new item, then save Expected: When image is uploaded i can see url in widget

Currently, all ImageFields widgets in objects which are in pending state looks like None value. we spent few hours on debugging, and our conclusion is, that there is a problem in deserialization: objects returned from deserialization method aren't fully expanded accordingly to model definition.

marcin-koziol commented 12 years ago

We found a solution, Pull request on the way!

Qapla'