Save Changes to Database using Django and x-editable
问题 I am new to JS, HTML, Django and all that related stuff, and I was not able to solve my problem on my own by reading documentation or using Google. I want to save inline-changes using x-editable to the database in an django environment. The template below works perfectly, but now I would like to overwrite the database entries with the new names. I tried to reduce the code to the relevant parts of my problem. models.py: class MyClass(models.Model): name = models.CharField(max_length=120) views