8 lines
No EOL
176 B
Python
8 lines
No EOL
176 B
Python
from django.shortcuts import render
|
|
from django.views.generic import TemplateView
|
|
|
|
# Create your views here.
|
|
|
|
|
|
class Main(TemplateView):
|
|
template_name = "gallery/main.html" |