What is a word that describes both adding and editing data? [closed]

Often when making websites, I will create an HTML form object that I will use in two places: once on a page that allows a user to add a new object, and once on a page that allows a user to edit existing objects.

What is a word that describes such a form? It isn't so much a management form, since managing implies that the object is already created. It isn't a creation form, since that implies we are only making new ones.

More generally, it's common to have a workflow capable of adding new data and editing existing data. Is there a common English word or phrase to describe such workflows clearly?


In webdev, this is called an upsert form-- a portmanteau of insert and update.


How about Content Processing form?