2025-01-18 23:41:53 -06:00

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