Home
This commit is contained in:
1
project/main/views/__init__.py
Normal file
1
project/main/views/__init__.py
Normal file
@ -0,0 +1 @@
|
||||
from .home import HomeView
|
||||
5
project/main/views/home.py
Normal file
5
project/main/views/home.py
Normal file
@ -0,0 +1,5 @@
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
|
||||
class HomeView(TemplateView):
|
||||
template_name = "main/home.html"
|
||||
Reference in New Issue
Block a user