Commit
c2d58d6 only added the title of the object to notifications when
an object were modified by a moderator/admin, not by the end user. Fix
that to make it consistent.
notify.write("{}\n".format(str(form.cleaned_data[f])))
notify.write("\n")
else:
- subj = '{0} id {1} has been modified'.format(instance._meta.verbose_name, instance.id)
+ subj = '{0} id {1} ({2}) has been modified'.format(instance._meta.verbose_name, instance.id, str(instance))
for fn in form.changed_data:
if not hasattr(instance, fn):