diff --git a/tailbone/templates/master/merge.mako b/tailbone/templates/master/merge.mako index 6e1abac5..82267146 100644 --- a/tailbone/templates/master/merge.mako +++ b/tailbone/templates/master/merge.mako @@ -91,7 +91,13 @@ You are about to merge two ${model_title} records, (possibly) along with various related data. The tool you are using now is somewhat generic and is not able to give you the full picture of the - implications of this merge. You are urged to proceed with caution! + implications of this merge. You are urged to proceed with caution! +
+ ++ Unless you know what you're doing, a good rule of thumb (though still no + guarantee) is to merge only if the "resulting" column is all-white. + (You may be able to swap kept/removed in order to achive this.)
diff --git a/tailbone/views/master.py b/tailbone/views/master.py index 0d0e096b..89f6e524 100644 --- a/tailbone/views/master.py +++ b/tailbone/views/master.py @@ -429,7 +429,7 @@ class MasterView(View): try: self.validate_merge(object_to_remove, object_to_keep) except Exception as error: - self.request.session.flash("Requested merge cannot proceed (maybe swap keep/remove and try again?): {}".format(error), 'error') + self.request.session.flash("Requested merge cannot proceed (maybe swap kept/removed and try again?): {}".format(error), 'error') else: self.merge_objects(object_to_remove, object_to_keep) self.request.session.flash("{} has been merged into {}".format(msg, object_to_keep))