6 lines
126 B
Python
6 lines
126 B
Python
from django.views.generic import TemplateView
|
|
|
|
|
|
class PlayersHomeView(TemplateView):
|
|
template_name = "players/index.html"
|