Ask Question
17 August, 06:09

How to create a delete button in Python?

+4
Answers (1)
  1. 17 August, 06:27
    0
    class Db_test (models. Model):

    name = models. CharField (max_length=50)

    comment = models. CharField (max_length=200)

    created = models. DateField (auto_now_add=True)

    modified = models. DateField (auto_now=True)

    class Meta:

    db_table = "db_test"
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “How to create a delete button in Python? ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers