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'