mirror of
https://github.com/Superredstone/patrickcanal.it.git
synced 2026-09-20 17:51:12 +02:00
8 lines
139 B
Python
8 lines
139 B
Python
from django.views.generic import TemplateView
|
|
|
|
|
|
# Create your views here.
|
|
class IndexView(TemplateView):
|
|
template_name = "index.html"
|
|
|