Django object not saving even after “save” call
问题 I'm really at a loss because this makes no sense at all. I call save/create an object, and it dosn't show up in the admin site. I even checked the SQLite database with a SQLite Viewer program, which again showed that the item had not been saved. This is the code that saves the Data object: data = Data(represents=field, for_entry=entry, value="This can be anything") # field is a DataField db object and entry is a Entry db object (see model below and paragraph) print("B4", data) #<---- Shows