Ask Question
3 January, 01:36

How to create a delete button in Python?

+3
Answers (1)
  1. 3 January, 02:12
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers