-
-
Notifications
You must be signed in to change notification settings - Fork 623
Open
Labels
Description
Basically there are times where you want to say "I have Tag A and Tag B, let's have only Tag A". This would involve rewriting any TagItem
s and friends that are using Tag B to instead point to Tag A (and at the very end probably delete Tag B?)
Ideas of what we could offer:
- a Python function like
tag_b.merge_into(tag_a)
(this would make tag A the canonical one) - a Django management command that could be used to do this merging
- Something in the Admin where we could click on a tag, then say to merge that tag into another one
I think there's gotta be some functions like "find django objects that refer to this object", given that the Django Admin lists related items on delete...