18 lines
399 B
Python
18 lines
399 B
Python
from django.shortcuts import render
|
|
from django.views.generic.list import ListView
|
|
from django.views.generic.detail import DetailView
|
|
from .models import Tarea
|
|
|
|
# Create your views here.
|
|
|
|
|
|
class ListaPendientes(ListView):
|
|
model = Tarea
|
|
context_object_name = 'tareas'
|
|
|
|
|
|
class DetalleTarea(DetailView):
|
|
model = Tarea
|
|
context_object_name = 'tarea'
|
|
template_name = 'base/tarea.html'
|