Files
djangocms/about/views.py
2024-11-19 13:00:24 +07:00

19 lines
497 B
Python

from django.shortcuts import render
from about.models import *
from home.models import *
def aboutPageFront(request):
seo = aboutPageSEO.objects.first()
aboutpage = aboutPage.objects.first()
about = aboutSection.objects.first()
context = {
'seo' : seo,
'aboutpage' : aboutpage,
'about' : about,
}
return render(request, 'front/main/about.html', context)
def error_404(request, exception):
return render(request, 'error/404.html', status=404)