Maybe you should add a boolean Status member to the entity with default = false. In admin page, then make admin page display only accepted image filtered by [Status = true]. When admin clicks accept button, change the image status to active.
Another possible solution is to store the pending images in another entity. When the admin clicks accept button, map the object that hold the pending images to the entity used in admin page then remove the object holding the pending image.