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)