35379-vm/core/views.py
Flatlogic Bot 41cddd37ec Version 1
2025-10-31 12:28:32 +00:00

10 lines
240 B
Python

from django.shortcuts import render
from .models import Property
def index(request):
properties = Property.objects.all()[:6]
context = {
'properties': properties
}
return render(request, 'core/index.html', context)