7 lines
150 B
Python
7 lines
150 B
Python
|
from django.shortcuts import render
|
||
|
from django.views.generic import TemplateView
|
||
|
|
||
|
|
||
|
class Main(TemplateView):
|
||
|
template_name = "contact/main.html"
|