aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/events/views/index.py
blob: 7ffba74acaded11d2c8958becfb1970c97f85621 (plain) (blame)
1
2
3
4
5
6
7
from django.views.generic import TemplateView


class IndexView(TemplateView):
    """Events index page view."""

    template_name = "events/index.html"