2024-12-28 12:21:29 +02:00
|
|
|
from django.shortcuts import render
|
2024-12-28 14:14:21 +02:00
|
|
|
from django.views.generic import TemplateView
|
2024-12-28 12:21:29 +02:00
|
|
|
|
|
|
|
# Create your views here.
|
|
|
|
|
|
|
|
|
2024-12-28 14:14:21 +02:00
|
|
|
class Main(TemplateView):
|
|
|
|
template_name = "gallery/main.html"
|