Skip to content

Simple To-Do App that handles simple Create, Update and Delete operations

License

Notifications You must be signed in to change notification settings

IlyasDiker/TodoApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TodoApp

made-with-python made-with-django maintenance Contributions

Description

Just a simple ToDo app using django (Creat, Read, Update, Delete)

Models

Task Model

class Task(models.Model):
    title = models.CharField(max_length=200)
    complete = models.BooleanField(default=False)
    created = models.DateTimeField(auto_now_add=True)

Requirements

  • Django 3.1.3
  • Python 3.9

About

Simple To-Do App that handles simple Create, Update and Delete operations

Resources

License

Stars

Watchers

Forks