homepage carousel is getting slides from web_services table

This commit is contained in:
2024-10-08 20:50:19 +09:00
parent 0e82b86e51
commit ee254ef17f
7 changed files with 50 additions and 32 deletions

View File

@@ -4,7 +4,8 @@ from django.db.models import Avg
def home(request):
return render(request, 'web/home.html')
services = Service.objects.all()
return render(request, 'web/home.html', {'services': services})
def service_detail(request, pk):
service = get_object_or_404(Service, pk=pk)