6 lines
136 B
Python
6 lines
136 B
Python
from django.views.generic import TemplateView
|
|
|
|
|
|
class CompetitionsHomeView(TemplateView):
|
|
template_name = "competitions/index.html"
|