Fleshing out the Task model and related access points

This commit is contained in:
2012-10-19 22:17:03 +01:00
parent 6afe3c7345
commit da2bf07f9f
12 changed files with 156 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
from django.views.generic import DetailView
from .models import Task
class TaskDetailView(DetailView):
model = Task