Files
simple_todo_list/tasks/views.py
T

13 lines
218 B
Python

from django.shortcuts import render
from .models import Task
def index(request):
tasks = Task.objects.all()
context = {
'tasks': tasks,
}
return render(request, 'tasks/index.html', context)