├── .gitignore ├── djangocrud ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt └── tasks ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_rename_datedcompleted_task_datecompleted.py └── __init__.py ├── models.py ├── templates ├── _navbar.html ├── base.html ├── create_task.html ├── home.html ├── signin.html ├── signup.html ├── task_detail.html └── tasks.html ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | __pycache__ 3 | db.sqlite3 -------------------------------------------------------------------------------- /djangocrud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangocrud/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/djangocrud/asgi.py -------------------------------------------------------------------------------- /djangocrud/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/djangocrud/settings.py -------------------------------------------------------------------------------- /djangocrud/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/djangocrud/urls.py -------------------------------------------------------------------------------- /djangocrud/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/djangocrud/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/requirements.txt -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/admin.py -------------------------------------------------------------------------------- /tasks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/apps.py -------------------------------------------------------------------------------- /tasks/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/forms.py -------------------------------------------------------------------------------- /tasks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/migrations/0001_initial.py -------------------------------------------------------------------------------- /tasks/migrations/0002_rename_datedcompleted_task_datecompleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/migrations/0002_rename_datedcompleted_task_datecompleted.py -------------------------------------------------------------------------------- /tasks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/models.py -------------------------------------------------------------------------------- /tasks/templates/_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/templates/_navbar.html -------------------------------------------------------------------------------- /tasks/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/templates/base.html -------------------------------------------------------------------------------- /tasks/templates/create_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/templates/create_task.html -------------------------------------------------------------------------------- /tasks/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/templates/home.html -------------------------------------------------------------------------------- /tasks/templates/signin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/templates/signin.html -------------------------------------------------------------------------------- /tasks/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/templates/signup.html -------------------------------------------------------------------------------- /tasks/templates/task_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/templates/task_detail.html -------------------------------------------------------------------------------- /tasks/templates/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/templates/tasks.html -------------------------------------------------------------------------------- /tasks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/tests.py -------------------------------------------------------------------------------- /tasks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fazt/django-notes/HEAD/tasks/views.py --------------------------------------------------------------------------------