mirror of
https://github.com/nikdoof/django-ett.git
synced 2025-12-13 05:32:15 +00:00
7 lines
122 B
Python
7 lines
122 B
Python
from django.views.generic import DetailView
|
|
from .models import Task
|
|
|
|
|
|
class TaskDetailView(DetailView):
|
|
|
|
model = Task |