Andrey Zhukov

Results 3 issues of Andrey Zhukov

When i edit an object with m2m field through admin there is no m2m_changed signal and m2m changes are not synced. Maybe it's better to add M2M_CHANGE action for each...

In changelog i have a date with millisecond: 2015-01-26 15:00:23.559368 and in dbsettings for last_check without: 2015-01-26 13:26:56. Then it makes an update for remote on every synchronization. To solve...

I have in model ``` def upload_userfile_path(instance, filename): return 'files/%s/%s' % (instance.user.id, filename) class UserFile(models.Model): user = models.ForeignKey(User) file = models.FileField(upload_to=upload_userfile_path) ``` in test ``` user = any_model(User, is_active=True) any_model(UserFile,...

bug