6 lines
155 B
Python
6 lines
155 B
Python
from django.shortcuts import render
|
|
from django.views.generic.base import TemplateView
|
|
|
|
class HomeView(TemplateView):
|
|
template_name = "home/home.html"
|