6 lines
128 B
Python
6 lines
128 B
Python
from django.views.generic import TemplateView
|
|
|
|
|
|
class ScoutingHomeView(TemplateView):
|
|
template_name = "scouting/index.html"
|