8 lines
243 B
Python
8 lines
243 B
Python
from django.views.generic import ListView
|
|
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
from odyseescraper.models import OdyseeChannel, OdyseeRelease
|
|
|
|
class OdyseeReleaseListView(ListView):
|
|
model = OdyseeRelease
|