from django.views.generic.dates import DayArchiveView from .models import SomaLogLine class SomaDayArchiveView(DayArchiveView): queryset = SomaLogLine.objects.all() date_field = "play_timestamp" make_object_list = True allow_future = False