Ask Question
1 April, 05:47

How to create a delete button in Python?

+2
Answers (1)
  1. 1 April, 09:25
    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?
Get an answer to your question ✅ “How to create a delete button in Python? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers