This commit is contained in:
2024-11-20 12:54:11 +07:00
parent 523680a350
commit bb5c579630
2136 changed files with 597821 additions and 8689 deletions
+4 -1
View File
@@ -4,14 +4,17 @@ from contact.forms import *
from django.utils import timezone
from datetime import datetime
from django.http import JsonResponse
from home.models import *
# # # # # # # # # # # # # # # # # #
# Contact Page Front #
# # # # # # # # # # # # # # # # # #
def contactPageFront(request):
seo = contactPageSEO.objects.first()
sliders = sliderSection.objects.all()
context = {
context ={
'sliders' : sliders,
'seo' : seo,
}
return render(request, 'front/main/contact.html', context)