Curso-lenguaje-python/python-total/dia_16/mi_web/src/proyecto/base/views.py

11 lines
224 B
Python
Raw Normal View History

from django.shortcuts import render
from django.views.generic.list import ListView
from .models import Tarea
# Create your views here.
class ListaPendientes(ListView):
model = Tarea
context_object_name = 'tareas'