mirror of
https://github.com/nikdoof/django-ett.git
synced 2025-12-18 12:19:23 +00:00
8 lines
123 B
Python
8 lines
123 B
Python
from django.views.generic import DetailView
|
|
from .models import Task
|
|
|
|
|
|
class TaskDetailView(DetailView):
|
|
|
|
model = Task
|